Searched defs:LHSValue (Results 1 - 5 of 5) sorted by relevance
/external/llvm/lib/MC/ |
H A D | MCExpr.cpp | 556 MCValue LHSValue, RHSValue; local 558 if (!ABE->getLHS()->EvaluateAsRelocatableImpl(LHSValue, Asm, Layout, 566 if (!LHSValue.isAbsolute() || !RHSValue.isAbsolute()) { 572 return EvaluateSymbolicAdd(Asm, Layout, Addrs, InSet, LHSValue, 578 return EvaluateSymbolicAdd(Asm, Layout, Addrs, InSet, LHSValue, 588 int64_t LHS = LHSValue.getConstant(), RHS = RHSValue.getConstant();
|
/external/clang/lib/StaticAnalyzer/Core/ |
H A D | SimpleSValBuilder.cpp | 365 llvm::APSInt LHSValue = lhs.castAs<nonloc::ConcreteInt>().getValue(); local 374 APSIntType CompareType = std::max(APSIntType(LHSValue), 376 CompareType.apply(LHSValue); 380 IntType.apply(LHSValue); 385 BasicVals.evalAPSInt(op, LHSValue, RHSValue); 414 if (LHSValue.isAllOnesValue() && LHSValue.isSigned()) 419 if (LHSValue == 0)
|
/external/clang/lib/AST/ |
H A D | ExprConstant.cpp | 4924 LValue LHSValue, RHSValue; local 4926 bool LHSOK = EvaluatePointer(E->getLHS(), LHSValue, Info); 4935 if (!HasSameBase(LHSValue, RHSValue)) { 4938 if (!LHSValue.Offset.isZero() || !RHSValue.Offset.isZero()) 4940 const Expr *LHSExpr = LHSValue.Base.dyn_cast<const Expr*>(); 4962 if ((!LHSValue.Base && !LHSValue.Offset.isZero()) || 4969 if ((IsLiteralLValue(LHSValue) || IsLiteralLValue(RHSValue)) && 4970 LHSValue.Base && RHSValue.Base) 4974 if (IsWeakLValue(LHSValue) || IsWeakLValu 5120 MemberPtr LHSValue, RHSValue; local [all...] |
H A D | ASTContext.cpp | 7014 QualType LHSValue = LHS->getAs<AtomicType>()->getValueType(); local 7017 LHSValue = LHSValue.getUnqualifiedType(); 7020 QualType ResultType = mergeTypes(LHSValue, RHSValue, false, 7023 if (getCanonicalType(LHSValue) == getCanonicalType(ResultType))
|
/external/clang/lib/Sema/ |
H A D | SemaChecking.cpp | 4546 llvm::APSInt LHSValue; local 4548 LHS->isIntegerConstantExpr(LHSValue, S.Context); 4552 DiagnoseOutOfRangeComparison(S, E, LHS, RHS, LHSValue, false);
|
Completed in 151 milliseconds