reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
349 FV = SimplifyBinOp(Opcode, SI->getFalseValue(), RHS, Q, MaxRecurse); 352 FV = SimplifyBinOp(Opcode, LHS, SI->getFalseValue(), Q, MaxRecurse); 357 if (TV == FV) 362 return FV; 363 if (FV && isa<UndefValue>(FV)) 363 if (FV && isa<UndefValue>(FV)) 368 if (TV == SI->getTrueValue() && FV == SI->getFalseValue()) 374 if ((FV && !TV) || (TV && !FV)) { 374 if ((FV && !TV) || (TV && !FV)) { 377 Instruction *Simplified = dyn_cast<Instruction>(FV ? FV : TV); 377 Instruction *Simplified = dyn_cast<Instruction>(FV ? FV : TV); 382 Value *UnsimplifiedBranch = FV ? SI->getTrueValue() : SI->getFalseValue();