Searched refs:FixupValue (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/ |
H A D | HexagonAsmBackend.cpp | 392 const int64_t FixupValue, const char *fixupStr) const { in HandleFixupError() argument 399 FixupValue << in HandleFixupError() 415 uint64_t FixupValue, bool IsResolved, in applyFixup() argument 420 if (!FixupValue) return; in applyFixup() 434 Value = adjustFixupValue(Kind, FixupValue); in applyFixup() 445 HandleFixupError(7, 2, (int64_t)FixupValue, "B7_PCREL"); in applyFixup() 455 HandleFixupError(9, 2, (int64_t)FixupValue, "B9_PCREL"); in applyFixup() 467 HandleFixupError(13, 2, (int64_t)FixupValue, "B13_PCREL"); in applyFixup() 478 HandleFixupError(15, 2, (int64_t)FixupValue, "B15_PCREL"); in applyFixup() 490 HandleFixupError(22, 2, (int64_t)FixupValue, "B22_PCREL"); in applyFixup() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
H A D | MachO_x86_64.cpp | 156 uint64_t FixupValue = 0; in parsePairRelocation() local 158 FixupValue = *(const little64_t *)FixupContent; in parsePairRelocation() 160 FixupValue = *(const little32_t *)FixupContent; in parsePairRelocation() 177 FixupValue -= ToSymbol->getAddress().getValue(); in parsePairRelocation() 211 Addend = FixupValue + (FixupAddress - FromSymbol->getAddress()); in parsePairRelocation() 217 Addend = FixupValue - (FixupAddress - ToSymbol->getAddress()); in parsePairRelocation()
|
H A D | MachO_arm64.cpp | 165 uint64_t FixupValue = 0; in parsePairRelocation() local 167 FixupValue = *(const little64_t *)FixupContent; in parsePairRelocation() 169 FixupValue = *(const little32_t *)FixupContent; in parsePairRelocation() 186 FixupValue -= ToSymbol->getAddress().getValue(); in parsePairRelocation() 220 Addend = FixupValue + (FixupAddress - FromSymbol->getAddress()); in parsePairRelocation() 226 Addend = FixupValue - (FixupAddress - ToSymbol->getAddress()); in parsePairRelocation()
|