Home
last modified time | relevance | path

Searched refs:ResultInt (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/
H A DSimpleSValBuilder.cpp308 llvm::APSInt ResultInt; in doRearrangeUnchecked() local
316 ResultInt = LInt - RInt; // Opposite order! in doRearrangeUnchecked()
320 ResultInt = RInt - LInt; // Opposite order! in doRearrangeUnchecked()
324 ResultInt = (Op == BO_Add) ? (LInt + RInt) : (LInt - RInt); in doRearrangeUnchecked()
327 if (ResultInt < 0) { in doRearrangeUnchecked()
328 ResultInt = -ResultInt; in doRearrangeUnchecked()
330 } else if (ResultInt == 0) { in doRearrangeUnchecked()
335 const llvm::APSInt &PersistentResultInt = BV.getValue(ResultInt); in doRearrangeUnchecked()
849 if (const auto *ResultInt = in evalBinOpLL() local
851 return evalCast(nonloc::ConcreteInt(*ResultInt), resultTy, QualType{}); in evalBinOpLL()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCodeGenFunction.cpp1558 llvm::APSInt ResultInt; in ConstantFoldsToSimpleInteger() local
1559 if (!ConstantFoldsToSimpleInteger(Cond, ResultInt, AllowLabels)) in ConstantFoldsToSimpleInteger()
1562 ResultBool = ResultInt.getBoolValue(); in ConstantFoldsToSimpleInteger()
1570 llvm::APSInt &ResultInt, in ConstantFoldsToSimpleInteger() argument
1582 ResultInt = Int; in ConstantFoldsToSimpleInteger()
/llvm-project-15.0.7/llvm/lib/CodeGen/LiveDebugValues/
H A DInstrRefBasedImpl.cpp3683 BlockValueNum ResultInt = Impl.GetValue(Updater.getSSALDVBlock(Here.getParent())); in resolveDbgPHIsImpl() local
3684 ValueIDNum Result = ValueIDNum::fromU64(ResultInt); in resolveDbgPHIsImpl()