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

  /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/ARM/
ARMBaseInstrInfo.cpp     [all...]

Completed in 497 milliseconds