Home
last modified time | relevance | path

Searched refs:CaseCluster (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.h149 struct CaseCluster { struct
159 static CaseCluster range(const ConstantInt *Low, const ConstantInt *High, in range() argument
161 CaseCluster C; in range()
170 static CaseCluster jumpTable(const ConstantInt *Low, in jumpTable() argument
173 CaseCluster C; in jumpTable()
182 static CaseCluster bitTests(const ConstantInt *Low, const ConstantInt *High, in bitTests() argument
184 CaseCluster C; in bitTests()
194 typedef std::vector<CaseCluster> CaseClusterVector;
317 MachineBasicBlock *DefaultMBB, CaseCluster &JTCluster);
334 const SwitchInst *SI, CaseCluster &BTCluster);
[all …]
DSelectionDAGBuilder.cpp2216 for (const CaseCluster &CC : Clusters) in sortAndRangeify()
2221 [](const CaseCluster &a, const CaseCluster &b) { in sortAndRangeify()
2229 CaseCluster &CC = Clusters[SrcIndex]; in sortAndRangeify()
7697 CaseCluster &JTCluster) { in buildJumpTable()
7764 JTCluster = CaseCluster::jumpTable(Clusters[First].Low, Clusters[Last].High, in buildJumpTable()
7775 for (CaseCluster &C : Clusters) in findJumpTables()
7801 CaseCluster JTCluster; in findJumpTables()
7869 CaseCluster JTCluster; in findJumpTables()
7914 CaseCluster &BTCluster) { in buildBitTests()
8005 BTCluster = CaseCluster::bitTests(Clusters[First].Low, Clusters[Last].High, in buildBitTests()
[all …]