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

  /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/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/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/CodeGen/
CGExprComplex.cpp     [all...]
  /external/llvm/include/llvm/TableGen/
Record.h     [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...]

Completed in 325 milliseconds