Skip to content
This repository was archived by the owner on Nov 1, 2021. It is now read-only.

Commit b16dac5

Browse files
committed
[new docs] Performance Tips for Frontend Authors
As mentioned on llvm-dev, this is a new documentation page intended to collect tips for frontend authors on how to generate IR that LLVM is able to optimize well. These types of things come up repeated in review threads and it would be good to have a place to save them. I added a small handful to start us off, but I mostly want to get the framework in place. Once the docs are here, we can add to them incrementally. If you know of something appropriate for this page, please add it! Differential Revision: http://reviews.llvm.org/D7890 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230807 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 0a7ed28 commit b16dac5

File tree

3 files changed

+70
-0
lines changed

3 files changed

+70
-0
lines changed

docs/Frontend/PerformanceTips.rst

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
=====================================
2+
Performance Tips for Frontend Authors
3+
=====================================
4+
5+
.. contents::
6+
:local:
7+
:depth: 2
8+
9+
Abstract
10+
========
11+
12+
The intended audience of this document is developers of language frontends
13+
targeting LLVM IR. This document is home to a collection of tips on how to
14+
generate IR that optimizes well. As with any optimizer, LLVM has its strengths
15+
and weaknesses. In some cases, surprisingly small changes in the source IR
16+
can have a large effect on the generated code.
17+
18+
Avoid loads and stores of large aggregate type
19+
================================================
20+
21+
LLVM currently does not optimize well loads and stores of large :ref:`aggregate
22+
types <t_aggregate>` (i.e. structs and arrays). As an alternative, consider
23+
loading individual fields from memory.
24+
25+
Aggregates that are smaller than the largest (performant) load or store
26+
instruction supported by the targeted hardware are well supported. These can
27+
be an effective way to represent collections of small packed fields.
28+
29+
Prefer zext over sext when legal
30+
==================================
31+
32+
On some architectures (X86_64 is one), sign extension can involve an extra
33+
instruction whereas zero extension can be folded into a load. LLVM will try to
34+
replace a sext with a zext when it can be proven safe, but if you have
35+
information in your source language about the range of a integer value, it can
36+
be profitable to use a zext rather than a sext.
37+
38+
Alternatively, you can :ref:`specify the range of the value using metadata
39+
<range-metadata>` and LLVM can do the sext to zext conversion for you.
40+
41+
Zext GEP indices to machine register width
42+
============================================
43+
44+
Internally, LLVM often promotes the width of GEP indices to machine register
45+
width. When it does so, it will default to using sign extension (sext)
46+
operations for safety. If your source language provides information about
47+
the range of the index, you may wish to manually extend indices to machine
48+
register width using a zext instruction.
49+
50+
51+
Adding to this document
52+
=======================
53+
54+
If you run across a case that you feel deserves to be covered here, please send
55+
a patch to `llvm-commits
56+
<http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits>`_ for review.
57+
58+
If you have questions on these items, please direct them to `llvmdev
59+
<http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev>`_. The more relevant
60+
context you are able to give to your question, the more likely it is to be
61+
answered.
62+

docs/LangRef.rst

+2
Original file line numberDiff line numberDiff line change
@@ -3056,6 +3056,8 @@ number representing the maximum relative error, for example:
30563056
30573057
!0 = !{ float 2.5 } ; maximum acceptable inaccuracy is 2.5 ULPs
30583058
3059+
.. _range-metadata:
3060+
30593061
'``range``' Metadata
30603062
^^^^^^^^^^^^^^^^^^^^
30613063

docs/index.rst

+6
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ representation.
8383
Passes
8484
YamlIO
8585
GetElementPtr
86+
Frontend/PerformanceTips
8687
MCJITDesignAndImplementation
8788

8889
:doc:`GettingStarted`
@@ -150,6 +151,11 @@ representation.
150151
Answers to some very frequent questions about LLVM's most frequently
151152
misunderstood instruction.
152153

154+
:doc:`Frontend/PerformanceTips`
155+
A collection of tips for frontend authors on how to generate IR
156+
which LLVM is able to effectively optimize.
157+
158+
153159
Programming Documentation
154160
=========================
155161

0 commit comments

Comments
 (0)