Searched refs:NumCmps (Results 1 – 7 of 7) sorted by relevance
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/ |
D | CorrelatedValuePropagation.cpp | 30 STATISTIC(NumCmps, "Number of comparisons propagated"); 164 ++NumCmps; in processCmp()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | PeepholeOptimizer.cpp | 70 STATISTIC(NumCmps, "Number of compares eliminated"); 345 ++NumCmps; in OptimizeCmpInstr()
|
/external/llvm/lib/Transforms/Scalar/ |
D | CorrelatedValuePropagation.cpp | 36 STATISTIC(NumCmps, "Number of comparisons propagated"); 201 ++NumCmps; in processCmp()
|
/external/llvm/lib/CodeGen/ |
D | PeepholeOptimizer.cpp | 112 STATISTIC(NumCmps, "Number of compares eliminated"); 574 ++NumCmps; in optimizeCmpInstr()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.h | 326 bool isSuitableForBitTests(unsigned NumDests, unsigned NumCmps,
|
D | SelectionDAGBuilder.cpp | 8250 unsigned NumCmps = 0; in buildJumpTable() local 8263 NumCmps += (Low == High) ? 1 : 2; in buildJumpTable() 8279 if (isSuitableForBitTests(NumDests, NumCmps, in buildJumpTable() 8442 unsigned NumCmps, in isSuitableForBitTests() argument 8459 return (NumDests == 1 && NumCmps >= 3) || in isSuitableForBitTests() 8460 (NumDests == 2 && NumCmps >= 5) || in isSuitableForBitTests() 8461 (NumDests == 3 && NumCmps >= 6); in isSuitableForBitTests() 8473 unsigned NumCmps = 0; in buildBitTests() local 8477 NumCmps += (Clusters[I].Low == Clusters[I].High) ? 1 : 2; in buildBitTests() 8485 if (!isSuitableForBitTests(NumDests, NumCmps, Low, High)) in buildBitTests()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCompares.cpp | 1086 unsigned NumCmps = 0; in FoldAllocaCmp() local 1105 if (NumCmps++) in FoldAllocaCmp()
|