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 180 Value RHSVal(Data->Type, RHS);
183 if (RHSVal.isMinusOne())
224 Value RHSVal(Data->RHSType, RHS);
227 if (RHSVal.isNegative() ||
228 RHSVal.getPositiveIntValue() >= Data->LHSType.getIntegerBitWidth())
239 if (RHSVal.isNegative())
240 Diag(Loc, DL_Error, "shift exponent %0 is negative") << RHSVal;
243 << RHSVal << Data->LHSType.getIntegerBitWidth() << Data->LHSType;
250 << LHSVal << RHSVal << Data->LHSType;
  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 30 Value *RHSVal = FirstInst->getOperand(1);
33 Type *RHSType = RHSVal->getType();
68 if (I->getOperand(1) != RHSVal) RHSVal = nullptr;
75 if (!LHSVal && !RHSVal)
91 if (!RHSVal) {
96 RHSVal = NewRHS;
116 LHSVal, RHSVal);
123 BinaryOperator::Create(BinOp->getOpcode(), LHSVal, RHSVal);
    [all...]
InstCombineAddSub.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp 583 SVal RHSVal = N->getState()->getSVal(RHS, Pred->getLocationContext());
585 if (RHSVal.isUndef()) {
586 X = RHSVal;
588 DefinedOrUnknownSVal DefinedRHS = RHSVal.castAs<DefinedOrUnknownSVal>();
595 X = getSValBuilder().evalCast(RHSVal, B->getType(), RHS->getType());
    [all...]
  /external/llvm/include/llvm/TableGen/
Record.h     [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp 376 SourceLocation DotDotDotLoc, Expr *RHSVal,
413 if (RHSVal && !RHSVal->isTypeDependent() && !RHSVal->isValueDependent()) {
414 RHSVal = VerifyIntegerConstantExpression(RHSVal).get();
424 auto RHS = RHSVal ? ActOnFinishFullExpr(RHSVal, RHSVal->getExprLoc(), false,
    [all...]
  /external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp 222 int64_t RHSVal = EvaluateCRExpr(BE->getRHS());
225 if (LHSVal < 0 || RHSVal < 0)
230 case MCBinaryExpr::Add: Res = LHSVal + RHSVal; break;
231 case MCBinaryExpr::Mul: Res = LHSVal * RHSVal; break;
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 416 Value *RHSVal;
424 m_And(m_Value(RHSVal), m_ConstantInt(RHSC)))) {
428 if(!setValueOnce(RHSVal))
455 if(match(I->getOperand(0), m_Add(m_Value(RHSVal), m_ConstantInt(RHSC)))) {
457 CandidateVal = RHSVal;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 661 milliseconds