Searched refs:RHSValue (Results 1 - 6 of 6) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCExpr.cpp842 MCValue LHSValue, RHSValue; local
846 !ABE->getRHS()->evaluateAsRelocatableImpl(RHSValue, Asm, Layout, Fixup,
866 if (!LHSValue.isAbsolute() || !RHSValue.isAbsolute()) {
874 RHSValue.getSymB(), RHSValue.getSymA(),
875 -(uint64_t)RHSValue.getConstant(), Res);
879 RHSValue.getSymA(), RHSValue.getSymB(),
880 RHSValue.getConstant(), Res);
887 int64_t LHS = LHSValue.getConstant(), RHS = RHSValue
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSimpleSValBuilder.cpp602 llvm::APSInt RHSValue = *KnownRHSValue; local
608 APSIntType(RHSValue));
610 CompareType.apply(RHSValue);
614 IntType.apply(RHSValue);
618 BasicVals.evalAPSInt(op, LHSValue, RHSValue);
719 if (const llvm::APSInt *RHSValue = getKnownValue(state, rhs)) {
734 const llvm::APSInt &second = IntType.convert(*RHSValue);
751 return MakeSymIntVal(symIntExpr, op, *RHSValue, resultTy);
766 if (const llvm::APSInt *RHSValue = getKnownValue(state, rhs))
767 return MakeSymIntVal(Sym, op, *RHSValue, resultT
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp2516 int64_t RHSValue, SDLoc dl);
2518 int64_t RHSValue, SDLoc dl);
2520 int64_t RHSValue, SDLoc dl);
2522 int64_t RHSValue, SDLoc dl);
2923 int64_t RHSValue, SDLoc dl) {
2927 bool IsRHSZero = RHSValue == 0;
2928 bool IsRHSOne = RHSValue == 1;
2929 bool IsRHSNegOne = RHSValue == -1LL;
3096 int64_t RHSValue, SDLoc dl) {
3100 bool IsRHSZero = RHSValue
2921 get32BitZExtCompare(SDValue LHS, SDValue RHS, ISD::CondCode CC, int64_t RHSValue, SDLoc dl) argument
3094 get32BitSExtCompare(SDValue LHS, SDValue RHS, ISD::CondCode CC, int64_t RHSValue, SDLoc dl) argument
3266 get64BitZExtCompare(SDValue LHS, SDValue RHS, ISD::CondCode CC, int64_t RHSValue, SDLoc dl) argument
3423 get64BitSExtCompare(SDValue LHS, SDValue RHS, ISD::CondCode CC, int64_t RHSValue, SDLoc dl) argument
3638 int64_t RHSValue = RHSConst ? RHSConst->getSExtValue() : INT64_MAX; local
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp2669 const APInt &RHSValue, APInt &Result) {
2671 bool RHS = (RHSValue != 0);
2681 const APFloat &RHSValue, APInt &Result) {
2683 bool RHS = !RHSValue.isZero();
2694 const APValue &RHSValue, APInt &Result) {
2698 RHSValue.getInt(), Result);
2701 RHSValue.getFloat(), Result);
2707 const APTy &RHSValue, APInt &Result) {
2712 Result = (LHSValue == RHSValue);
2715 Result = (LHSValue != RHSValue);
[all...]
H A DASTContext.cpp9534 QualType RHSValue = RHS->castAs<AtomicType>()->getValueType(); local
9537 RHSValue = RHSValue.getUnqualifiedType();
9539 QualType ResultType = mergeTypes(LHSValue, RHSValue, false,
9545 if (getCanonicalType(RHSValue) == getCanonicalType(ResultType))
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp10021 Expr::EvalResult RHSValue; local
10023 RHS.get()->EvaluateAsInt(RHSValue, S.Context) &&
10024 RHSValue.Val.getInt() == 0)

Completed in 367 milliseconds