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

  /external/clang/lib/StaticAnalyzer/Core/
SimpleConstraintManager.cpp 31 if (const SymIntExpr *SIE = dyn_cast<SymIntExpr>(SE)) {
185 const SymIntExpr *SE = dyn_cast<SymIntExpr>(sym);
219 if (const SymIntExpr *SE = dyn_cast<SymIntExpr>(Sym)) {
SymbolManager.cpp 30 void SymIntExpr::dumpToStream(raw_ostream &os) const {
129 itr.push_back(cast<SymIntExpr>(SE)->getLHS());
254 const SymIntExpr *SymbolManager::getSymIntExpr(const SymExpr *lhs,
259 SymIntExpr::Profile(ID, lhs, op, v, t);
264 data = (SymIntExpr*) BPAlloc.Allocate<SymIntExpr>();
265 new (data) SymIntExpr(lhs, op, v, t);
269 return cast<SymIntExpr>(data);
470 KnownLive = isLive(cast<SymIntExpr>(sym)->getLHS());
SimpleSValBuilder.cpp 431 if (const SymIntExpr *symIntExpr = dyn_cast<SymIntExpr>(Sym)) {
437 BinaryOperator::Opcode opc = symIntExpr->getOpcode();
470 assert(symIntExpr->getType() == resultTy);
471 return makeNonLoc(symIntExpr->getLHS(), opc,
472 symIntExpr->getRHS(), resultTy);
481 BinaryOperator::Opcode lop = symIntExpr->getOpcode();
491 const llvm::APSInt &first = IntType.convert(symIntExpr->getRHS());
502 lhs = nonloc::SymbolVal(symIntExpr->getLHS())
    [all...]
ProgramState.cpp 509 return scan(cast<SymIntExpr>(sym)->getLHS());
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SymbolManager.h 344 /// SymIntExpr - Represents symbolic expression like 'x' + 3.
345 class SymIntExpr : public SymExpr {
352 SymIntExpr(const SymExpr *lhs, BinaryOperator::Opcode op,
524 const SymIntExpr *getSymIntExpr(const SymExpr *lhs, BinaryOperator::Opcode op,
527 const SymIntExpr *getSymIntExpr(const SymExpr &lhs, BinaryOperator::Opcode op,

Completed in 161 milliseconds