Home | History | Annotate | Download | only in IPO

Lines Matching refs:InstResult

2289     Constant *InstResult = nullptr;
2367 InstResult = ConstantExpr::get(BO->getOpcode(),
2370 DEBUG(dbgs() << "Found a BinaryOperator! Simplifying: " << *InstResult
2373 InstResult = ConstantExpr::getCompare(CI->getPredicate(),
2376 DEBUG(dbgs() << "Found a CmpInst! Simplifying: " << *InstResult
2379 InstResult = ConstantExpr::getCast(CI->getOpcode(),
2382 DEBUG(dbgs() << "Found a Cast! Simplifying: " << *InstResult
2385 InstResult = ConstantExpr::getSelect(getVal(SI->getOperand(0)),
2388 DEBUG(dbgs() << "Found a Select! Simplifying: " << *InstResult
2391 InstResult = ConstantExpr::getExtractValue(
2393 DEBUG(dbgs() << "Found an ExtractValueInst! Simplifying: " << *InstResult
2396 InstResult = ConstantExpr::getInsertValue(
2399 DEBUG(dbgs() << "Found an InsertValueInst! Simplifying: " << *InstResult
2407 InstResult =
2410 DEBUG(dbgs() << "Found a GEP! Simplifying: " << *InstResult
2425 InstResult = ComputeLoadResult(Ptr);
2426 if (!InstResult) {
2432 DEBUG(dbgs() << "Evaluated load: " << *InstResult << "\n");
2442 InstResult = AllocaTmps.back().get();
2443 DEBUG(dbgs() << "Found an alloca. Result: " << *InstResult << "\n");
2531 InstResult = C;
2533 *InstResult << "\n");
2552 InstResult = RetVal;
2554 if (InstResult) {
2556 InstResult << "\n\n");
2604 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(InstResult))
2605 InstResult = ConstantFoldConstantExpression(CE, DL, TLI);
2607 setVal(CurInst, InstResult);