HomeSort by relevance Sort by last modified time
    Searched refs:Displacement (Results 1 - 15 of 15) sorted by null

  /external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldCOFFX86_64.h 153 uint32_t *Displacement = (uint32_t *)ObjTarget;
154 Addend = *Displacement;
159 uint64_t *Displacement = (uint64_t *)ObjTarget;
160 Addend = *Displacement;
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmInstrumentation.cpp 108 int64_t ApplyDisplacementBounds(int64_t Displacement) {
109 return std::max(std::min(MaxAllowedDisplacement, Displacement),
113 void CheckDisplacementBounds(int64_t Displacement) {
114 assert(Displacement >= MinAllowedDisplacement &&
115 Displacement <= MaxAllowedDisplacement);
257 // Creates new memory operand with Displacement added to an original
258 // displacement. Residue will contain a residue which could happen when the
259 // total displacement exceeds 32-bit limitation.
261 int64_t Displacement,
444 int64_t Displacement = 0
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_debug_symbol.c 113 BOOL WINAPI j_SymFromAddr(HANDLE hProcess, DWORD64 Address, PDWORD64 Displacement, PSYMBOL_INFO Symbol)
118 return pfnSymFromAddr(hProcess, Address, Displacement, Symbol);
130 DWORD64 dwDisplacement = 0; /* Displacement of the input address, relative to the start of the symbol */
dbghelp.h 818 BOOL IMAGEAPI SymFromAddr(HANDLE hProcess,DWORD64 Address,PDWORD64 Displacement,PSYMBOL_INFO Symbol);
    [all...]
  /external/v8/src/ia32/
assembler-ia32-inl.h 449 emit_disp(label, Displacement::CODE_RELATIVE);
490 Displacement Assembler::disp_at(Label* L) {
491 return Displacement(long_at(L->pos()));
495 void Assembler::disp_at_put(Label* L, Displacement disp) {
500 void Assembler::emit_disp(Label* L, Displacement::Type type) {
501 Displacement disp(L, type);
assembler-ia32.h 408 // A Displacement describes the 32bit immediate field of an instruction which
412 // A Displacement contains 2 different fields:
414 // next field: position of next displacement in the chain (0 = end of list)
418 // be no displacement at position zero, because there is always at least one
419 // instruction byte before the displacement).
421 // Displacement _data field layout
426 class Displacement BASE_EMBEDDED {
442 explicit Displacement(int data) { data_ = data; }
444 Displacement(Label* L, Type type) { init(L, type); }
    [all...]
assembler-ia32.cc 71 // Implementation of Displacement
73 void Displacement::init(Label* L, Type type) {
1279 // Displacement of the last instruction using the label.
1291 Displacement disp = disp_at(&l);
1307 Displacement disp = disp_at(L);
1309 if (disp.type() == Displacement::CODE_RELATIVE) {
1313 if (disp.type() == Displacement::UNCONDITIONAL_JUMP) {
1361 emit_disp(L, Displacement::OTHER);
1432 emit_disp(L, Displacement::UNCONDITIONAL_JUMP);
    [all...]
  /external/v8/src/x87/
assembler-x87-inl.h 450 emit_disp(label, Displacement::CODE_RELATIVE);
491 Displacement Assembler::disp_at(Label* L) {
492 return Displacement(long_at(L->pos()));
496 void Assembler::disp_at_put(Label* L, Displacement disp) {
501 void Assembler::emit_disp(Label* L, Displacement::Type type) {
502 Displacement disp(L, type);
assembler-x87.h 397 // A Displacement describes the 32bit immediate field of an instruction which
401 // A Displacement contains 2 different fields:
403 // next field: position of next displacement in the chain (0 = end of list)
407 // be no displacement at position zero, because there is always at least one
408 // instruction byte before the displacement).
410 // Displacement _data field layout
415 class Displacement BASE_EMBEDDED {
431 explicit Displacement(int data) { data_ = data; }
433 Displacement(Label* L, Type type) { init(L, type); }
    [all...]
assembler-x87.cc 66 // Implementation of Displacement
68 void Displacement::init(Label* L, Type type) {
1212 // Displacement of the last instruction using the label.
1224 Displacement disp = disp_at(&l);
1240 Displacement disp = disp_at(L);
1242 if (disp.type() == Displacement::CODE_RELATIVE) {
1246 if (disp.type() == Displacement::UNCONDITIONAL_JUMP) {
1294 emit_disp(L, Displacement::OTHER);
1365 emit_disp(L, Displacement::UNCONDITIONAL_JUMP);
1424 emit_disp(L, Displacement::OTHER)
    [all...]
  /external/llvm/tools/llvm-readobj/
Win64EHDumper.cpp 117 uint32_t Displacement) {
130 if (Displacement > 0)
131 OS << format(" +0x%X (0x%" PRIX64 ")", Displacement, Offset);
  /external/llvm/lib/Target/X86/
X86MCInstLower.cpp 762 unsigned Opc, BaseReg, ScaleVal, IndexReg, Displacement, SegmentReg;
763 Opc = IndexReg = Displacement = SegmentReg = 0;
770 case 4: NumBytes -= 4; Opc = X86::NOOPL; Displacement = 8; break;
771 case 5: NumBytes -= 5; Opc = X86::NOOPL; Displacement = 8;
773 case 6: NumBytes -= 6; Opc = X86::NOOPW; Displacement = 8;
775 case 7: NumBytes -= 7; Opc = X86::NOOPL; Displacement = 512; break;
776 case 8: NumBytes -= 8; Opc = X86::NOOPL; Displacement = 512;
778 case 9: NumBytes -= 9; Opc = X86::NOOPW; Displacement = 512;
780 default: NumBytes -= 10; Opc = X86::NOOPW; Displacement = 512;
801 .addImm(Displacement).addReg(SegmentReg), STI)
    [all...]
  /external/v8/src/
assembler.h 275 friend class Displacement;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dbgeng.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/psdk_inc/
_dbg_common.h     [all...]

Completed in 375 milliseconds