Searched refs:LHSValue (Results 1 - 4 of 4) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DSimpleSValBuilder.cpp467 llvm::APSInt LHSValue = lhs.castAs<nonloc::ConcreteInt>().getValue(); local
476 APSIntType CompareType = std::max(APSIntType(LHSValue),
478 CompareType.apply(LHSValue);
482 IntType.apply(LHSValue);
487 BasicVals.evalAPSInt(op, LHSValue, RHSValue);
516 if (LHSValue.isAllOnesValue() && LHSValue.isSigned())
521 if (LHSValue == 0)
528 if (LHSValue == 0)
/netbsd-current/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCExpr.cpp898 MCValue LHSValue, RHSValue; local
900 if (!ABE->getLHS()->evaluateAsRelocatableImpl(LHSValue, Asm, Layout, Fixup,
922 if (!LHSValue.isAbsolute() || !RHSValue.isAbsolute()) {
929 return EvaluateSymbolicAdd(Asm, Layout, Addrs, InSet, LHSValue,
934 return EvaluateSymbolicAdd(Asm, Layout, Addrs, InSet, LHSValue,
943 int64_t LHS = LHSValue.getConstant(), RHS = RHSValue.getConstant();
/netbsd-current/external/apache2/llvm/dist/clang/lib/AST/
H A DExprConstant.cpp2872 static bool handleLogicalOpForVector(const APInt &LHSValue,
2875 bool LHS = (LHSValue != 0);
2884 static bool handleLogicalOpForVector(const APFloat &LHSValue,
2887 bool LHS = !LHSValue.isZero();
2897 static bool handleLogicalOpForVector(const APValue &LHSValue,
2901 if (LHSValue.getKind() == APValue::Int)
2902 return handleLogicalOpForVector(LHSValue.getInt(), Opcode,
2904 assert(LHSValue.getKind() == APValue::Float && "Should be no other options");
2905 return handleLogicalOpForVector(LHSValue.getFloat(), Opcode,
2911 handleCompareOpForVectorHelper(const APTy &LHSValue, BinaryOperatorKin
[all...]
H A DASTContext.cpp9797 QualType LHSValue = LHS->castAs<AtomicType>()->getValueType(); local
9800 LHSValue = LHSValue.getUnqualifiedType();
9803 QualType ResultType = mergeTypes(LHSValue, RHSValue, false,
9807 if (getCanonicalType(LHSValue) == getCanonicalType(ResultType))

Completed in 296 milliseconds