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

  /external/compiler-rt/lib/ubsan/
ubsan_handlers.cc 179 Value LHSVal(Data->Type, LHS);
198 << LHSVal << Data->Type;
223 Value LHSVal(Data->LHSType, LHS);
245 if (LHSVal.isNegative())
246 Diag(Loc, DL_Error, "left shift of negative value %0") << LHSVal;
250 << LHSVal << RHSVal << Data->LHSType;
  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 29 Value *LHSVal = FirstInst->getOperand(0);
32 Type *LHSType = LHSVal->getType();
67 if (I->getOperand(0) != LHSVal) LHSVal = nullptr;
75 if (!LHSVal && !RHSVal)
83 if (!LHSVal) {
88 LHSVal = NewLHS;
116 LHSVal, RHSVal);
123 BinaryOperator::Create(BinOp->getOpcode(), LHSVal, RHSVal);
    [all...]
  /external/clang/lib/CodeGen/
CGExprComplex.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp 155 SVal LHSVal;
161 LHSVal = svalBuilder.conjureSymbolVal(nullptr, B->getRHS(), LCtx, LTy,
164 Result = svalBuilder.evalCast(LHSVal, CTy, LTy);
169 LHSVal = svalBuilder.evalCast(Result, LTy, CTy);
179 evalStore(Tmp2, B, LHS, *I, state, location, LHSVal);
    [all...]
  /external/llvm/include/llvm/TableGen/
Record.h     [all...]
  /external/llvm/lib/Analysis/
LazyValueInfo.cpp 823 LVILatticeVal LHSVal = getBlockValue(BBI->getOperand(0), BB);
824 mergeAssumeBlockValueConstantRange(BBI->getOperand(0), LHSVal, BBI);
825 if (!LHSVal.isConstantRange()) {
830 ConstantRange LHSRange = LHSVal.getConstantRange();
    [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp 375 Sema::ActOnCaseStmt(SourceLocation CaseLoc, Expr *LHSVal,
378 assert(LHSVal && "missing expression in case statement");
386 CorrectDelayedTyposInExpr(LHSVal, [this](class Expr *E) {
400 LHSVal = LHS.get();
405 if (!LHSVal->isTypeDependent() && !LHSVal->isValueDependent()) {
406 LHSVal = VerifyIntegerConstantExpression(LHSVal).get();
407 if (!LHSVal)
419 LHS = ActOnFinishFullExpr(LHSVal, LHSVal->getExprLoc(), false
    [all...]
  /external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp 221 int64_t LHSVal = EvaluateCRExpr(BE->getLHS());
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/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 458 milliseconds