Searched refs:RNeg (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | ThreadSafetyLogical.cpp | 19 static bool implies(const LExpr *LHS, bool LNeg, const LExpr *RHS, bool RNeg) { in implies() argument 24 return implies(A->left(), LNeg, RHS, RNeg) && in implies() 25 implies(A->right(), LNeg, RHS, RNeg); in implies() 28 return implies(LHS, LNeg, A->left(), RNeg) && in implies() 29 implies(LHS, LNeg, A->right(), RNeg); in implies() 34 return implies(A->left(), LNeg, RHS, RNeg) || in implies() 35 implies(A->right(), LNeg, RHS, RNeg); in implies() 38 return implies(LHS, LNeg, A->left(), RNeg) || in implies() 39 implies(LHS, LNeg, A->right(), RNeg); in implies() 49 return RNeg ? RightOrOperator(cast<And>(RHS)) in implies() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
H A D | LegalizerHelper.cpp | 6994 auto RNeg = MIRBuilder.buildFNeg(S32, R); in lowerSITOFP() local 6997 MIRBuilder.buildSelect(Dst, SignNotZero, RNeg, R); in lowerSITOFP()
|