[llvm] [CodeGen][StaticDataPartitioning]Place local-linkage global variables in hot or unlikely prefixed sections based on profile information (PR #125756)
Mingming Liu via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 5 13:58:03 PST 2025
https://github.com/mingmingl-llvm commented:
>
Is there a reason for using .unlikely as a prefix rather than .cold? .cold seems more obvious as an opposite of .hot and we use it elsewhere in LLVM, most notably hot-cold splitting.
@petrhosek Thanks for the question. `unlikely` is used to follow the conventions of [functions](https://github.com/llvm/llvm-project/blob/69ccb1357fa6cf72063c737d06d6b29ffc465bee/llvm/lib/CodeGen/CodeGenPrepare.cpp#L598) in the codegenprepare pass. I'm open to name changes.
If identical section names (as string literals) are not de-duplicated in the relocatable object files (e.g., when compiled with `-data-sections=true -unique-section-names=false`), `cold` will give smaller section names than `unlikely` per data section where this matters.
https://github.com/llvm/llvm-project/pull/125756
More information about the llvm-commits
mailing list