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

  /external/clang/lib/CodeGen/
MicrosoftCXXABI.cpp     [all...]
ItaniumCXXABI.cpp 247 /// struct { ptrdiff_t ptr; ptrdiff_t adj; } memptr;
251 /// - the this-adjustment is (memptr.adj)
255 /// - method pointers are virtual if (memptr.adj & 1) is nonzero
256 /// - the this-adjustment is (memptr.adj >> 1)
258 /// ARM uses 'adj' for the virtual flag because Thumb functions
288 // Extract memptr.adj, which is in the second field.
289 llvm::Value *RawAdj = Builder.CreateExtractValue(MemFnPtr, 1, "memptr.adj");
292 llvm::Value *Adj = RawAdj;
294 Adj = Builder.CreateAShr(Adj, ptrdiff_1, "memptr.adj.shifted")
    [all...]
  /external/llvm/lib/Target/ARM/
ARMBaseInstrInfo.cpp     [all...]

Completed in 663 milliseconds