Searched defs:SimpleV (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Analysis/IPA/
H A DInlineCost.cpp592 Value *SimpleV = SimplifyBinOp(I.getOpcode(), LHS, RHS, TD); local
593 if (Constant *C = dyn_cast_or_null<Constant>(SimpleV)) {
/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp3139 /// If we have a pre-simplified value in 'SimpleV', that is forcibly used to
3146 static bool replaceAndRecursivelySimplifyImpl(Instruction *I, Value *SimpleV, argument
3155 if (SimpleV) {
3162 I->replaceAllUsesWith(SimpleV);
3177 SimpleV = SimplifyInstruction(I, TD, TLI, DT);
3178 if (!SimpleV)
3191 I->replaceAllUsesWith(SimpleV);
3208 bool llvm::replaceAndRecursivelySimplify(Instruction *I, Value *SimpleV, argument
3212 assert(I != SimpleV && "replaceAndRecursivelySimplify(X,X) is not valid!");
3213 assert(SimpleV
[all...]

Completed in 91 milliseconds