Home | History | Annotate | Download | only in Utils

Lines Matching refs:Vals

423 GatherConstantCompares(Value *V, std::vector<ConstantInt*> &Vals, Value *&Extra,
433 Vals.push_back(C);
452 Vals.push_back(ConstantInt::get(V->getContext(), Tmp));
463 unsigned NumValsBeforeLHS = Vals.size();
465 if (Value *LHS = GatherConstantCompares(I->getOperand(0), Vals, Extra, TD,
467 unsigned NumVals = Vals.size();
469 if (Value *RHS = GatherConstantCompares(I->getOperand(1), Vals, Extra, TD,
473 Vals.resize(NumVals);
484 Vals.resize(NumValsBeforeLHS);
494 if (Value *RHS = GatherConstantCompares(I->getOperand(1), Vals, Extra, TD,
497 assert(Vals.size() == NumValsBeforeLHS);