/external/chromium_org/third_party/mesa/src/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/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/chromium_org/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/chromium_org/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 | 691 unsigned Opc, BaseReg, ScaleVal, IndexReg, Displacement, SegmentReg; 692 Opc = IndexReg = Displacement = SegmentReg = 0; 699 case 4: NumBytes -= 4; Opc = X86::NOOPL; Displacement = 8; break; 700 case 5: NumBytes -= 5; Opc = X86::NOOPL; Displacement = 8; 702 case 6: NumBytes -= 6; Opc = X86::NOOPW; Displacement = 8; 704 case 7: NumBytes -= 7; Opc = X86::NOOPL; Displacement = 512; break; 705 case 8: NumBytes -= 8; Opc = X86::NOOPL; Displacement = 512; 707 case 9: NumBytes -= 9; Opc = X86::NOOPW; Displacement = 512; 709 default: NumBytes -= 10; Opc = X86::NOOPW; Displacement = 512; 730 .addImm(Displacement) [all...] |
/external/chromium_org/v8/src/ |
assembler.h | 275 friend class Displacement; [all...] |