Searched defs:RHSValue (Results 1 - 4 of 4) sorted by relevance

/external/llvm/lib/MC/
H A DMCExpr.cpp732 MCValue LHSValue, RHSValue; local
736 !ABE->getRHS()->EvaluateAsRelocatableImpl(RHSValue, Asm, Layout, Addrs,
742 if (!LHSValue.isAbsolute() || !RHSValue.isAbsolute()) {
749 RHSValue.getSymB(), RHSValue.getSymA(),
750 -RHSValue.getConstant(),
755 RHSValue.getSymA(), RHSValue.getSymB(),
756 RHSValue.getConstant(),
764 int64_t LHS = LHSValue.getConstant(), RHS = RHSValue
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DSimpleSValBuilder.cpp368 llvm::APSInt RHSValue = *KnownRHSValue; local
374 APSIntType(RHSValue));
376 CompareType.apply(RHSValue);
380 IntType.apply(RHSValue);
384 BasicVals.evalAPSInt(op, LHSValue, RHSValue);
480 if (const llvm::APSInt *RHSValue = getKnownValue(state, rhs)) {
495 const llvm::APSInt &second = IntType.convert(*RHSValue);
512 return MakeSymIntVal(symIntExpr, op, *RHSValue, resultTy);
526 if (const llvm::APSInt *RHSValue = getKnownValue(state, rhs))
527 return MakeSymIntVal(Sym, op, *RHSValue, resultT
[all...]
/external/clang/lib/AST/
H A DASTContext.cpp7187 QualType RHSValue = RHS->getAs<AtomicType>()->getValueType(); local
7190 RHSValue = RHSValue.getUnqualifiedType();
7192 QualType ResultType = mergeTypes(LHSValue, RHSValue, false,
7197 if (getCanonicalType(RHSValue) == getCanonicalType(ResultType))
/external/clang/lib/Sema/
H A DSemaChecking.cpp5575 llvm::APSInt RHSValue; local
5577 RHS->isIntegerConstantExpr(RHSValue, S.Context);
5582 DiagnoseOutOfRangeComparison(S, E, RHS, LHS, RHSValue, true);

Completed in 193 milliseconds