reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
50 C.Low = Low; 61 C.Low = Low; 72 C.Low = Low;lib/CodeGen/GlobalISel/IRTranslator.cpp
479 C.Low->getValue().print(dbgs(), true); 480 if (C.Low != C.High) { 725 if (I->Low == I->High) { 729 RHS = I->Low; 734 LHS = I->Low; 769 : a.Low->getValue().slt(b.Low->getValue()); 769 : a.Low->getValue().slt(b.Low->getValue());lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
10066 if (Small.Low == Small.High && Big.Low == Big.High && 10066 if (Small.Low == Small.High && Big.Low == Big.High && 10068 const APInt &SmallValue = Small.Low->getValue(); 10069 const APInt &BigValue = Big.Low->getValue(); 10119 a.Low->getValue().slt(b.Low->getValue()); 10119 a.Low->getValue().slt(b.Low->getValue()); 10244 if (I->Low == I->High) { 10248 RHS=I->Low; 10253 LHS = I->Low; 10286 return X.Low->getValue().slt(CC.Low->getValue()); 10286 return X.Low->getValue().slt(CC.Low->getValue()); 10294 assert(W.FirstCluster->Low->getValue().slt(W.LastCluster->Low->getValue()) && 10294 assert(W.FirstCluster->Low->getValue().slt(W.LastCluster->Low->getValue()) && 10374 const ConstantInt *Pivot = PivotCluster->Low; 10385 FirstLeft->Low == W.GE && 10543 C.Low->getValue().print(dbgs(), true); 10544 if (C.Low != C.High) {lib/CodeGen/SwitchLoweringUtils.cpp
23 const APInt &LowCase = Clusters[First].Low->getValue(); 52 assert(Clusters[i - 1].High->getValue().slt(Clusters[i].Low->getValue())); 71 const APInt &Lo = Clusters[i].Low->getValue(); 204 const APInt &Low = Clusters[I].Low->getValue(); 223 Clusters[First].Low->getValue(), 250 JumpTableHeader JTH(Clusters[First].Low->getValue(), 255 JTCluster = CaseCluster::jumpTable(Clusters[First].Low, Clusters[Last].High, 272 assert(Clusters[i-1].High->getValue().slt(Clusters[i].Low->getValue())); 311 if (!TLI->rangeFitsInWord(Clusters[i].Low->getValue(), 372 NumCmps += (Clusters[I].Low == Clusters[I].High) ? 1 : 2; 376 APInt Low = Clusters[First].Low->getValue(); 394 if (Clusters[I].Low->getValue() != Clusters[I - 1].High->getValue() + 1) { 425 uint64_t Lo = (Clusters[i].Low->getValue() - LowBound).getZExtValue(); 454 BTCluster = CaseCluster::bitTests(Clusters[First].Low, Clusters[Last].High, 462 assert(CC.Low == CC.High && "Input clusters must be single-case"); 466 return a.Low->getValue().slt(b.Low->getValue()); 466 return a.Low->getValue().slt(b.Low->getValue()); 474 const ConstantInt *CaseVal = CC.Low;