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 189 /// struct { ptrdiff_t ptr; ptrdiff_t adj; } memptr;
193 /// - the this-adjustment is (memptr.adj)
197 /// - method pointers are virtual if (memptr.adj & 1) is nonzero
198 /// - the this-adjustment is (memptr.adj >> 1)
200 /// ARM uses 'adj' for the virtual flag because Thumb functions
231 // Extract memptr.adj, which is in the second field.
232 llvm::Value *RawAdj = Builder.CreateExtractValue(MemFnPtr, 1, "memptr.adj");
235 llvm::Value *Adj = RawAdj;
237 Adj = Builder.CreateAShr(Adj, ptrdiff_1, "memptr.adj.shifted")
    [all...]
  /external/llvm/lib/Target/ARM/
ARMBaseInstrInfo.cpp     [all...]

Completed in 45 milliseconds