3 #include <clang/Basic/SourceManager.h>
4 #include <clang/AST/Decl.h>
5 #include <clang/AST/Stmt.h>
6 #include <clang/Lex/Preprocessor.h>
14 /* The location of the scop, as delimited by scop and endscop
15 * pragmas by the user.
24 /* Compare two RecordDecl pointers based on their names.
27 bool operator()(const clang::RecordDecl
*x
,
28 const clang::RecordDecl
*y
) {
29 return x
->getNameAsString().compare(y
->getNameAsString()) < 0;
33 /* A sorted set of RecordDecl pointers. The actual order is not important,
34 * only that it is consistent across platforms.
36 typedef std::set
<clang::RecordDecl
*, less_name
> lex_recorddecl_set
;
39 clang::Preprocessor
&PP
;
40 clang::ASTContext
&ast_context
;
41 /* If autodetect is false, then loc contains the location
42 * of the scop to be extracted.
47 /* The sequence number of the next statement. */
49 /* The sequence number of the next virtual scalar. */
51 /* Set if the pet_scop returned by an extract method only
52 * represents part of the input tree.
55 /* Set is nested accesses are allowed in general.
56 * This currently defaults to true.
59 /* Set if nested accesses are allowed in that part of the tree
60 * that is currently under investigation.
63 /* Maps identifiers to the last value that was assigned to them.
64 * If an identifier is mapped to NULL, then something may have
65 * been assigned, but we don't know what.
66 * assigned_value does not take a reference to the isl_pw_aff
67 * object, so each such isl_pw_aff needs to be stored in
68 * the set of "expressions".
70 std::map
<clang::ValueDecl
*, isl_pw_aff
*> assigned_value
;
71 /* A collection of isl_pw_affs used in assigned_value or other
72 * temporary maps. expressions holds a reference for each
73 * isl_pw_aff, which is freed in the destructor of PetScan.
75 std::set
<isl_pw_aff
*> expressions
;
77 /* A union of mappings of the form
78 * { identifier[] -> [i] : lower_bound <= i <= upper_bound }
80 isl_union_map
*value_bounds
;
82 PetScan(clang::Preprocessor
&PP
,
83 clang::ASTContext
&ast_context
, ScopLoc
&loc
,
84 pet_options
*options
, __isl_take isl_union_map
*value_bounds
) :
85 ctx(isl_union_map_get_ctx(value_bounds
)), PP(PP
),
86 ast_context(ast_context
), loc(loc
),
87 options(options
), value_bounds(value_bounds
),
88 n_stmt(0), n_test(0), partial(0), allow_nested(true),
89 nesting_enabled(false) { }
93 struct pet_scop
*scan(clang::FunctionDecl
*fd
);
95 static __isl_give isl_val
*extract_int(isl_ctx
*ctx
,
96 clang::IntegerLiteral
*expr
);
97 static __isl_give isl_val
*extract_unsigned(isl_ctx
*ctx
,
98 const llvm::APInt
&val
);
100 void insert_expression(__isl_take isl_pw_aff
*expr
);
101 struct pet_scop
*scan(clang::Stmt
*stmt
);
103 struct pet_scop
*scan_arrays(struct pet_scop
*scop
);
104 struct pet_array
*extract_array(isl_ctx
*ctx
, clang::ValueDecl
*decl
,
105 lex_recorddecl_set
*types
);
106 struct pet_array
*extract_array(isl_ctx
*ctx
,
107 std::vector
<clang::ValueDecl
*> decls
,
108 lex_recorddecl_set
*types
);
109 struct pet_array
*set_upper_bounds(struct pet_array
*array
,
110 const clang::Type
*type
, int pos
);
112 struct pet_scop
*extract_non_affine_condition(clang::Expr
*cond
,
113 int stmt_nr
, __isl_take isl_multi_pw_aff
*index
);
115 struct pet_scop
*extract_conditional_assignment(clang::IfStmt
*stmt
);
116 struct pet_scop
*extract_non_affine_if(clang::Expr
*cond
,
117 struct pet_scop
*scop_then
, struct pet_scop
*scop_else
,
118 bool have_else
, int stmt_id
);
120 struct pet_scop
*kill(clang::Stmt
*stmt
, struct pet_array
*array
);
122 struct pet_scop
*extract(clang::Stmt
*stmt
,
123 bool skip_declarations
= false);
124 struct pet_scop
*extract(clang::StmtRange stmt_range
, bool block
,
125 bool skip_declarations
);
126 struct pet_scop
*extract(clang::IfStmt
*stmt
);
127 struct pet_scop
*extract(clang::WhileStmt
*stmt
);
128 struct pet_scop
*extract(clang::CompoundStmt
*stmt
,
129 bool skip_declarations
= false);
130 struct pet_scop
*extract(clang::LabelStmt
*stmt
);
131 struct pet_scop
*extract(clang::ContinueStmt
*stmt
);
132 struct pet_scop
*extract(clang::BreakStmt
*stmt
);
133 struct pet_scop
*extract(clang::DeclStmt
*expr
);
135 struct pet_scop
*update_scop_start_end(struct pet_scop
*scop
,
136 clang::SourceRange range
, bool skip_semi
);
137 struct pet_scop
*extract(__isl_take pet_expr
*expr
,
138 clang::SourceRange range
, bool skip_semi
,
139 __isl_take isl_id
*label
= NULL
);
140 struct pet_stmt
*extract_kill(struct pet_scop
*scop
);
142 clang::BinaryOperator
*initialization_assignment(clang::Stmt
*init
);
143 clang::Decl
*initialization_declaration(clang::Stmt
*init
);
144 clang::ValueDecl
*extract_induction_variable(clang::BinaryOperator
*stmt
);
145 clang::VarDecl
*extract_induction_variable(clang::Stmt
*init
,
147 __isl_give pet_expr
*extract_unary_increment(clang::UnaryOperator
*op
,
148 clang::ValueDecl
*iv
);
149 __isl_give pet_expr
*extract_binary_increment(
150 clang::BinaryOperator
*op
,
151 clang::ValueDecl
*iv
);
152 __isl_give pet_expr
*extract_compound_increment(
153 clang::CompoundAssignOperator
*op
,
154 clang::ValueDecl
*iv
);
155 __isl_give pet_expr
*extract_increment(clang::ForStmt
*stmt
,
156 clang::ValueDecl
*iv
);
157 struct pet_scop
*extract_for(clang::ForStmt
*stmt
);
158 struct pet_scop
*extract_non_affine_for(clang::ForStmt
*stmt
,
159 clang::ValueDecl
*iv
,
160 __isl_take pet_expr
*init
, __isl_take pet_expr
*inc
);
161 struct pet_scop
*extract_infinite_loop(clang::Stmt
*body
);
162 struct pet_scop
*extract_infinite_for(clang::ForStmt
*stmt
);
163 struct pet_scop
*extract_affine_while(__isl_take isl_pw_aff
*pa
,
165 struct pet_scop
*extract_while(clang::Expr
*cond
, int test_nr
,
166 int stmt_nr
, struct pet_scop
*scop_body
,
167 struct pet_scop
*scop_inc
);
169 __isl_give pet_expr
*mark_write(__isl_take pet_expr
*access
);
170 __isl_give pet_expr
*extract_assume(clang::Expr
*expr
);
171 __isl_give pet_expr
*extract_argument(clang::FunctionDecl
*fd
, int pos
,
173 __isl_give pet_expr
*extract_expr(clang::Expr
*expr
);
174 __isl_give pet_expr
*extract_expr(clang::UnaryOperator
*expr
);
175 __isl_give pet_expr
*extract_expr(clang::BinaryOperator
*expr
);
176 __isl_give pet_expr
*extract_expr(clang::ImplicitCastExpr
*expr
);
177 __isl_give pet_expr
*extract_expr(clang::IntegerLiteral
*expr
);
178 __isl_give pet_expr
*extract_expr(clang::FloatingLiteral
*expr
);
179 __isl_give pet_expr
*extract_expr(clang::ParenExpr
*expr
);
180 __isl_give pet_expr
*extract_expr(clang::ConditionalOperator
*expr
);
181 __isl_give pet_expr
*extract_expr(clang::CallExpr
*expr
);
182 __isl_give pet_expr
*extract_expr(clang::CStyleCastExpr
*expr
);
184 int extract_nested(__isl_keep isl_space
*space
,
185 int n_arg
, pet_expr
**args
, std::map
<int,int> ¶m2pos
);
186 __isl_give pet_expr
*extract_nested(__isl_take pet_expr
*expr
, int n
,
187 std::map
<int,int> ¶m2pos
);
188 struct pet_stmt
*extract_nested(struct pet_stmt
*stmt
, int n
,
189 std::map
<int,int> ¶m2pos
);
190 __isl_give pet_expr
*resolve_nested(__isl_take pet_expr
*expr
);
191 struct pet_scop
*resolve_nested(struct pet_scop
*scop
);
192 struct pet_stmt
*resolve_nested(struct pet_stmt
*stmt
);
193 __isl_give pet_expr
*extract_access_expr(clang::QualType qt
,
194 __isl_take isl_multi_pw_aff
*index
);
195 __isl_give pet_expr
*extract_access_expr(clang::Expr
*expr
);
196 __isl_give pet_expr
*extract_access_expr(clang::ValueDecl
*decl
);
198 __isl_give isl_multi_pw_aff
*extract_index(
199 clang::ArraySubscriptExpr
*expr
);
200 __isl_give isl_multi_pw_aff
*extract_index(clang::Expr
*expr
);
201 __isl_give isl_multi_pw_aff
*extract_index(
202 clang::ImplicitCastExpr
*expr
);
203 __isl_give isl_multi_pw_aff
*extract_index(clang::DeclRefExpr
*expr
);
204 __isl_give isl_multi_pw_aff
*extract_index(clang::ValueDecl
*decl
);
205 __isl_give isl_multi_pw_aff
*extract_index(
206 clang::IntegerLiteral
*expr
);
207 __isl_give isl_multi_pw_aff
*extract_index(clang::MemberExpr
*expr
);
209 __isl_give isl_val
*extract_int(clang::Expr
*expr
);
210 __isl_give isl_val
*extract_int(clang::ParenExpr
*expr
);
212 __isl_give isl_pw_aff
*try_extract_affine_condition(clang::Expr
*expr
);
213 bool is_affine_condition(clang::Expr
*expr
);
214 __isl_give isl_pw_aff
*try_extract_nested_condition(clang::Expr
*expr
);
215 bool is_nested_allowed(__isl_keep isl_pw_aff
*pa
, pet_scop
*scop
);
217 __isl_give isl_pw_aff
*extract_affine(const llvm::APInt
&val
);
218 __isl_give isl_pw_aff
*extract_affine(clang::Expr
*expr
);
220 __isl_give isl_pw_aff
*extract_condition(clang::Expr
*expr
);
221 __isl_give isl_pw_aff
*extract_comparison(clang::BinaryOperator
*expr
);
222 __isl_give isl_pw_aff
*extract_comparison(clang::BinaryOperatorKind op
,
223 clang::Expr
*LHS
, clang::Expr
*RHS
, clang::Stmt
*comp
);
225 void report(clang::Stmt
*stmt
, unsigned id
);
226 void unsupported(clang::Stmt
*stmt
);
227 void report_prototype_required(clang::Stmt
*stmt
);
228 void report_missing_increment(clang::Stmt
*stmt
);
230 void handle_assignments(struct pet_stmt
*stmt
);
231 void handle_assignments(struct pet_scop
*scop
);