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

  /external/compiler-rt/lib/ubsan/
ubsan_handlers.cc 140 Value LHSVal(Data->Type, LHS);
145 << LHSVal << Data->Type;
163 Value LHSVal(Data->LHSType, LHS);
171 else if (LHSVal.isNegative())
172 Diag(Loc, DL_Error, "left shift of negative value %0") << LHSVal;
176 << LHSVal << RHSVal << Data->LHSType;
  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 30 Value *LHSVal = FirstInst->getOperand(0);
33 Type *LHSType = LHSVal->getType();
68 if (I->getOperand(0) != LHSVal) LHSVal = nullptr;
76 if (!LHSVal && !RHSVal)
84 if (!LHSVal) {
89 LHSVal = NewLHS;
117 LHSVal, RHSVal);
124 BinaryOperator::Create(BinOp->getOpcode(), LHSVal, RHSVal);
    [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/oprofile/libpp/
arrange_profiles.cpp 42 unsigned int lhsval = op_lexical_cast<unsigned int>(lhs); local
44 if (lhsval == rhsval)
46 if (lhsval < rhsval)
  /external/clang/lib/Sema/
SemaStmt.cpp 351 Sema::ActOnCaseStmt(SourceLocation CaseLoc, Expr *LHSVal,
354 assert(LHSVal && "missing expression in case statement");
364 if (!LHSVal->isTypeDependent() && !LHSVal->isValueDependent()) {
365 LHSVal = VerifyIntegerConstantExpression(LHSVal).get();
366 if (!LHSVal)
378 LHSVal = ActOnFinishFullExpr(LHSVal, LHSVal->getExprLoc(), false
    [all...]
  /external/clang/lib/CodeGen/
CGExprComplex.cpp 661 ComplexPairTy LHSVal = EmitLoadOfLValue(LHS, E->getExprLoc());
662 OpInfo.LHS = EmitComplexToComplexCast(LHSVal, LHSTy, OpInfo.Ty);
664 llvm::Value *LHSVal = CGF.EmitLoadOfScalar(LHS, E->getExprLoc());
665 OpInfo.LHS = EmitScalarToComplexCast(LHSVal, LHSTy, OpInfo.Ty);
    [all...]
  /external/llvm/lib/Analysis/
LazyValueInfo.cpp 706 LVILatticeVal LHSVal = getBlockValue(BBI->getOperand(0), BB);
707 if (!LHSVal.isConstantRange()) {
712 ConstantRange LHSRange = LHSVal.getConstantRange();
    [all...]
  /external/llvm/include/llvm/TableGen/
Record.h     [all...]
  /external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp 192 int64_t LHSVal = EvaluateCRExpr(BE->getLHS());
196 if (LHSVal < 0 || RHSVal < 0)
201 case MCBinaryExpr::Add: Res = LHSVal + RHSVal; break;
202 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 429 milliseconds