Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonAsmBackend.cpp394 const int64_t FixupValue, const char *fixupStr) const { in HandleFixupError() argument
401 FixupValue << in HandleFixupError()
417 uint64_t FixupValue, bool IsResolved, in applyFixup() argument
422 if (!FixupValue) return; in applyFixup()
436 Value = adjustFixupValue(Kind, FixupValue); in applyFixup()
447 HandleFixupError(7, 2, (int64_t)FixupValue, "B7_PCREL"); in applyFixup()
457 HandleFixupError(9, 2, (int64_t)FixupValue, "B9_PCREL"); in applyFixup()
469 HandleFixupError(13, 2, (int64_t)FixupValue, "B13_PCREL"); in applyFixup()
480 HandleFixupError(15, 2, (int64_t)FixupValue, "B15_PCREL"); in applyFixup()
492 HandleFixupError(22, 2, (int64_t)FixupValue, "B22_PCREL"); in applyFixup()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/JITLink/
H A DMachO_x86_64.cpp154 uint64_t FixupValue = 0; in parsePairRelocation() local
156 FixupValue = *(const little64_t *)FixupContent; in parsePairRelocation()
158 FixupValue = *(const little32_t *)FixupContent; in parsePairRelocation()
175 FixupValue -= ToSymbol->getAddress().getValue(); in parsePairRelocation()
184 Addend = FixupValue + (FixupAddress - FromSymbol->getAddress()); in parsePairRelocation()
190 Addend = FixupValue - (FixupAddress - ToSymbol->getAddress()); in parsePairRelocation()
H A DMachO_arm64.cpp163 uint64_t FixupValue = 0; in parsePairRelocation() local
165 FixupValue = *(const little64_t *)FixupContent; in parsePairRelocation()
167 FixupValue = *(const little32_t *)FixupContent; in parsePairRelocation()
184 FixupValue -= ToSymbol->getAddress().getValue(); in parsePairRelocation()
193 Addend = FixupValue + (FixupAddress - FromSymbol->getAddress()); in parsePairRelocation()
199 Addend = FixupValue - (FixupAddress - ToSymbol->getAddress()); in parsePairRelocation()