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

  /external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
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
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);
  /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/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...]

Completed in 696 milliseconds