25#include "llvm/ADT/FoldingSet.h"
26#include "llvm/ADT/STLExtras.h"
27#include "llvm/Support/Casting.h"
28#include "llvm/Support/Compiler.h"
29#include "llvm/Support/ErrorHandling.h"
30#include "llvm/Support/raw_ostream.h"
36void SymExpr::anchor() {}
53 const llvm::APSInt &
Value) {
54 if (
Value.isUnsigned())
58 if (
Value.isUnsigned())
68 os <<
'(' << ToTy <<
") (";
75 bool Binary = isa<BinarySymExpr>(Operand);
89 os <<
", #" << Count <<
'}';
105void SymbolData::anchor() {}
124 assert(!itr.empty() &&
"attempting to iterate on an 'end' iterator");
130 assert(!itr.empty() &&
"attempting to dereference an 'end' iterator");
134void SymExpr::symbol_iterator::expand() {
135 const SymExpr *SE = itr.pop_back_val();
138 case SymExpr::SymbolRegionValueKind:
139 case SymExpr::SymbolConjuredKind:
140 case SymExpr::SymbolDerivedKind:
141 case SymExpr::SymbolExtentKind:
142 case SymExpr::SymbolMetadataKind:
144 case SymExpr::SymbolCastKind:
145 itr.push_back(cast<SymbolCast>(SE)->getOperand());
147 case SymExpr::UnarySymExprKind:
148 itr.push_back(cast<UnarySymExpr>(SE)->getOperand());
150 case SymExpr::SymIntExprKind:
151 itr.push_back(cast<SymIntExpr>(SE)->getLHS());
153 case SymExpr::IntSymExprKind:
154 itr.push_back(cast<IntSymExpr>(SE)->getRHS());
156 case SymExpr::SymSymExprKind: {
157 const auto *x = cast<SymSymExpr>(SE);
158 itr.push_back(x->getLHS());
159 itr.push_back(x->getRHS());
163 llvm_unreachable(
"unhandled expansion case");
171 return R->getValueType();
175 ASTContext &Ctx = R->getMemRegionManager().getContext();