add pet_id_from_name_and_decl
[pet.git] / scan.h
blobe51ca6d063bb2f01fb0307f22b4e02d0dbb24c8d
1 #include <map>
3 #include <clang/Basic/SourceManager.h>
4 #include <clang/AST/Decl.h>
5 #include <clang/AST/Stmt.h>
6 #include <clang/Lex/Preprocessor.h>
8 #include <isl/ctx.h>
9 #include <isl/map.h>
10 #include <isl/val.h>
12 #include "context.h"
13 #include "loc.h"
14 #include "scop.h"
15 #include "summary.h"
16 #include "tree.h"
18 /* The location of the scop, as delimited by scop and endscop
19 * pragmas by the user.
20 * "start_line" is the line number of the start position.
22 struct ScopLoc {
23 ScopLoc() : end(0) {}
25 unsigned start_line;
26 unsigned start;
27 unsigned end;
30 /* The information extracted from a pragma pencil independent.
31 * We currently only keep track of the line number where
32 * the pragma appears.
34 struct Independent {
35 Independent(unsigned line) : line(line) {}
37 unsigned line;
40 /* Compare two TypeDecl pointers based on their names.
42 struct less_name {
43 bool operator()(const clang::TypeDecl *x,
44 const clang::TypeDecl *y) {
45 return x->getNameAsString().compare(y->getNameAsString()) < 0;
49 /* The PetTypes structure collects a set of RecordDecl and
50 * TypedefNameDecl pointers.
51 * The pointers are sorted using a fixed order. The actual order
52 * is not important, only that it is consistent across platforms.
54 struct PetTypes {
55 std::set<clang::RecordDecl *, less_name> records;
56 std::set<clang::TypedefNameDecl *, less_name> typedefs;
58 void insert(clang::RecordDecl *decl) {
59 records.insert(decl);
61 void insert(clang::TypedefNameDecl *decl) {
62 typedefs.insert(decl);
66 struct PetScan {
67 clang::Preprocessor &PP;
68 clang::ASTContext &ast_context;
69 /* The DeclContext of the function containing the scop.
71 clang::DeclContext *decl_context;
72 /* If autodetect is false, then loc contains the location
73 * of the scop to be extracted.
75 ScopLoc &loc;
76 isl_ctx *ctx;
77 pet_options *options;
78 /* Set if the pet_scop returned by an extract method only
79 * represents part of the input tree.
81 bool partial;
83 /* A cache of size expressions for array types as computed
84 * by PetScan::get_array_size.
86 std::map<const clang::Type *, pet_expr *> type_size;
88 /* A cache of funtion summaries for function declarations
89 * as extracted by PetScan::get_summary.
91 std::map<clang::FunctionDecl *, pet_function_summary *> summary_cache;
93 /* A union of mappings of the form
94 * { identifier[] -> [i] : lower_bound <= i <= upper_bound }
96 isl_union_map *value_bounds;
98 /* The line number of the previously considered Stmt. */
99 unsigned last_line;
100 /* The line number of the Stmt currently being considered. */
101 unsigned current_line;
102 /* Information about the independent pragmas in the source code. */
103 std::vector<Independent> &independent;
105 /* All variables that have already been declared
106 * in the current compound statement.
108 std::vector<clang::VarDecl *> declarations;
110 PetScan(clang::Preprocessor &PP, clang::ASTContext &ast_context,
111 clang::DeclContext *decl_context, ScopLoc &loc,
112 pet_options *options, __isl_take isl_union_map *value_bounds,
113 std::vector<Independent> &independent) :
114 ctx(isl_union_map_get_ctx(value_bounds)), PP(PP),
115 ast_context(ast_context), decl_context(decl_context), loc(loc),
116 options(options), value_bounds(value_bounds),
117 partial(false), last_line(0), current_line(0),
118 independent(independent) { }
120 ~PetScan();
122 struct pet_scop *scan(clang::FunctionDecl *fd);
124 static __isl_give isl_val *extract_int(isl_ctx *ctx,
125 clang::IntegerLiteral *expr);
126 __isl_give pet_expr *get_array_size(const clang::Type *type);
127 struct pet_array *extract_array(__isl_keep isl_id *id,
128 PetTypes *types, __isl_keep pet_context *pc);
129 private:
130 void set_current_stmt(clang::Stmt *stmt);
131 bool is_current_stmt_marked_independent();
133 struct pet_scop *scan(clang::Stmt *stmt);
135 struct pet_scop *scan_arrays(struct pet_scop *scop,
136 __isl_keep pet_context *pc);
137 struct pet_array *extract_array(clang::ValueDecl *decl,
138 PetTypes *types, __isl_keep pet_context *pc);
139 struct pet_array *extract_array(isl_ctx *ctx,
140 std::vector<clang::ValueDecl *> decls,
141 PetTypes *types, __isl_keep pet_context *pc);
142 __isl_give pet_expr *set_upper_bounds(__isl_take pet_expr *expr,
143 const clang::Type *type, int pos);
144 struct pet_array *set_upper_bounds(struct pet_array *array,
145 const clang::Type *type, __isl_keep pet_context *pc);
147 __isl_give pet_tree *insert_initial_declarations(
148 __isl_take pet_tree *tree, int n_decl,
149 clang::StmtRange stmt_range);
150 __isl_give pet_tree *extract(clang::Stmt *stmt,
151 bool skip_declarations = false);
152 __isl_give pet_tree *extract(clang::StmtRange stmt_range, bool block,
153 bool skip_declarations);
154 __isl_give pet_tree *extract(clang::IfStmt *stmt);
155 __isl_give pet_tree *extract(clang::WhileStmt *stmt);
156 __isl_give pet_tree *extract(clang::CompoundStmt *stmt,
157 bool skip_declarations = false);
158 __isl_give pet_tree *extract(clang::LabelStmt *stmt);
159 __isl_give pet_tree *extract(clang::Decl *decl);
160 __isl_give pet_tree *extract(clang::DeclStmt *expr);
162 __isl_give pet_loc *construct_pet_loc(clang::SourceRange range,
163 bool skip_semi);
164 __isl_give pet_tree *extract(__isl_take pet_expr *expr,
165 clang::SourceRange range, bool skip_semi);
166 __isl_give pet_tree *update_loc(__isl_take pet_tree *tree,
167 clang::Stmt *stmt);
169 struct pet_scop *extract_scop(__isl_take pet_tree *tree);
171 clang::BinaryOperator *initialization_assignment(clang::Stmt *init);
172 clang::Decl *initialization_declaration(clang::Stmt *init);
173 clang::ValueDecl *extract_induction_variable(clang::BinaryOperator *stmt);
174 clang::VarDecl *extract_induction_variable(clang::Stmt *init,
175 clang::Decl *stmt);
176 __isl_give pet_expr *extract_unary_increment(clang::UnaryOperator *op,
177 clang::ValueDecl *iv);
178 __isl_give pet_expr *extract_binary_increment(
179 clang::BinaryOperator *op,
180 clang::ValueDecl *iv);
181 __isl_give pet_expr *extract_compound_increment(
182 clang::CompoundAssignOperator *op,
183 clang::ValueDecl *iv);
184 __isl_give pet_expr *extract_increment(clang::ForStmt *stmt,
185 clang::ValueDecl *iv);
186 __isl_give pet_tree *extract_for(clang::ForStmt *stmt);
188 __isl_give pet_expr *extract_assume(clang::Expr *expr);
189 __isl_give pet_function_summary *get_summary(clang::FunctionDecl *fd);
190 __isl_give pet_expr *set_summary(__isl_take pet_expr *expr,
191 clang::FunctionDecl *fd);
192 __isl_give pet_expr *extract_argument(clang::FunctionDecl *fd, int pos,
193 clang::Expr *expr, bool detect_writes);
194 __isl_give pet_expr *extract_expr(const llvm::APInt &val);
195 __isl_give pet_expr *extract_expr(clang::Expr *expr);
196 __isl_give pet_expr *extract_expr(clang::UnaryOperator *expr);
197 __isl_give pet_expr *extract_expr(clang::BinaryOperator *expr);
198 __isl_give pet_expr *extract_expr(clang::ImplicitCastExpr *expr);
199 __isl_give pet_expr *extract_expr(clang::IntegerLiteral *expr);
200 __isl_give pet_expr *extract_expr(clang::EnumConstantDecl *expr);
201 __isl_give pet_expr *extract_expr(clang::FloatingLiteral *expr);
202 __isl_give pet_expr *extract_expr(clang::ParenExpr *expr);
203 __isl_give pet_expr *extract_expr(clang::ConditionalOperator *expr);
204 __isl_give pet_expr *extract_expr(clang::CallExpr *expr);
205 __isl_give pet_expr *extract_expr(clang::CStyleCastExpr *expr);
207 __isl_give pet_expr *extract_access_expr(clang::QualType qt,
208 __isl_take pet_expr *index);
209 __isl_give pet_expr *extract_access_expr(clang::Expr *expr);
210 __isl_give pet_expr *extract_access_expr(clang::ValueDecl *decl);
212 __isl_give pet_expr *extract_index_expr(
213 clang::ArraySubscriptExpr *expr);
214 __isl_give pet_expr *extract_index_expr(clang::Expr *expr);
215 __isl_give pet_expr *extract_index_expr(clang::ImplicitCastExpr *expr);
216 __isl_give pet_expr *extract_index_expr(clang::DeclRefExpr *expr);
217 __isl_give pet_expr *extract_index_expr(clang::ValueDecl *decl);
218 __isl_give pet_expr *extract_index_expr(clang::MemberExpr *expr);
220 __isl_give isl_val *extract_int(clang::Expr *expr);
221 __isl_give isl_val *extract_int(clang::ParenExpr *expr);
223 clang::FunctionDecl *find_decl_from_name(clang::CallExpr *call,
224 std::string name);
225 clang::FunctionDecl *get_summary_function(clang::CallExpr *call);
227 void report(clang::Stmt *stmt, unsigned id);
228 void unsupported(clang::Stmt *stmt);
229 void report_unsupported_unary_operator(clang::Stmt *stmt);
230 void report_unsupported_statement_type(clang::Stmt *stmt);
231 void report_prototype_required(clang::Stmt *stmt);
232 void report_missing_increment(clang::Stmt *stmt);
233 void report_missing_summary_function(clang::Stmt *stmt);
234 void report_missing_summary_function_body(clang::Stmt *stmt);