Searched defs:LHSValue (Results 1 - 6 of 6) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCExpr.cpp500 MCValue LHSValue, RHSValue; local
502 if (!ABE->getLHS()->EvaluateAsRelocatableImpl(LHSValue, Asm, Layout,
510 if (!LHSValue.isAbsolute() || !RHSValue.isAbsolute()) {
516 return EvaluateSymbolicAdd(Asm, Layout, Addrs, InSet, LHSValue,
522 return EvaluateSymbolicAdd(Asm, Layout, Addrs, InSet, LHSValue,
532 int64_t LHS = LHSValue.getConstant(), RHS = RHSValue.getConstant();
/external/llvm/lib/MC/
H A DMCExpr.cpp686 MCValue LHSValue, RHSValue; local
688 if (!ABE->getLHS()->evaluateAsRelocatableImpl(LHSValue, Asm, Layout, Fixup,
696 if (!LHSValue.isAbsolute() || !RHSValue.isAbsolute()) {
703 return EvaluateSymbolicAdd(Asm, Layout, Addrs, InSet, LHSValue,
708 return EvaluateSymbolicAdd(Asm, Layout, Addrs, InSet, LHSValue,
717 int64_t LHS = LHSValue.getConstant(), RHS = RHSValue.getConstant();
/external/clang/lib/StaticAnalyzer/Core/
H A DSimpleSValBuilder.cpp364 llvm::APSInt LHSValue = lhs.castAs<nonloc::ConcreteInt>().getValue(); local
373 APSIntType CompareType = std::max(APSIntType(LHSValue),
375 CompareType.apply(LHSValue);
379 IntType.apply(LHSValue);
384 BasicVals.evalAPSInt(op, LHSValue, RHSValue);
413 if (LHSValue.isAllOnesValue() && LHSValue.isSigned())
418 if (LHSValue == 0)
/external/clang/lib/AST/
H A DASTContext.cpp7798 QualType LHSValue = LHS->getAs<AtomicType>()->getValueType(); local
7801 LHSValue = LHSValue.getUnqualifiedType();
7804 QualType ResultType = mergeTypes(LHSValue, RHSValue, false,
7807 if (getCanonicalType(LHSValue) == getCanonicalType(ResultType))
7906 QualType LHSValue = LHS->getAs<PipeType>()->getElementType(); local
7909 LHSValue = LHSValue.getUnqualifiedType();
7912 QualType ResultType = mergeTypes(LHSValue, RHSValue, false,
7915 if (getCanonicalType(LHSValue)
[all...]
H A DExprConstant.cpp7589 LValue LHSValue, RHSValue; local
7591 bool LHSOK = EvaluatePointer(E->getLHS(), LHSValue, Info);
7600 if (!HasSameBase(LHSValue, RHSValue)) {
7603 if (!LHSValue.Offset.isZero() || !RHSValue.Offset.isZero())
7605 const Expr *LHSExpr = LHSValue.Base.dyn_cast<const Expr*>();
7626 if ((!LHSValue.Base && !LHSValue.Offset.isZero()) ||
7633 if ((IsLiteralLValue(LHSValue) || IsLiteralLValue(RHSValue)) &&
7634 LHSValue.Base && RHSValue.Base)
7638 if (IsWeakLValue(LHSValue) || IsWeakLValu
7806 MemberPtr LHSValue, RHSValue; local
[all...]
/external/clang/lib/Sema/
H A DSemaChecking.cpp7672 llvm::APSInt LHSValue; local
7674 LHS->isIntegerConstantExpr(LHSValue, S.Context);
7678 DiagnoseOutOfRangeComparison(S, E, LHS, RHS, LHSValue, false);

Completed in 255 milliseconds