Home | History | Annotate | Download | only in Utils

Lines Matching defs:CaseVal

3351 /// destionations CaseDest corresponding to value CaseVal (0 for the default
3355 ConstantInt *CaseVal,
3363 // which we can constant-propagate the CaseVal, continue to its successor.
3365 ConstantPool.insert(std::make_pair(SI->getCondition(), CaseVal));
3491 ConstantInt *CaseVal = Values[I].first;
3495 uint64_t Idx = (CaseVal->getValue() - Offset->getValue())
3691 ConstantInt *CaseVal = CI.getCaseValue();
3692 if (CaseVal->getValue().slt(MinCaseVal->getValue()))
3693 MinCaseVal = CaseVal;
3694 if (CaseVal->getValue().sgt(MaxCaseVal->getValue()))
3695 MaxCaseVal = CaseVal;
3700 if (!GetCaseResults(SI, CaseVal, CI.getCaseSuccessor(), &CommonDest,
3708 ResultLists[I->first].push_back(std::make_pair(CaseVal, I->second));