Home
last modified time | relevance | path

Searched refs:FixupValue (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonAsmBackend.cpp393 const int64_t FixupValue, const char *fixupStr) const { in HandleFixupError() argument
400 FixupValue << in HandleFixupError()
416 uint64_t FixupValue, bool IsResolved, in applyFixup() argument
421 if (!FixupValue) return; in applyFixup()
435 Value = adjustFixupValue(Kind, FixupValue); in applyFixup()
446 HandleFixupError(7, 2, (int64_t)FixupValue, "B7_PCREL"); in applyFixup()
456 HandleFixupError(9, 2, (int64_t)FixupValue, "B9_PCREL"); in applyFixup()
468 HandleFixupError(13, 2, (int64_t)FixupValue, "B13_PCREL"); in applyFixup()
479 HandleFixupError(15, 2, (int64_t)FixupValue, "B15_PCREL"); in applyFixup()
491 HandleFixupError(22, 2, (int64_t)FixupValue, "B22_PCREL"); in applyFixup()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DMachO_arm64.cpp164 uint64_t FixupValue = 0; in parsePairRelocation() local
166 FixupValue = *(const little64_t *)FixupContent; in parsePairRelocation()
168 FixupValue = *(const little32_t *)FixupContent; in parsePairRelocation()
185 FixupValue -= ToSymbol->getAddress().getValue(); in parsePairRelocation()
219 Addend = FixupValue + (FixupAddress - FromSymbol->getAddress()); in parsePairRelocation()
225 Addend = FixupValue - (FixupAddress - ToSymbol->getAddress()); in parsePairRelocation()
H A DMachO_x86_64.cpp155 uint64_t FixupValue = 0; in parsePairRelocation() local
157 FixupValue = *(const little64_t *)FixupContent; in parsePairRelocation()
159 FixupValue = *(const little32_t *)FixupContent; in parsePairRelocation()
176 FixupValue -= ToSymbol->getAddress().getValue(); in parsePairRelocation()
210 Addend = FixupValue + (FixupAddress - FromSymbol->getAddress()); in parsePairRelocation()
216 Addend = FixupValue - (FixupAddress - ToSymbol->getAddress()); in parsePairRelocation()