Searched refs:numCmps (Results 1 – 4 of 4) sorted by relevance
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/ |
D | LowerSwitch.cpp | 237 unsigned numCmps = 0; in Clusterify() local 264 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) { in Clusterify() 267 ++numCmps; in Clusterify() 270 return numCmps; in Clusterify() 308 unsigned numCmps = Clusterify(Cases, SI); in processSwitchInst() local 311 << ". Total compares: " << numCmps << "\n"); in processSwitchInst() 313 (void)numCmps; in processSwitchInst()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/ |
D | LowerSwitch.cpp | 368 unsigned numCmps = 0; in Clusterify() local 399 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) { in Clusterify() 402 ++numCmps; in Clusterify() 405 return numCmps; in Clusterify() 435 unsigned numCmps = Clusterify(Cases, SI); in processSwitchInst() local 437 << ". Total compares: " << numCmps << "\n"); in processSwitchInst() 439 (void)numCmps; in processSwitchInst()
|
/external/llvm/lib/Transforms/Utils/ |
D | LowerSwitch.cpp | 356 unsigned numCmps = 0; in Clusterify() local 387 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) { in Clusterify() 390 ++numCmps; in Clusterify() 393 return numCmps; in Clusterify() 415 unsigned numCmps = Clusterify(Cases, SI); in processSwitchInst() local 417 << ". Total compares: " << numCmps << "\n"); in processSwitchInst() 419 (void)numCmps; in processSwitchInst()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.cpp | 2268 size_t numCmps = 0; in handleBitTestsSwitchCase() local 2272 numCmps += (I->Low == I->High ? 1 : 2); in handleBitTestsSwitchCase() 2285 << "Total number of comparisons: " << numCmps << '\n'); in handleBitTestsSwitchCase() 2297 (!(Dests.size() == 1 && numCmps >= 3) && in handleBitTestsSwitchCase() 2298 !(Dests.size() == 2 && numCmps >= 5) && in handleBitTestsSwitchCase() 2299 !(Dests.size() >= 3 && numCmps >= 6))) in handleBitTestsSwitchCase() 2382 size_t numCmps = 0; in Clusterify() local 2429 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) { in Clusterify() 2432 ++numCmps; in Clusterify() 2435 return numCmps; in Clusterify() [all …]
|