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

  /external/llvm/include/llvm/CodeGen/
MachineFrameInfo.h 431 void setOffsetAdjustment(int Adj) { OffsetAdjustment = Adj; }
  /external/clang/lib/CodeGen/
ItaniumCXXABI.cpp 222 /// struct { ptrdiff_t ptr; ptrdiff_t adj; } memptr;
226 /// - the this-adjustment is (memptr.adj)
230 /// - method pointers are virtual if (memptr.adj & 1) is nonzero
231 /// - the this-adjustment is (memptr.adj >> 1)
233 /// ARM uses 'adj' for the virtual flag because Thumb functions
264 // Extract memptr.adj, which is in the second field.
265 llvm::Value *RawAdj = Builder.CreateExtractValue(MemFnPtr, 1, "memptr.adj");
268 llvm::Value *Adj = RawAdj;
270 Adj = Builder.CreateAShr(Adj, ptrdiff_1, "memptr.adj.shifted")
    [all...]
  /external/llvm/lib/Target/X86/
X86CodeEmitter.cpp 102 intptr_t Adj = 0, bool IsPCRel = true);
421 intptr_t Adj /* = 0 */,
443 Adj, Indirect);
448 RelocOp->getOffset(), Adj);
451 emitJumpTableAddress(RelocOp->getIndex(), RelocType, Adj);
    [all...]
  /external/llvm/lib/Target/ARM/
ARMBaseInstrInfo.cpp     [all...]

Completed in 2039 milliseconds