HomeSort by relevance Sort by last modified time
    Searched refs:RHSVal (Results 1 - 10 of 10) 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 29 Value *RHSVal = FirstInst->getOperand(1);
32 Type *RHSType = RHSVal->getType();
67 if (I->getOperand(1) != RHSVal) RHSVal = 0;
74 if (!LHSVal && !RHSVal)
90 if (RHSVal == 0) {
95 RHSVal = NewRHS;
115 LHSVal, RHSVal);
122 BinaryOperator::Create(BinOp->getOpcode(), LHSVal, RHSVal);
    [all...]
InstCombineSimplifyDemanded.cpp 537 const APInt &RHSVal = RHS->getValue();
538 APInt CarryBits((~LHSKnownZero + RHSVal) ^ (~LHSKnownZero ^ RHSVal));
544 KnownOne = ((LHSKnownZero & RHSVal) |
545 (LHSKnownOne & ~RHSVal)) & ~CarryBits;
549 KnownZero = LHSKnownZero & ~RHSVal & ~CarryBits;
    [all...]
InstCombineAddSub.cpp 908 const APInt &RHSVal = CI->getValue();
912 if (XorRHS->getValue() == -RHSVal) {
913 if (RHSVal.isPowerOf2())
914 ExtendAmt = TySizeBits - RHSVal.logBase2() - 1;
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
IdempotentOperationChecker.cpp 150 SVal RHSVal = state->getSVal(RHS, LCtx);
153 if (LHSVal.isUnknownOrUndef() || RHSVal.isUnknownOrUndef()) {
222 if (LHSVal != RHSVal || LHSContainsFalsePositive
241 if (!RHSVal.isConstant(1) || RHSContainsFalsePositive)
285 if (!RHSVal.isConstant(0) || RHSContainsFalsePositive)
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp 557 SVal RHSVal = N->getState()->getSVal(RHS, Pred->getLocationContext());
559 if (RHSVal.isUndef()) {
560 X = RHSVal;
562 DefinedOrUnknownSVal DefinedRHS = RHSVal.castAs<DefinedOrUnknownSVal>();
569 X = getSValBuilder().evalCast(RHSVal, B->getType(), RHS->getType());
    [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp 328 SourceLocation DotDotDotLoc, Expr *RHSVal,
348 if (RHSVal && !RHSVal->isTypeDependent() && !RHSVal->isValueDependent()) {
349 RHSVal = VerifyIntegerConstantExpression(RHSVal).take();
356 if (RHSVal)
357 RHSVal = ActOnFinishFullExpr(RHSVal, RHSVal->getExprLoc(), false
    [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 472 milliseconds