Home
last modified time | relevance | path

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

/freebsd-13.1/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-13.1/contrib/llvm-project/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(); in parsePairRelocation()
184 Addend = FixupValue + (FixupAddress - FromSymbol->getAddress()); in parsePairRelocation()
190 Addend = FixupValue - (FixupAddress - ToSymbol->getAddress()); in parsePairRelocation()
H A DMachO_arm64.cpp136 uint64_t FixupValue = 0; in parsePairRelocation() local
138 FixupValue = *(const little64_t *)FixupContent; in parsePairRelocation()
140 FixupValue = *(const little32_t *)FixupContent; in parsePairRelocation()
157 FixupValue -= ToSymbol->getAddress(); in parsePairRelocation()
166 Addend = FixupValue + (FixupAddress - FromSymbol->getAddress()); in parsePairRelocation()
171 Addend = FixupValue - (FixupAddress - ToSymbol->getAddress()); in parsePairRelocation()