[llvm] 23b3df5 - [docs][Lexicon] Add new explanation for some shortcomings(WPD, CFI) for lexicon

via llvm-commits llvm-commits at lists.llvm.org
Sun Mar 27 21:48:20 PDT 2022


Author: lizhengxian.123
Date: 2022-03-28T12:46:28+08:00
New Revision: 23b3df5675362cd031f674b76239e5de6fd0077a

URL: https://github.com/llvm/llvm-project/commit/23b3df5675362cd031f674b76239e5de6fd0077a
DIFF: https://github.com/llvm/llvm-project/commit/23b3df5675362cd031f674b76239e5de6fd0077a.diff

LOG: [docs][Lexicon] Add new explanation for some shortcomings(WPD, CFI) for lexicon

Add explanations for WPD(whole program devirtualization) and another meaning for CFI(control flow Integrity).

Reviewed By: tejohnson

Differential Revision: https://reviews.llvm.org/D122473

Added: 
    

Modified: 
    llvm/docs/Lexicon.rst

Removed: 
    


################################################################################
diff  --git a/llvm/docs/Lexicon.rst b/llvm/docs/Lexicon.rst
index 761aa4b8b3d93..ea2f85967b3ea 100644
--- a/llvm/docs/Lexicon.rst
+++ b/llvm/docs/Lexicon.rst
@@ -54,9 +54,16 @@ C
 -
 
 **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 @@ I
     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 @@ T
 **TBAA**
     Type-Based Alias Analysis
 
+
+W
+-
+
+**WPD**
+    Whole Program Devirtualization
+


        


More information about the llvm-commits mailing list