Home
last modified time | relevance | path

Searched refs:TargetOffset (Results 1 – 18 of 18) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/
DMachO_arm64.cpp590 uint64_t TargetOffset = E.getTarget().getAddress() & 0xfff; in applyFixup() local
595 if (TargetOffset & ((1 << ImmShift) - 1)) in applyFixup()
598 uint32_t EncodedImm = (TargetOffset >> ImmShift) << 10; in applyFixup()
610 uint32_t TargetOffset = E.getTarget().getAddress() & 0xfff; in applyFixup() local
611 assert((TargetOffset & 0x7) == 0 && "GOT entry is not 8-byte aligned"); in applyFixup()
612 uint32_t EncodedImm = (TargetOffset >> 3) << 10; in applyFixup()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/MSP430/MCTargetDesc/
DMSP430AsmBackend.cpp144 Value <<= Info.TargetOffset; in applyFixup()
147 unsigned NumBytes = alignTo(Info.TargetSize + Info.TargetOffset, 8) / 8; in applyFixup()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
DMCFixupKindInfo.h38 unsigned TargetOffset; member
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
DRuntimeDyldCOFFX86_64.h263 uint64_t TargetOffset = getSymbolOffset(*Symbol); in processRelocationRef() local
264 RelocationEntry RE(SectionID, Offset, RelType, TargetOffset + Addend); in processRelocationRef()
DRuntimeDyldCOFFAArch64.h238 uint64_t TargetOffset = getSymbolOffset(*Symbol); in processRelocationRef() local
239 RelocationEntry RE(SectionID, Offset, RelType, TargetOffset + Addend); in processRelocationRef()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/MCTargetDesc/
DRISCVAsmBackend.cpp329 Value <<= Info.TargetOffset; in applyFixup()
332 unsigned NumBytes = alignTo(Info.TargetSize + Info.TargetOffset, 8) / 8; in applyFixup()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/MCTargetDesc/
DWebAssemblyAsmBackend.cpp115 Value <<= Info.TargetOffset; in applyFixup()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/MCTargetDesc/
DAVRAsmBackend.cpp371 auto NumBits = Info.TargetSize + Info.TargetOffset; in applyFixup()
375 Value <<= Info.TargetOffset; in applyFixup()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceELFObjectWriter.cpp599 for (intptr_t TargetOffset : JT.getTargetOffsets()) { in writeJumpTable() local
603 NewFixup.set_value(Ctx.getConstantSym(TargetOffset, JT.getFunctionName())); in writeJumpTable()
605 Section->appendRelocationOffset(Str, RelSection->isRela(), TargetOffset); in writeJumpTable()
DIceTargetLoweringX8664.cpp7018 for (intptr_t TargetOffset : JT.getTargetOffsets()) in lowerJumpTables() local
7019 Str << "\n\t.long\t" << JT.getFunctionName() << "+" << TargetOffset; in lowerJumpTables()
DIceTargetLoweringX8632.cpp7752 for (intptr_t TargetOffset : JT.getTargetOffsets()) in lowerJumpTables() local
7753 Str << "\n\t.long\t" << JT.getFunctionName() << "+" << TargetOffset; in lowerJumpTables()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/MCTargetDesc/
DAMDGPUAsmBackend.cpp145 Value <<= Info.TargetOffset; in applyFixup()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/MCTargetDesc/
DAArch64AsmBackend.cpp399 Value <<= Info.TargetOffset; in applyFixup()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
DSymbolRecordMapping.cpp80 error(IO.mapInteger(Tramp.TargetOffset)); in visitKnownRecord()
DSymbolDumper.cpp152 W.printNumber("TargetOff", Tramp.TargetOffset); in visitKnownRecord()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DCodeViewYAMLSymbols.cpp293 IO.mapRequired("TargetOff", Symbol.TargetOffset); in map()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
DSymbolRecord.h99 uint32_t TargetOffset = 0; variable
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMCAsmStreamer.cpp1869 unsigned Index = F.getOffset() * 8 + Info.TargetOffset + j; in AddEncodingComment()