HomeSort by: relevance | last modified time | path
    Searched defs:Adj (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp 397 const SubobjectAdjustment &Adj = *I;
398 switch (Adj.Kind) {
400 Reg = StoreMgr.evalDerivedToBase(Reg, Adj.DerivedToBase.BasePath);
403 Reg = StoreMgr.getLValueField(Adj.Field, Reg);
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMBaseInstrInfo.cpp 4415 int Adj = DefAdj + UseAdj;
4418 Adj += adjustDefLatency(Subtarget, DefMI, DefMCID, DefAlign);
4419 if (Adj >= 0 || (int)Latency > -Adj) {
4420 return Latency + Adj;
4443 int Adj = Subtarget.getPreISelOperandLatencyAdjustment();
4444 int Threshold = 1 + Adj;
4445 return Latency <= Threshold ? 1 : Latency - Adj;
4748 int Adj = adjustDefLatency(Subtarget, MI, MCID, DefAlign);
4749 if (Adj >= 0 || (int)Latency > -Adj)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
ItaniumCXXABI.cpp 603 /// struct { ptrdiff_t ptr; ptrdiff_t adj; } memptr;
607 /// - the this-adjustment is (memptr.adj)
611 /// - method pointers are virtual if (memptr.adj & 1) is nonzero
612 /// - the this-adjustment is (memptr.adj >> 1)
614 /// ARM uses 'adj' for the virtual flag because Thumb functions
642 // Extract memptr.adj, which is in the second field.
643 llvm::Value *RawAdj = Builder.CreateExtractValue(MemFnPtr, 1, "memptr.adj");
646 llvm::Value *Adj = RawAdj;
648 Adj = Builder.CreateAShr(Adj, ptrdiff_1, "memptr.adj.shifted")
    [all...]

Completed in 35 milliseconds