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

  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 15 // In the implementation of this algorithm, constants are assigned rank = 0,
16 // function arguments are rank = 1, and other values are assigned ranks
18 // (starting at 2), which effectively gives values in deep loops higher rank
50 unsigned Rank;
52 ValueEntry(unsigned R, Value *O) : Rank(R), Op(O) {}
55 return LHS.Rank > RHS.Rank; // Sort so that highest rank goes to start.
69 dbgs() << ", #" << Ops[i].Rank << "] ";
174 return 0; // Otherwise it's a global or constant, rank 0
    [all...]
  /external/clang/lib/Sema/
SemaOverload.cpp 121 /// GetConversionRank - Retrieve the implicit conversion rank
125 Rank[(int)ICK_Num_Conversion_Kinds] = {
151 return Rank[(int)Kind];
204 /// getRank - Retrieve the rank of this standard conversion sequence
205 /// (C++ 13.3.3.1.1p3). The rank is the largest rank of each of the
208 ImplicitConversionRank Rank = ICR_Exact_Match;
209 if (GetConversionRank(First) > Rank)
210 Rank = GetConversionRank(First);
211 if (GetConversionRank(Second) > Rank)
    [all...]

Completed in 140 milliseconds