Home
last modified time | relevance | path

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

/external/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonAsmBackend.cpp382 const int64_t FixupValue, const char *fixupStr) const { in HandleFixupError() argument
389 FixupValue << in HandleFixupError()
404 uint64_t FixupValue, bool IsPCRel) const override { in applyFixup() argument
408 if (!FixupValue) return; in applyFixup()
422 Value = adjustFixupValue(Kind, FixupValue); in applyFixup()
433 HandleFixupError(7, 2, (int64_t)FixupValue, "B7_PCREL"); in applyFixup()
442 HandleFixupError(9, 2, (int64_t)FixupValue, "B9_PCREL"); in applyFixup()
453 HandleFixupError(13, 2, (int64_t)FixupValue, "B13_PCREL"); in applyFixup()
463 HandleFixupError(15, 2, (int64_t)FixupValue, "B15_PCREL"); in applyFixup()
474 HandleFixupError(22, 2, (int64_t)FixupValue, "B22_PCREL"); in applyFixup()
[all …]
/external/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
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 …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonAsmBackend.cpp390 const int64_t FixupValue, const char *fixupStr) const { in HandleFixupError() argument
397 FixupValue << in HandleFixupError()
413 uint64_t FixupValue, bool IsResolved, in applyFixup() argument
418 if (!FixupValue) return; in applyFixup()
432 Value = adjustFixupValue(Kind, FixupValue); in applyFixup()
443 HandleFixupError(7, 2, (int64_t)FixupValue, "B7_PCREL"); in applyFixup()
453 HandleFixupError(9, 2, (int64_t)FixupValue, "B9_PCREL"); in applyFixup()
465 HandleFixupError(13, 2, (int64_t)FixupValue, "B13_PCREL"); in applyFixup()
476 HandleFixupError(15, 2, (int64_t)FixupValue, "B15_PCREL"); in applyFixup()
488 HandleFixupError(22, 2, (int64_t)FixupValue, "B22_PCREL"); in applyFixup()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/
DMachO_x86_64.cpp146 uint64_t FixupValue = 0; in parsePairRelocation() local
148 FixupValue = *(const little64_t *)FixupContent; in parsePairRelocation()
150 FixupValue = *(const little32_t *)FixupContent; in parsePairRelocation()
162 if (auto ToSymbolOrErr = findSymbolByAddress(FixupValue)) in parsePairRelocation()
166 FixupValue -= ToSymbol->getAddress(); in parsePairRelocation()
175 Addend = FixupValue + (FixupAddress - FromSymbol->getAddress()); in parsePairRelocation()
180 Addend = FixupValue - (FixupAddress - ToSymbol->getAddress()); in parsePairRelocation()
DMachO_arm64.cpp144 uint64_t FixupValue = 0; in parsePairRelocation() local
146 FixupValue = *(const little64_t *)FixupContent; in parsePairRelocation()
148 FixupValue = *(const little32_t *)FixupContent; in parsePairRelocation()
160 if (auto ToSymbolOrErr = findSymbolByAddress(FixupValue)) in parsePairRelocation()
164 FixupValue -= ToSymbol->getAddress(); in parsePairRelocation()
173 Addend = FixupValue + (FixupAddress - FromSymbol->getAddress()); in parsePairRelocation()
178 Addend = FixupValue - (FixupAddress - ToSymbol->getAddress()); in parsePairRelocation()
/external/llvm-project/llvm/lib/ExecutionEngine/JITLink/
DMachO_x86_64.cpp137 uint64_t FixupValue = 0; in parsePairRelocation() local
139 FixupValue = *(const little64_t *)FixupContent; in parsePairRelocation()
141 FixupValue = *(const little32_t *)FixupContent; in parsePairRelocation()
158 FixupValue -= ToSymbol->getAddress(); in parsePairRelocation()
167 Addend = FixupValue + (FixupAddress - FromSymbol->getAddress()); in parsePairRelocation()
172 Addend = FixupValue - (FixupAddress - ToSymbol->getAddress()); in parsePairRelocation()
DMachO_arm64.cpp135 uint64_t FixupValue = 0; in parsePairRelocation() local
137 FixupValue = *(const little64_t *)FixupContent; in parsePairRelocation()
139 FixupValue = *(const little32_t *)FixupContent; in parsePairRelocation()
156 FixupValue -= ToSymbol->getAddress(); in parsePairRelocation()
165 Addend = FixupValue + (FixupAddress - FromSymbol->getAddress()); in parsePairRelocation()
170 Addend = FixupValue - (FixupAddress - ToSymbol->getAddress()); in parsePairRelocation()