HomeSort by: relevance | last modified time | path
    Searched refs:LHSValue (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
SimpleSValBuilder.cpp 467 llvm::APSInt LHSValue = lhs.castAs<nonloc::ConcreteInt>().getValue();
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)
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCExpr.cpp 898 MCValue LHSValue, RHSValue;
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();
  /src/external/apache2/llvm/dist/clang/lib/AST/
ExprConstant.cpp 2872 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, BinaryOperatorKind Opcode
    [all...]
ASTContext.cpp 9797 QualType LHSValue = LHS->castAs<AtomicType>()->getValueType();
9800 LHSValue = LHSValue.getUnqualifiedType();
9803 QualType ResultType = mergeTypes(LHSValue, RHSValue, false,
9807 if (getCanonicalType(LHSValue) == getCanonicalType(ResultType))

Completed in 26 milliseconds