[llvm-branch-commits] [clang][CallGraphSection] Add call graph section option and docs (PR #117037)

Paul Kirth via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Wed Dec 4 18:19:57 PST 2024


================
@@ -0,0 +1,251 @@
+==================
+Call Graph Section
+==================
+
+Introduction
+============
+
+With ``-fcall-graph-section``, the compiler will create a call graph section 
+in the object file. It will include type identifiers for indirect calls and 
+targets. This information can be used to map indirect calls to their receivers 
+with matching types. A complete and high-precision call graph can be 
----------------
ilovepi wrote:

```suggestion
With ``-fcall-graph-section``, the compiler will create a <actual_section_name> section 
in the object file. It will include type identifiers for indirect calls and 
targets. This information can be used to map indirect calls to their receivers 
with matching types. A complete and high-precision call graph can be 
```

https://github.com/llvm/llvm-project/pull/117037


More information about the llvm-branch-commits mailing list