Home
last modified time | relevance | path

Searched refs:Displacement (Results 1 – 25 of 33) sorted by relevance

12

/external/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
DRuntimeDyldCOFFAArch64.h171 uint8_t *Displacement = (uint8_t *)ObjTarget; in processRelocationRef() local
196 Addend = read32le(Displacement); in processRelocationRef()
199 uint32_t orig = read32le(Displacement); in processRelocationRef()
208 uint32_t orig = read32le(Displacement); in processRelocationRef()
213 uint32_t orig = read32le(Displacement); in processRelocationRef()
219 uint32_t orig = read32le(Displacement); in processRelocationRef()
225 uint32_t orig = read32le(Displacement); in processRelocationRef()
230 Addend = read64le(Displacement); in processRelocationRef()
DRuntimeDyldCOFFX86_64.h246 uint8_t *Displacement = (uint8_t *)ObjTarget; in processRelocationRef() local
247 Addend = readBytesUnaligned(Displacement, 4); in processRelocationRef()
257 uint8_t *Displacement = (uint8_t *)ObjTarget; in processRelocationRef() local
258 Addend = readBytesUnaligned(Displacement, 8); in processRelocationRef()
DRuntimeDyldCOFFI386.h82 uint8_t *Displacement = (uint8_t *)ObjTarget; in processRelocationRef() local
89 Addend = readBytesUnaligned(Displacement, 4); in processRelocationRef()
DRuntimeDyldCOFFThumb.h86 uint8_t *Displacement = (uint8_t *)ObjTarget; in processRelocationRef() local
92 Addend = readBytesUnaligned(Displacement, 4); in processRelocationRef()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
DRuntimeDyldCOFFAArch64.h170 uint8_t *Displacement = (uint8_t *)ObjTarget; in processRelocationRef() local
177 Addend = read32le(Displacement); in processRelocationRef()
180 uint32_t orig = read32le(Displacement); in processRelocationRef()
189 uint32_t orig = read32le(Displacement); in processRelocationRef()
194 uint32_t orig = read32le(Displacement); in processRelocationRef()
200 uint32_t orig = read32le(Displacement); in processRelocationRef()
206 uint32_t orig = read32le(Displacement); in processRelocationRef()
211 Addend = read64le(Displacement); in processRelocationRef()
DRuntimeDyldCOFFX86_64.h228 uint8_t *Displacement = (uint8_t *)ObjTarget; in processRelocationRef() local
229 Addend = readBytesUnaligned(Displacement, 4); in processRelocationRef()
239 uint8_t *Displacement = (uint8_t *)ObjTarget; in processRelocationRef() local
240 Addend = readBytesUnaligned(Displacement, 8); in processRelocationRef()
DRuntimeDyldCOFFI386.h64 uint8_t *Displacement = (uint8_t *)ObjTarget; in processRelocationRef() local
71 Addend = readBytesUnaligned(Displacement, 4); in processRelocationRef()
DRuntimeDyldCOFFThumb.h86 uint8_t *Displacement = (uint8_t *)ObjTarget; in processRelocationRef() local
92 Addend = readBytesUnaligned(Displacement, 4); in processRelocationRef()
/external/llvm/lib/Target/X86/AsmParser/
DX86AsmInstrumentation.cpp105 int64_t ApplyDisplacementBounds(int64_t Displacement) { in ApplyDisplacementBounds() argument
106 return std::max(std::min(MaxAllowedDisplacement, Displacement), in ApplyDisplacementBounds()
110 void CheckDisplacementBounds(int64_t Displacement) { in CheckDisplacementBounds() argument
111 assert(Displacement >= MinAllowedDisplacement && in CheckDisplacementBounds()
112 Displacement <= MaxAllowedDisplacement); in CheckDisplacementBounds()
252 int64_t Displacement,
435 int64_t Displacement = 0; in ComputeMemOperandAddress() local
437 Displacement -= OrigSPOffset; in ComputeMemOperandAddress()
439 Displacement -= OrigSPOffset * Op.getMemScale(); in ComputeMemOperandAddress()
441 assert(Displacement >= 0); in ComputeMemOperandAddress()
[all …]
/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
DRuntimeDyldCOFFX86_64.h143 uint8_t *Displacement = (uint8_t *)ObjTarget; in processRelocationRef() local
144 Addend = readBytesUnaligned(Displacement, 4); in processRelocationRef()
149 uint8_t *Displacement = (uint8_t *)ObjTarget; in processRelocationRef() local
150 Addend = readBytesUnaligned(Displacement, 8); in processRelocationRef()
DRuntimeDyldCOFFI386.h65 uint8_t *Displacement = (uint8_t *)ObjTarget; in processRelocationRef() local
72 Addend = readBytesUnaligned(Displacement, 4); in processRelocationRef()
DRuntimeDyldCOFFThumb.h64 uint8_t *Displacement = (uint8_t *)ObjTarget; in processRelocationRef() local
70 Addend = readBytesUnaligned(Displacement, 4); in processRelocationRef()
/external/llvm-project/llvm/tools/llvm-readobj/
DWin64EHDumper.cpp130 uint32_t Displacement) { in formatSymbol() argument
139 if (Displacement > 0) in formatSymbol()
140 OS << format(" +0x%X (0x%" PRIX64 ")", Displacement, Offset); in formatSymbol()
148 } else if (!getSymbol(Ctx.COFF, Ctx.COFF.getImageBase() + Displacement, in formatSymbol()
153 OS << format(" (0x%" PRIX64 ")", Ctx.COFF.getImageBase() + Displacement); in formatSymbol()
160 if (Displacement > 0) in formatSymbol()
161 OS << format("(0x%" PRIX64 ")", Ctx.COFF.getImageBase() + Displacement); in formatSymbol()
/external/llvm-project/llvm/lib/CodeGen/
DImplicitNullChecks.cpp382 int64_t Displacement = AddrMode.Displacement; in isSuitableMemoryOp() local
437 APInt DisplacementC(64, Displacement, true /*isSigned*/); in isSuitableMemoryOp()
445 Displacement = DisplacementC.getSExtValue(); in isSuitableMemoryOp()
468 if (!(-PageSize < Displacement && Displacement < PageSize)) in isSuitableMemoryOp()
/external/llvm-project/llvm/lib/ExecutionEngine/JITLink/
DELF_x86_64.cpp144 int64_t Displacement = TargetAddr - EdgeAddr + 4; in optimizeELF_x86_64_GOTAndStubs() local
145 if (Displacement >= std::numeric_limits<int32_t>::min() && in optimizeELF_x86_64_GOTAndStubs()
146 Displacement <= std::numeric_limits<int32_t>::max()) { in optimizeELF_x86_64_GOTAndStubs()
179 int64_t Displacement = TargetAddr - EdgeAddr + 4; in optimizeELF_x86_64_GOTAndStubs() local
180 if (Displacement >= std::numeric_limits<int32_t>::min() && in optimizeELF_x86_64_GOTAndStubs()
181 Displacement <= std::numeric_limits<int32_t>::max()) { in optimizeELF_x86_64_GOTAndStubs()
DMachO_x86_64.cpp490 int64_t Displacement = TargetAddr - EdgeAddr + 4; in optimizeMachO_x86_64_GOTAndStubs() local
491 if (Displacement >= std::numeric_limits<int32_t>::min() && in optimizeMachO_x86_64_GOTAndStubs()
492 Displacement <= std::numeric_limits<int32_t>::max()) { in optimizeMachO_x86_64_GOTAndStubs()
527 int64_t Displacement = TargetAddr - EdgeAddr + 4; in optimizeMachO_x86_64_GOTAndStubs() local
528 if (Displacement >= std::numeric_limits<int32_t>::min() && in optimizeMachO_x86_64_GOTAndStubs()
529 Displacement <= std::numeric_limits<int32_t>::max()) { in optimizeMachO_x86_64_GOTAndStubs()
/external/llvm/tools/llvm-readobj/
DWin64EHDumper.cpp117 uint32_t Displacement) { in formatSymbol() argument
126 if (Displacement > 0) in formatSymbol()
127 OS << format(" +0x%X (0x%" PRIX64 ")", Displacement, Offset); in formatSymbol()
/external/mesa3d/src/util/
Du_debug_symbol.c137 (HANDLE hProcess, DWORD64 Address, PDWORD64 Displacement, PSYMBOL_INFO Symbol),
138 (hProcess, Address, Displacement, Symbol))
/external/llvm/lib/Target/X86/
DX86MCInstLower.cpp780 unsigned Opc, BaseReg, ScaleVal, IndexReg, Displacement, SegmentReg; in EmitNop() local
781 Opc = IndexReg = Displacement = SegmentReg = 0; in EmitNop()
789 case 4: NopSize = 4; Opc = X86::NOOPL; Displacement = 8; break; in EmitNop()
790 case 5: NopSize = 5; Opc = X86::NOOPL; Displacement = 8; in EmitNop()
792 case 6: NopSize = 6; Opc = X86::NOOPW; Displacement = 8; in EmitNop()
794 case 7: NopSize = 7; Opc = X86::NOOPL; Displacement = 512; break; in EmitNop()
795 case 8: NopSize = 8; Opc = X86::NOOPL; Displacement = 512; in EmitNop()
797 case 9: NopSize = 9; Opc = X86::NOOPW; Displacement = 512; in EmitNop()
799 default: NopSize = 10; Opc = X86::NOOPW; Displacement = 512; in EmitNop()
824 .addImm(Displacement) in EmitNop()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86MCInstLower.cpp1062 unsigned Opc, BaseReg, ScaleVal, IndexReg, Displacement, SegmentReg; in EmitNop() local
1063 IndexReg = Displacement = SegmentReg = 0; in EmitNop()
1085 Displacement = 8; in EmitNop()
1090 Displacement = 8; in EmitNop()
1096 Displacement = 8; in EmitNop()
1102 Displacement = 512; in EmitNop()
1107 Displacement = 512; in EmitNop()
1113 Displacement = 512; in EmitNop()
1119 Displacement = 512; in EmitNop()
1144 .addImm(Displacement) in EmitNop()
/external/llvm-project/llvm/lib/Target/X86/
DX86MCInstLower.cpp1110 unsigned Opc, BaseReg, ScaleVal, IndexReg, Displacement, SegmentReg; in emitNop() local
1111 IndexReg = Displacement = SegmentReg = 0; in emitNop()
1133 Displacement = 8; in emitNop()
1138 Displacement = 8; in emitNop()
1144 Displacement = 8; in emitNop()
1150 Displacement = 512; in emitNop()
1155 Displacement = 512; in emitNop()
1161 Displacement = 512; in emitNop()
1167 Displacement = 512; in emitNop()
1193 .addImm(Displacement) in emitNop()
/external/llvm-project/llvm/lib/MC/
DMCExpr.cpp655 int64_t Displacement = SA.getOffset() - SB.getOffset(); in AttemptToFoldSymbolOffsetDifference() local
658 Addend += Displacement; in AttemptToFoldSymbolOffsetDifference()
664 Displacement += cast<MCDataFragment>(FI)->getContents().size(); in AttemptToFoldSymbolOffsetDifference()
/external/llvm-project/llvm/lib/Target/PowerPC/
DPPCInstrFormats.td247 let Inst{16-31} = Addr{15-0}; // Displacement
333 let Inst{48-63} = Addr{15-0}; // Displacement
389 let Inst{16-29} = DS_RA{13-0}; // Displacement.
420 let Inst{16-27} = DS_RA{11-0}; // Displacement.
1520 let Inst{48-61} = DS_RA{13-0}; // Displacement.
1556 let Inst{48-63} = D_RA{15-0}; // Displacement
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCInstrFormats.td243 let Inst{16-31} = Addr{15-0}; // Displacement
329 let Inst{48-63} = Addr{15-0}; // Displacement
385 let Inst{16-29} = DS_RA{13-0}; // Displacement.
416 let Inst{16-27} = DS_RA{11-0}; // Displacement.
1516 let Inst{48-61} = DS_RA{13-0}; // Displacement.
1552 let Inst{48-63} = D_RA{15-0}; // Displacement
/external/llvm/lib/Target/PowerPC/
DPPCInstrFormats.td217 let Inst{16-31} = Addr{15-0}; // Displacement
303 let Inst{48-63} = Addr{15-0}; // Displacement
359 let Inst{16-29} = DS_RA{13-0}; // Displacement.
374 let Inst{16-27} = DS_RA{11-0}; // Displacement.
1324 let Inst{48-61} = DS_RA{13-0}; // Displacement.

12