Lines Matching defs:Result
108 // If this is a legal integer from type, and the result would be an illegal
113 // Otherwise, if both are illegal, do not increase the size of the result. We
1309 "Result of expression should be constant");
1379 // operate on the inserted value instead of the insertvalue result.
1390 // allows us to simplify multiple result intrinsics to simpler things that
1393 // Check if we're grabbing the overflow bit or the result of a 'with
1399 if (*EV.idx_begin() == 0) { // Normal result.
1406 // If the normal result of the add is dead, and the RHS is a constant,
1416 if (*EV.idx_begin() == 0) { // Normal result.
1425 if (*EV.idx_begin() == 0) { // Normal result.
2067 if (Instruction *Result = visit(*I)) {
2070 if (Result != I) {
2072 << " New = " << *Result << '\n');
2075 Result->setDebugLoc(I->getDebugLoc());
2077 I->replaceAllUsesWith(Result);
2080 Result->takeName(I);
2083 Worklist.Add(Result);
2084 Worklist.AddUsersToWorkList(*Result);
2092 if (!isa<PHINode>(Result) && isa<PHINode>(InsertPos))
2095 InstParent->getInstList().insert(InsertPos, Result);