HomeSort by relevance Sort by last modified time
    Searched refs:RHSVal (Results 1 - 12 of 12) sorted by null

  /external/compiler-rt/lib/ubsan/
ubsan_handlers.cc 141 Value RHSVal(Data->Type, RHS);
142 if (RHSVal.isMinusOne())
164 Value RHSVal(Data->RHSType, RHS);
165 if (RHSVal.isNegative())
166 Diag(Loc, DL_Error, "shift exponent %0 is negative") << RHSVal;
167 else if (RHSVal.getPositiveIntValue() >= Data->LHSType.getIntegerBitWidth())
170 << RHSVal << Data->LHSType.getIntegerBitWidth() << Data->LHSType;
176 << LHSVal << RHSVal << Data->LHSType;
  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 31 Value *RHSVal = FirstInst->getOperand(1);
34 Type *RHSType = RHSVal->getType();
69 if (I->getOperand(1) != RHSVal) RHSVal = nullptr;
76 if (!LHSVal && !RHSVal)
92 if (!RHSVal) {
97 RHSVal = NewRHS;
117 LHSVal, RHSVal);
124 BinaryOperator::Create(BinOp->getOpcode(), LHSVal, RHSVal);
    [all...]
InstCombineSimplifyDemanded.cpp 538 const APInt &RHSVal = RHS->getValue();
539 APInt CarryBits((~LHSKnownZero + RHSVal) ^ (~LHSKnownZero ^ RHSVal));
545 KnownOne = ((LHSKnownZero & RHSVal) |
546 (LHSKnownOne & ~RHSVal)) & ~CarryBits;
550 KnownZero = LHSKnownZero & ~RHSVal & ~CarryBits;
    [all...]
InstCombineAddSub.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp 558 SVal RHSVal = N->getState()->getSVal(RHS, Pred->getLocationContext());
560 if (RHSVal.isUndef()) {
561 X = RHSVal;
563 DefinedOrUnknownSVal DefinedRHS = RHSVal.castAs<DefinedOrUnknownSVal>();
570 X = getSValBuilder().evalCast(RHSVal, B->getType(), RHS->getType());
    [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp 352 SourceLocation DotDotDotLoc, Expr *RHSVal,
372 if (RHSVal && !RHSVal->isTypeDependent() && !RHSVal->isValueDependent()) {
373 RHSVal = VerifyIntegerConstantExpression(RHSVal).get();
380 if (RHSVal)
381 RHSVal = ActOnFinishFullExpr(RHSVal, RHSVal->getExprLoc(), false
    [all...]
  /external/llvm/include/llvm/TableGen/
Record.h     [all...]
  /external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp 193 int64_t RHSVal = EvaluateCRExpr(BE->getRHS());
196 if (LHSVal < 0 || RHSVal < 0)
201 case MCBinaryExpr::Add: Res = LHSVal + RHSVal; break;
202 case MCBinaryExpr::Mul: Res = LHSVal * RHSVal; break;
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 357 Value *RHSVal;
364 m_And(m_Value(RHSVal), m_ConstantInt(RHSC)))) {
371 return RHSVal;
388 match(I->getOperand(0), m_Add(m_Value(RHSVal), m_ConstantInt(RHSC)));
404 return hasAdd ? RHSVal : I->getOperand(0);
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 314 milliseconds