/external/llvm/lib/Target/X86/AsmParser/ |
D | X86AsmInstrumentation.cpp | 105 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/ |
D | RuntimeDyldCOFFX86_64.h | 143 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()
|
D | RuntimeDyldCOFFI386.h | 65 uint8_t *Displacement = (uint8_t *)ObjTarget; in processRelocationRef() local 72 Addend = readBytesUnaligned(Displacement, 4); in processRelocationRef()
|
D | RuntimeDyldCOFFThumb.h | 64 uint8_t *Displacement = (uint8_t *)ObjTarget; in processRelocationRef() local 70 Addend = readBytesUnaligned(Displacement, 4); in processRelocationRef()
|
/external/v8/src/ia32/ |
D | assembler-ia32-inl.h | 417 emit_disp(label, Displacement::CODE_RELATIVE); in emit_code_relative_offset() 467 Displacement Assembler::disp_at(Label* L) { in disp_at() 468 return Displacement(long_at(L->pos())); in disp_at() 472 void Assembler::disp_at_put(Label* L, Displacement disp) { in disp_at_put() 477 void Assembler::emit_disp(Label* L, Displacement::Type type) { in emit_disp() 478 Displacement disp(L, type); in emit_disp()
|
D | assembler-ia32.cc | 153 void Displacement::init(Label* L, Type type) { in init() 1469 Displacement disp = disp_at(&l); in print() 1485 Displacement disp = disp_at(L); in bind_to() 1487 if (disp.type() == Displacement::CODE_ABSOLUTE) { in bind_to() 1490 } else if (disp.type() == Displacement::CODE_RELATIVE) { in bind_to() 1494 if (disp.type() == Displacement::UNCONDITIONAL_JUMP) { in bind_to() 1541 emit_disp(L, Displacement::OTHER); in call() 1609 emit_disp(L, Displacement::UNCONDITIONAL_JUMP); in jmp() 1668 emit_disp(L, Displacement::OTHER); in j() 3020 emit_disp(label, Displacement::CODE_ABSOLUTE); in emit_label()
|
D | assembler-ia32.h | 430 class Displacement BASE_EMBEDDED { 442 explicit Displacement(int data) { data_ = data; } in Displacement() function 444 Displacement(Label* L, Type type) { init(L, type); } in Displacement() function 1546 inline Displacement disp_at(Label* L); 1547 inline void disp_at_put(Label* L, Displacement disp); 1548 inline void emit_disp(Label* L, Displacement::Type type);
|
/external/v8/src/x87/ |
D | assembler-x87-inl.h | 417 emit_disp(label, Displacement::CODE_RELATIVE); in emit_code_relative_offset() 467 Displacement Assembler::disp_at(Label* L) { in disp_at() 468 return Displacement(long_at(L->pos())); in disp_at() 472 void Assembler::disp_at_put(Label* L, Displacement disp) { in disp_at_put() 477 void Assembler::emit_disp(Label* L, Displacement::Type type) { in emit_disp() 478 Displacement disp(L, type); in emit_disp()
|
D | assembler-x87.cc | 68 void Displacement::init(Label* L, Type type) { in init() 1340 Displacement disp = disp_at(&l); in print() 1356 Displacement disp = disp_at(L); in bind_to() 1358 if (disp.type() == Displacement::CODE_ABSOLUTE) { in bind_to() 1361 } else if (disp.type() == Displacement::CODE_RELATIVE) { in bind_to() 1365 if (disp.type() == Displacement::UNCONDITIONAL_JUMP) { in bind_to() 1412 emit_disp(L, Displacement::OTHER); in call() 1480 emit_disp(L, Displacement::UNCONDITIONAL_JUMP); in jmp() 1539 emit_disp(L, Displacement::OTHER); in j() 2159 emit_disp(label, Displacement::CODE_ABSOLUTE); in emit_label()
|
D | assembler-x87.h | 428 class Displacement BASE_EMBEDDED { 440 explicit Displacement(int data) { data_ = data; } in Displacement() function 442 Displacement(Label* L, Type type) { init(L, type); } in Displacement() function 1054 inline Displacement disp_at(Label* L); 1055 inline void disp_at_put(Label* L, Displacement disp); 1056 inline void emit_disp(Label* L, Displacement::Type type);
|
/external/llvm/tools/llvm-readobj/ |
D | Win64EHDumper.cpp | 117 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/gallium/auxiliary/util/ |
D | u_debug_symbol.c | 137 (HANDLE hProcess, DWORD64 Address, PDWORD64 Displacement, PSYMBOL_INFO Symbol), 138 (hProcess, Address, Displacement, Symbol))
|
D | dbghelp.h | 818 …BOOL IMAGEAPI SymFromAddr(HANDLE hProcess,DWORD64 Address,PDWORD64 Displacement,PSYMBOL_INFO Symbo…
|
/external/v8/src/ |
D | label.h | 79 friend class Displacement; variable
|
/external/swiftshader/third_party/PowerVR_SDK/Examples/Intermediate/DisplacementMap/ |
D | DisplacementMap.txt | 9 Displacement mapping is an alternative to bump mapping, normal mapping, and parallax mapping, that …
|
/external/llvm/lib/Target/X86/ |
D | X86MCInstLower.cpp | 780 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/llvm/lib/Target/PowerPC/ |
D | PPCInstrFormats.td | 217 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.
|
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/ |
D | PPCInstrFormats.td | 111 let Inst{16-31} = Addr{15-0}; // Displacement 210 let Inst{16-29} = DS_RA{13-0}; // Displacement.
|
/external/llvm/docs/ |
D | CodeGenerator.rst | 2176 Meaning: DestReg, | BaseReg, Scale, IndexReg, Displacement Segment
|