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

  /external/clang/lib/StaticAnalyzer/Checkers/
IdempotentOperationChecker.cpp 149 SVal LHSVal = state->getSVal(LHS, LCtx);
153 if (LHSVal.isUnknownOrUndef() || RHSVal.isUnknownOrUndef()) {
176 if (!LHSVal.getAs<Loc>()) {
180 LHSVal = state->getSVal(LHSVal.castAs<Loc>(), LHS->getType());
222 if (LHSVal != RHSVal || LHSContainsFalsePositive
257 if (!LHSVal.isConstant(1) || LHSContainsFalsePositive)
317 if (!LHSVal.isConstant(0) || LHSContainsFalsePositive)
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp 146 SVal LHSVal;
152 LHSVal = svalBuilder.conjureSymbolVal(0, B->getRHS(), LCtx, LTy,
155 Result = svalBuilder.evalCast(LHSVal, CTy, LTy);
160 LHSVal = svalBuilder.evalCast(Result, LTy, CTy);
170 evalStore(Tmp2, B, LHS, *I, state, location, LHSVal);
    [all...]
  /external/llvm/lib/Analysis/
LazyValueInfo.cpp 705 LVILatticeVal LHSVal = getBlockValue(BBI->getOperand(0), BB);
706 if (!LHSVal.isConstantRange()) {
711 ConstantRange LHSRange = LHSVal.getConstantRange();
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 28 Value *LHSVal = FirstInst->getOperand(0);
31 Type *LHSType = LHSVal->getType();
66 if (I->getOperand(0) != LHSVal) LHSVal = 0;
74 if (!LHSVal && !RHSVal)
82 if (LHSVal == 0) {
87 LHSVal = NewLHS;
115 LHSVal, RHSVal);
122 BinaryOperator::Create(BinOp->getOpcode(), LHSVal, RHSVal);
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]

Completed in 253 milliseconds