HomeSort by: relevance | last modified time | path
    Searched refs:RHSValue (Results 1 - 6 of 6) 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/
ExprConstant.cpp 2874 const APInt &RHSValue, APInt &Result) {
2876 bool RHS = (RHSValue != 0);
2886 const APFloat &RHSValue, APInt &Result) {
2888 bool RHS = !RHSValue.isZero();
2899 const APValue &RHSValue, APInt &Result) {
2903 RHSValue.getInt(), Result);
2906 RHSValue.getFloat(), Result);
2912 const APTy &RHSValue, APInt &Result) {
2917 Result = (LHSValue == RHSValue);
2920 Result = (LHSValue != RHSValue);
    [all...]
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/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp 2741 int64_t RHSValue, SDLoc dl);
2743 int64_t RHSValue, SDLoc dl);
2745 int64_t RHSValue, SDLoc dl);
2747 int64_t RHSValue, SDLoc dl);
3148 int64_t RHSValue, SDLoc dl) {
3152 bool IsRHSZero = RHSValue == 0;
3153 bool IsRHSOne = RHSValue == 1;
3154 bool IsRHSNegOne = RHSValue == -1LL;
3321 int64_t RHSValue, SDLoc dl) {
3325 bool IsRHSZero = RHSValue == 0
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExpr.cpp 10268 Expr::EvalResult RHSValue;
10270 RHS.get()->EvaluateAsInt(RHSValue, S.Context) &&
10271 RHSValue.Val.getInt() == 0)

Completed in 97 milliseconds