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

/external/clang/lib/StaticAnalyzer/Core/
H A DSimpleSValBuilder.cpp497 const llvm::APSInt *newRHS; local
499 newRHS = BasicVals.evalAPSInt(BO_Add, first, second);
501 newRHS = BasicVals.evalAPSInt(BO_Sub, first, second);
503 assert(newRHS && "Invalid operation despite common type!");
504 rhs = nonloc::ConcreteInt(*newRHS);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp1064 Value* newRHS = RHS; local
1069 newRHS = LHSOp1;
1078 newRHS = RHSOp0;
1083 newRHS = nullptr;
1086 if (newLHS == LHS && newRHS == RHS)
1093 if (RHSShuffle && newRHS != RHS)
1129 else if (newRHS != RHS) {
1142 // If newRHS == NULL, i.e. LHSOp0 == RHSOp0, we want to remap any
1144 // If newRHS == newLHS, we want to remap any references from newRHS t
[all...]

Completed in 73 milliseconds