Home
last modified time | relevance | path

Searched refs:r_word1 (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/
H A DMachOObject.h188 return Info.r_word1 & 0xffffff; in getPlainRelocationSymbolNum()
189 return Info.r_word1 >> 8; in getPlainRelocationSymbolNum()
195 Info.r_word1 = (Info.r_word1 & ~0x00ffffff) | SymbolNum; in setPlainRelocationSymbolNum()
197 Info.r_word1 = (Info.r_word1 & ~0xffffff00) | (SymbolNum << 8); in setPlainRelocationSymbolNum()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DMachOLinkGraphBuilder.h174 RI.r_symbolnum = ARI.r_word1 & 0xffffff; in getRelocationInfo()
175 RI.r_pcrel = (ARI.r_word1 >> 24) & 1; in getRelocationInfo()
176 RI.r_length = (ARI.r_word1 >> 25) & 3; in getRelocationInfo()
177 RI.r_extern = (ARI.r_word1 >> 27) & 1; in getRelocationInfo()
178 RI.r_type = (ARI.r_word1 >> 28); in getRelocationInfo()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMachObjectWriter.cpp238 MRE.r_word1 = Value2; in RecordARMScatteredHalfRelocation()
249 MRE.r_word1 = Value; in RecordARMScatteredHalfRelocation()
315 MRE.r_word1 = Value2; in RecordARMScatteredRelocation()
325 MRE.r_word1 = Value; in RecordARMScatteredRelocation()
473 MRE.r_word1 = in recordRelocation()
497 MREPair.r_word1 = ((0xffffff << 0) | in recordRelocation()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MachObjectWriter.cpp207 MRE.r_word1 = in RecordX86_64Relocation()
358 MRE.r_word1 = (Index << 0) | (IsPCRel << 24) | (Log2Size << 25) | in RecordX86_64Relocation()
436 MRE.r_word1 = Value2; in recordScatteredRelocation()
458 MRE.r_word1 = Value; in recordScatteredRelocation()
498 MRE.r_word1 = in recordTLVPRelocation()
597 MRE.r_word1 = in RecordX86Relocation()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64MachObjectWriter.cpp236 MRE.r_word1 = (IsPCRel << 24) | (Log2Size << 25) | (Type << 28); in recordRelocation()
293 MRE.r_word1 = (IsPCRel << 24) | (Log2Size << 25) | (Type << 28); in recordRelocation()
382 MRE.r_word1 = in recordRelocation()
403 MRE.r_word1 = in recordRelocation()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMachObjectWriter.cpp634 Rel.MRE.r_word1 = (Rel.MRE.r_word1 & (~0U << 24)) | Index | (1 << 27); in computeSymbolTable()
636 Rel.MRE.r_word1 = (Rel.MRE.r_word1 & 0xff) | Index << 8 | (1 << 4); in computeSymbolTable()
752 MRE.r_word1 = (Log2Size << 25) | (MachO::GENERIC_RELOC_VANILLA << 28); in populateAddrSigSection()
1008 W.write<uint32_t>(Rel.MRE.r_word1); in writeObject()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMachOEmitter.cpp383 MRE.r_word1 = ((unsigned)R.symbolnum << 0) | ((unsigned)R.is_pcrel << 24) | in makeRelocationInfo()
387 MRE.r_word1 = ((unsigned)R.symbolnum << 8) | ((unsigned)R.is_pcrel << 7) | in makeRelocationInfo()
400 MRE.r_word1 = R.value; in makeScatteredRelocationInfo()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp153 return (RE.r_word1 >> 24) & 1; in getPlainRelocationPCRel()
154 return (RE.r_word1 >> 7) & 1; in getPlainRelocationPCRel()
165 return (RE.r_word1 >> 25) & 3; in getPlainRelocationLength()
166 return (RE.r_word1 >> 5) & 3; in getPlainRelocationLength()
177 return RE.r_word1 >> 28; in getPlainRelocationType()
178 return RE.r_word1 & 0xf; in getPlainRelocationType()
4549 return RE.r_word1 & 0xffffff; in getPlainRelocationSymbolNum()
4550 return RE.r_word1 >> 8; in getPlainRelocationSymbolNum()
4556 return (RE.r_word1 >> 27) & 1; in getPlainRelocationExternal()
4557 return (RE.r_word1 >> 4) & 1; in getPlainRelocationExternal()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMachO.h998 uint32_t r_word0, r_word1; member
1398 sys::swapByteOrder(reloc.r_word1); in swapStruct()