[PATCH] D95121: [lld-macho][NFC] refactor relocation handling
Jez Ng via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 21 12:45:10 PST 2021
int3 added inline comments.
================
Comment at: lld/MachO/Target.h:50-51
+ GOT = 1 << 11, // Has a Global Offset Table slot
+ TLV = 1 << 12, // Has a Thread-Local Variable slot
+ TLS = 1 << 13, // Can reside in Thread-Local Storage
+ MORPH = 1 << 14, // morph instruction: load into add
----------------
I think ld64 (and other bits of macOS source) use "TLV" in place of "TLS". Pointers to TLVs are abbreviated as `TLVP`s.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D95121/new/
https://reviews.llvm.org/D95121
More information about the llvm-commits
mailing list