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

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/bfin/
expected_errors.l 24 .*:31: Error: Displacement out of range. Input text was r0.
25 .*:32: Error: Displacement out of range. Input text was r0.
26 .*:33: Error: Displacement out of range. Input text was r0.
27 .*:34: Error: Displacement out of range. Input text was r0.
28 .*:36: Error: Displacement out of range. Input text was r0.
29 .*:37: Error: Displacement out of range. Input text was r0.
30 .*:38: Error: Displacement out of range. Input text was r0.
31 .*:40: Error: Displacement out of range. Input text was r0.
32 .*:41: Error: Displacement out of range. Input text was r0.
33 .*:42: Error: Displacement out of range. Input text was r0
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldCOFFX86_64.h 143 uint8_t *Displacement = (uint8_t *)ObjTarget;
144 Addend = readBytesUnaligned(Displacement, 4);
149 uint8_t *Displacement = (uint8_t *)ObjTarget;
150 Addend = readBytesUnaligned(Displacement, 8);
RuntimeDyldCOFFI386.h 65 uint8_t *Displacement = (uint8_t *)ObjTarget;
72 Addend = readBytesUnaligned(Displacement, 4);
176 // 32-bit relative displacement to the target.
RuntimeDyldCOFFThumb.h 64 uint8_t *Displacement = (uint8_t *)ObjTarget;
70 Addend = readBytesUnaligned(Displacement, 4);
237 // The most significant 20-bits of the signed 21-bit relative displacement
252 // The most significant 24-bits of the signed 25-bit relative displacement
267 // The most significant 24-bits of the signed 25-bit relative displacement
  /external/v8/src/
label.h 79 friend class Displacement;
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmInstrumentation.cpp 105 int64_t ApplyDisplacementBounds(int64_t Displacement) {
106 return std::max(std::min(MaxAllowedDisplacement, Displacement),
110 void CheckDisplacementBounds(int64_t Displacement) {
111 assert(Displacement >= MinAllowedDisplacement &&
112 Displacement <= MaxAllowedDisplacement);
248 // Creates new memory operand with Displacement added to an original
249 // displacement. Residue will contain a residue which could happen when the
250 // total displacement exceeds 32-bit limitation.
252 int64_t Displacement,
435 int64_t Displacement = 0
    [all...]
  /external/v8/src/ia32/
assembler-ia32-inl.h 417 emit_disp(label, Displacement::CODE_RELATIVE);
467 Displacement Assembler::disp_at(Label* L) {
468 return Displacement(long_at(L->pos()));
472 void Assembler::disp_at_put(Label* L, Displacement disp) {
477 void Assembler::emit_disp(Label* L, Displacement::Type type) {
478 Displacement disp(L, type);
assembler-ia32.cc 151 // Implementation of Displacement
153 void Displacement::init(Label* L, Type type) {
    [all...]
assembler-ia32.h 412 // A Displacement describes the 32bit immediate field of an instruction which
416 // A Displacement contains 2 different fields:
418 // next field: position of next displacement in the chain (0 = end of list)
422 // be no displacement at position zero, because there is always at least one
423 // instruction byte before the displacement).
425 // Displacement _data field layout
430 class Displacement BASE_EMBEDDED {
442 explicit Displacement(int data) { data_ = data; }
444 Displacement(Label* L, Type type) { init(L, type); }
    [all...]
  /external/v8/src/x87/
assembler-x87-inl.h 417 emit_disp(label, Displacement::CODE_RELATIVE);
467 Displacement Assembler::disp_at(Label* L) {
468 return Displacement(long_at(L->pos()));
472 void Assembler::disp_at_put(Label* L, Displacement disp) {
477 void Assembler::emit_disp(Label* L, Displacement::Type type) {
478 Displacement disp(L, type);
assembler-x87.h 410 // A Displacement describes the 32bit immediate field of an instruction which
414 // A Displacement contains 2 different fields:
416 // next field: position of next displacement in the chain (0 = end of list)
420 // be no displacement at position zero, because there is always at least one
421 // instruction byte before the displacement).
423 // Displacement _data field layout
428 class Displacement BASE_EMBEDDED {
440 explicit Displacement(int data) { data_ = data; }
442 Displacement(Label* L, Type type) { init(L, type); }
    [all...]
assembler-x87.cc 66 // Implementation of Displacement
68 void Displacement::init(Label* L, Type type) {
1328 // Displacement of the last instruction using the label.
1340 Displacement disp = disp_at(&l);
1356 Displacement disp = disp_at(L);
1358 if (disp.type() == Displacement::CODE_ABSOLUTE) {
1361 } else if (disp.type() == Displacement::CODE_RELATIVE) {
1365 if (disp.type() == Displacement::UNCONDITIONAL_JUMP) {
1412 emit_disp(L, Displacement::OTHER);
    [all...]
  /external/llvm/tools/llvm-readobj/
Win64EHDumper.cpp 117 uint32_t Displacement) {
126 if (Displacement > 0)
127 OS << format(" +0x%X (0x%" PRIX64 ")", Displacement, Offset);
  /external/mesa3d/src/gallium/auxiliary/util/
u_debug_symbol.c 137 (HANDLE hProcess, DWORD64 Address, PDWORD64 Displacement, PSYMBOL_INFO Symbol),
138 (hProcess, Address, Displacement, Symbol))
161 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/llvm/lib/Target/X86/
X86MCInstLower.cpp 780 unsigned Opc, BaseReg, ScaleVal, IndexReg, Displacement, SegmentReg;
781 Opc = IndexReg = Displacement = SegmentReg = 0;
789 case 4: NopSize = 4; Opc = X86::NOOPL; Displacement = 8; break;
790 case 5: NopSize = 5; Opc = X86::NOOPL; Displacement = 8;
792 case 6: NopSize = 6; Opc = X86::NOOPW; Displacement = 8;
794 case 7: NopSize = 7; Opc = X86::NOOPL; Displacement = 512; break;
795 case 8: NopSize = 8; Opc = X86::NOOPL; Displacement = 512;
797 case 9: NopSize = 9; Opc = X86::NOOPW; Displacement = 512;
799 default: NopSize = 10; Opc = X86::NOOPW; Displacement = 512;
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic4x/
addressing.s 265 ;; Type P - Displacement (PC rel)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dbgeng.h     [all...]
  /external/capstone/bindings/vb6/
mx86.bas 357 disp As Currency ' displacement value
400 disp As Long ' Displacement value, or 0 when irrelevant.
    [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 338 milliseconds