Home | History | Annotate | Download | only in IPO

Lines Matching refs:InstResult

2589     Constant *InstResult = 0;
2667 InstResult = ConstantExpr::get(BO->getOpcode(),
2670 DEBUG(dbgs() << "Found a BinaryOperator! Simplifying: " << *InstResult
2673 InstResult = ConstantExpr::getCompare(CI->getPredicate(),
2676 DEBUG(dbgs() << "Found a CmpInst! Simplifying: " << *InstResult
2679 InstResult = ConstantExpr::getCast(CI->getOpcode(),
2682 DEBUG(dbgs() << "Found a Cast! Simplifying: " << *InstResult
2685 InstResult = ConstantExpr::getSelect(getVal(SI->getOperand(0)),
2688 DEBUG(dbgs() << "Found a Select! Simplifying: " << *InstResult
2696 InstResult =
2699 DEBUG(dbgs() << "Found a GEP! Simplifying: " << *InstResult
2714 InstResult = ComputeLoadResult(Ptr);
2715 if (InstResult == 0) {
2721 DEBUG(dbgs() << "Evaluated load: " << *InstResult << "\n");
2732 InstResult = AllocaTmps.back();
2733 DEBUG(dbgs() << "Found an alloca. Result: " << *InstResult << "\n");
2821 InstResult = C;
2823 *InstResult << "\n");
2842 InstResult = RetVal;
2844 if (InstResult != NULL) {
2846 InstResult << "\n\n");
2894 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(InstResult))
2895 InstResult = ConstantFoldConstantExpression(CE, TD, TLI);
2897 setVal(CurInst, InstResult);