summaryrefslogtreecommitdiffstats
path: root/llvm/docs/Lexicon.rst
diff options
context:
space:
mode:
authorNick Kledzik <kledzik@apple.com>2015-05-20 22:04:06 +0000
committerNick Kledzik <kledzik@apple.com>2015-05-20 22:04:06 +0000
commit267d31e13754fb747512c0d2a981b2ea5ae71e0f (patch)
treee57fe1ebb4dde8713964acf2d1b30adb4b0f6737 /llvm/docs/Lexicon.rst
parent892bb0cace9f733df800e4875fcf9325f860501a (diff)
downloadbcm5719-llvm-267d31e13754fb747512c0d2a981b2ea5ae71e0f.tar.gz
bcm5719-llvm-267d31e13754fb747512c0d2a981b2ea5ae71e0f.zip
[doc] Update Lexicon with C++ unwinder acronyms
llvm-svn: 237840
Diffstat (limited to 'llvm/docs/Lexicon.rst')
-rw-r--r--llvm/docs/Lexicon.rst21
1 files changed, 21 insertions, 0 deletions
diff --git a/llvm/docs/Lexicon.rst b/llvm/docs/Lexicon.rst
index 9a599da1285..112eb7d79ec 100644
--- a/llvm/docs/Lexicon.rst
+++ b/llvm/docs/Lexicon.rst
@@ -46,6 +46,15 @@ B
C
-
+**CFI**
+ Call Frame Information. Used in DWARF debug info and in C++ unwind info
+ to show how the function prolog lays out the stack frame.
+
+**CIE**
+ Common Information Entry. A kind of CFI used to reduce the size of FDEs.
+ The compiler creates a CIE which contains the information common across all
+ the FDEs. Each FDE then points to its CIE.
+
**CSE**
Common Subexpression Elimination. An optimization that removes common
subexpression compuation. For example ``(a+b)*(a+b)`` has two subexpressions
@@ -82,6 +91,10 @@ F
**FCA**
First Class Aggregate
+**FDE**
+ Frame Description Entry. A kind of CFI used to describe the stack frame of
+ one function.
+
G
-
@@ -121,6 +134,14 @@ L
**LICM**
Loop Invariant Code Motion
+**LSDA**
+ Language Specific Data Area. C++ "zero cost" unwinding is built on top a
+ generic unwinding mechanism. As the unwinder walks each frame, it calls
+ a "personality" function to do language specific analysis. Each function's
+ FDE points to an optional LSDA which is passed to the personality function.
+ For C++, the LSDA contain info about the type and location of catch
+ statements in that function.
+
**Load-VN**
Load Value Numbering
OpenPOWER on IntegriCloud