HomeSort by: relevance | last modified time | path
    Searched defs:RHSValue (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCExpr.cpp 898 MCValue LHSValue, RHSValue;
902 !ABE->getRHS()->evaluateAsRelocatableImpl(RHSValue, Asm, Layout, Fixup,
922 if (!LHSValue.isAbsolute() || !RHSValue.isAbsolute()) {
930 RHSValue.getSymB(), RHSValue.getSymA(),
931 -(uint64_t)RHSValue.getConstant(), Res);
935 RHSValue.getSymA(), RHSValue.getSymB(),
936 RHSValue.getConstant(), Res);
943 int64_t LHS = LHSValue.getConstant(), RHS = RHSValue.getConstant()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
SimpleSValBuilder.cpp 471 llvm::APSInt RHSValue = *KnownRHSValue;
477 APSIntType(RHSValue));
479 CompareType.apply(RHSValue);
483 IntType.apply(RHSValue);
487 BasicVals.evalAPSInt(op, LHSValue, RHSValue);
590 if (const llvm::APSInt *RHSValue = getKnownValue(state, rhs)) {
605 const llvm::APSInt &second = IntType.convert(*RHSValue);
622 return MakeSymIntVal(symIntExpr, op, *RHSValue, resultTy);
637 if (const llvm::APSInt *RHSValue = getKnownValue(state, rhs))
638 return MakeSymIntVal(Sym, op, *RHSValue, resultTy)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTContext.cpp 9798 QualType RHSValue = RHS->castAs<AtomicType>()->getValueType();
9801 RHSValue = RHSValue.getUnqualifiedType();
9803 QualType ResultType = mergeTypes(LHSValue, RHSValue, false,
9809 if (getCanonicalType(RHSValue) == getCanonicalType(ResultType))
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp 11524 Optional<llvm::APSInt> RHSValue = RHS->getIntegerConstantExpr(S.Context);
11528 if (RHSValue && LHSValue)
11532 if ((bool)RHSValue ^ (bool)LHSValue) {
11534 const bool RhsConstant = (bool)RHSValue;
11537 const llvm::APSInt &Value = RhsConstant ? *RHSValue : *LHSValue;
SemaExpr.cpp 10268 Expr::EvalResult RHSValue;
10270 RHS.get()->EvaluateAsInt(RHSValue, S.Context) &&
10271 RHSValue.Val.getInt() == 0)

Completed in 65 milliseconds