[PATCH] D122473: Add new explanation for some shortcomings(WPD, CFI) for lexicon

Mingjie Xu via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sun Mar 27 21:48:41 PDT 2022


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG23b3df567536: [docs][Lexicon] Add new explanation for some shortcomings(WPD, CFI) for lexicon (authored by lizhengxian.123, committed by Enna1).

Changed prior to commit:
  https://reviews.llvm.org/D122473?vs=418489&id=418490#toc

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D122473/new/

https://reviews.llvm.org/D122473

Files:
  llvm/docs/Lexicon.rst


Index: llvm/docs/Lexicon.rst
===================================================================
--- llvm/docs/Lexicon.rst
+++ llvm/docs/Lexicon.rst
@@ -54,9 +54,16 @@
 -
 
 **CFI**
+    This abbreviation has two meanings.
+    Either:
     Call Frame Information. Used in DWARF debug info and in C++ unwind info
     to show how the function prolog lays out the stack frame.
 
+    Or:
+    Control Flow Integrity. A general term for computer security techniques
+    that prevent a wide variety of malware attacks from redirecting the flow
+    of execution (the control flow) of a program.
+
 **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
@@ -152,6 +159,12 @@
     if a valid C++ source program were to trigger an assert in Clang when
     compiled, that could be referred to as an "ICE".
 
+**ICF**
+    Identical Code Folding
+
+**ICP**
+    Indirect Call Promotion
+
 **IPA**
     Inter-Procedural Analysis. Refers to any variety of code analysis that
     occurs between procedures, functions or compilation units (modules).
@@ -309,3 +322,10 @@
 **TBAA**
     Type-Based Alias Analysis
 
+
+W
+-
+
+**WPD**
+    Whole Program Devirtualization
+


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D122473.418490.patch
Type: text/x-patch
Size: 1275 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220328/0b101b03/attachment.bin>


More information about the llvm-commits mailing list