You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cranelift/codegen/src/binemit/mod.rs
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -68,6 +68,16 @@ pub enum Reloc {
68
68
69
69
/// Mach-O x86_64 32 bit signed PC relative offset to a `__thread_vars` entry.
70
70
MachOX86_64Tlv,
71
+
72
+
/// AArch64 TLS GD
73
+
/// Set an ADRP immediate field to the top 21 bits of the final address. Checks for overflow.
74
+
/// This is equivalent to `R_AARCH64_TLSGD_ADR_PAGE21` in the [aaelf64](https://github.com/ARM-software/abi-aa/blob/2bcab1e3b22d55170c563c3c7940134089176746/aaelf64/aaelf64.rst#relocations-for-thread-local-storage)
75
+
Aarch64TlsGdAdrPage21,
76
+
77
+
/// AArch64 TLS GD
78
+
/// Set the add immediate field to the low 12 bits of the final address. Does not check for overflow.
79
+
/// This is equivalent to `R_AARCH64_TLSGD_ADD_LO12_NC` in the [aaelf64](https://github.com/ARM-software/abi-aa/blob/2bcab1e3b22d55170c563c3c7940134089176746/aaelf64/aaelf64.rst#relocations-for-thread-local-storage)
0 commit comments