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

李拯先 via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 25 03:45:41 PDT 2022


lizhengxian.123 created this revision.
lizhengxian.123 added a reviewer: tejohnson.
lizhengxian.123 added a project: LLVM.
Herald added a subscriber: Prazek.
Herald added a project: All.
lizhengxian.123 requested review of this revision.
Herald added a subscriber: llvm-commits.

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


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D122473

Files:
  llvm/docs/Lexicon.rst


Index: llvm/docs/Lexicon.rst
===================================================================
--- llvm/docs/Lexicon.rst
+++ llvm/docs/Lexicon.rst
@@ -57,6 +57,10 @@
     Call Frame Information. Used in DWARF debug info and in C++ unwind info
     to show how the function prolog lays out the stack frame.
 
+    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 +156,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 +319,9 @@
 **TBAA**
     Type-Based Alias Analysis
 
+
+W
+-
+
+**WPD**
+    Whole Program Devirtualization
\ No newline at end of file


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D122473.418175.patch
Type: text/x-patch
Size: 1223 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220325/75ce7c4a/attachment.bin>


More information about the llvm-commits mailing list