Merge branch 'timers-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[linux/fpc-iii.git] / scripts / gcc-plugins / gcc-common.h
blob6948898b3cdf8632e7a2b6c1bbe0530ea042c1ca
1 #ifndef GCC_COMMON_H_INCLUDED
2 #define GCC_COMMON_H_INCLUDED
4 #include "bversion.h"
5 #if BUILDING_GCC_VERSION >= 6000
6 #include "gcc-plugin.h"
7 #else
8 #include "plugin.h"
9 #endif
10 #include "plugin-version.h"
11 #include "config.h"
12 #include "system.h"
13 #include "coretypes.h"
14 #include "tm.h"
15 #include "line-map.h"
16 #include "input.h"
17 #include "tree.h"
19 #include "tree-inline.h"
20 #include "version.h"
21 #include "rtl.h"
22 #include "tm_p.h"
23 #include "flags.h"
24 #include "hard-reg-set.h"
25 #include "output.h"
26 #include "except.h"
27 #include "function.h"
28 #include "toplev.h"
29 #if BUILDING_GCC_VERSION >= 5000
30 #include "expr.h"
31 #endif
32 #include "basic-block.h"
33 #include "intl.h"
34 #include "ggc.h"
35 #include "timevar.h"
37 #include "params.h"
39 #if BUILDING_GCC_VERSION <= 4009
40 #include "pointer-set.h"
41 #else
42 #include "hash-map.h"
43 #endif
45 #if BUILDING_GCC_VERSION >= 7000
46 #include "memmodel.h"
47 #endif
48 #include "emit-rtl.h"
49 #include "debug.h"
50 #include "target.h"
51 #include "langhooks.h"
52 #include "cfgloop.h"
53 #include "cgraph.h"
54 #include "opts.h"
56 #if BUILDING_GCC_VERSION == 4005
57 #include <sys/mman.h>
58 #endif
60 #if BUILDING_GCC_VERSION >= 4007
61 #include "tree-pretty-print.h"
62 #include "gimple-pretty-print.h"
63 #endif
65 #if BUILDING_GCC_VERSION >= 4006
67 * The c-family headers were moved into a subdirectory in GCC version
68 * 4.7, but most plugin-building users of GCC 4.6 are using the Debian
69 * or Ubuntu package, which has an out-of-tree patch to move this to the
70 * same location as found in 4.7 and later:
71 * https://sources.debian.net/src/gcc-4.6/4.6.3-14/debian/patches/pr45078.diff/
73 #include "c-family/c-common.h"
74 #else
75 #include "c-common.h"
76 #endif
78 #if BUILDING_GCC_VERSION <= 4008
79 #include "tree-flow.h"
80 #else
81 #include "tree-cfgcleanup.h"
82 #include "tree-ssa-operands.h"
83 #include "tree-into-ssa.h"
84 #endif
86 #if BUILDING_GCC_VERSION >= 4008
87 #include "is-a.h"
88 #endif
90 #include "diagnostic.h"
91 #include "tree-dump.h"
92 #include "tree-pass.h"
93 #if BUILDING_GCC_VERSION >= 4009
94 #include "pass_manager.h"
95 #endif
96 #include "predict.h"
97 #include "ipa-utils.h"
99 #if BUILDING_GCC_VERSION >= 4009
100 #include "attribs.h"
101 #include "varasm.h"
102 #include "stor-layout.h"
103 #include "internal-fn.h"
104 #include "gimple-expr.h"
105 #include "gimple-fold.h"
106 #include "context.h"
107 #include "tree-ssa-alias.h"
108 #include "tree-ssa.h"
109 #include "stringpool.h"
110 #if BUILDING_GCC_VERSION >= 7000
111 #include "tree-vrp.h"
112 #endif
113 #include "tree-ssanames.h"
114 #include "print-tree.h"
115 #include "tree-eh.h"
116 #include "stmt.h"
117 #include "gimplify.h"
118 #endif
120 #include "gimple.h"
122 #if BUILDING_GCC_VERSION >= 4009
123 #include "tree-ssa-operands.h"
124 #include "tree-phinodes.h"
125 #include "tree-cfg.h"
126 #include "gimple-iterator.h"
127 #include "gimple-ssa.h"
128 #include "ssa-iterators.h"
129 #endif
131 #if BUILDING_GCC_VERSION >= 5000
132 #include "builtins.h"
133 #endif
135 /* missing from basic_block.h... */
136 void debug_dominance_info(enum cdi_direction dir);
137 void debug_dominance_tree(enum cdi_direction dir, basic_block root);
139 #if BUILDING_GCC_VERSION == 4006
140 void debug_gimple_stmt(gimple);
141 void debug_gimple_seq(gimple_seq);
142 void print_gimple_seq(FILE *, gimple_seq, int, int);
143 void print_gimple_stmt(FILE *, gimple, int, int);
144 void print_gimple_expr(FILE *, gimple, int, int);
145 void dump_gimple_stmt(pretty_printer *, gimple, int, int);
146 #endif
148 #define __unused __attribute__((__unused__))
149 #define __visible __attribute__((visibility("default")))
151 #define DECL_NAME_POINTER(node) IDENTIFIER_POINTER(DECL_NAME(node))
152 #define DECL_NAME_LENGTH(node) IDENTIFIER_LENGTH(DECL_NAME(node))
153 #define TYPE_NAME_POINTER(node) IDENTIFIER_POINTER(TYPE_NAME(node))
154 #define TYPE_NAME_LENGTH(node) IDENTIFIER_LENGTH(TYPE_NAME(node))
156 /* should come from c-tree.h if only it were installed for gcc 4.5... */
157 #define C_TYPE_FIELDS_READONLY(TYPE) TREE_LANG_FLAG_1(TYPE)
159 static inline tree build_const_char_string(int len, const char *str)
161 tree cstr, elem, index, type;
163 cstr = build_string(len, str);
164 elem = build_type_variant(char_type_node, 1, 0);
165 index = build_index_type(size_int(len - 1));
166 type = build_array_type(elem, index);
167 TREE_TYPE(cstr) = type;
168 TREE_CONSTANT(cstr) = 1;
169 TREE_READONLY(cstr) = 1;
170 TREE_STATIC(cstr) = 1;
171 return cstr;
174 #define PASS_INFO(NAME, REF, ID, POS) \
175 struct register_pass_info NAME##_pass_info = { \
176 .pass = make_##NAME##_pass(), \
177 .reference_pass_name = REF, \
178 .ref_pass_instance_number = ID, \
179 .pos_op = POS, \
182 #if BUILDING_GCC_VERSION == 4005
183 #define FOR_EACH_LOCAL_DECL(FUN, I, D) \
184 for (tree vars = (FUN)->local_decls, (I) = 0; \
185 vars && ((D) = TREE_VALUE(vars)); \
186 vars = TREE_CHAIN(vars), (I)++)
187 #define DECL_CHAIN(NODE) (TREE_CHAIN(DECL_MINIMAL_CHECK(NODE)))
188 #define FOR_EACH_VEC_ELT(T, V, I, P) \
189 for (I = 0; VEC_iterate(T, (V), (I), (P)); ++(I))
190 #define TODO_rebuild_cgraph_edges 0
191 #define SCOPE_FILE_SCOPE_P(EXP) (!(EXP))
193 #ifndef O_BINARY
194 #define O_BINARY 0
195 #endif
197 typedef struct varpool_node *varpool_node_ptr;
199 static inline bool gimple_call_builtin_p(gimple stmt, enum built_in_function code)
201 tree fndecl;
203 if (!is_gimple_call(stmt))
204 return false;
205 fndecl = gimple_call_fndecl(stmt);
206 if (!fndecl || DECL_BUILT_IN_CLASS(fndecl) != BUILT_IN_NORMAL)
207 return false;
208 return DECL_FUNCTION_CODE(fndecl) == code;
211 static inline bool is_simple_builtin(tree decl)
213 if (decl && DECL_BUILT_IN_CLASS(decl) != BUILT_IN_NORMAL)
214 return false;
216 switch (DECL_FUNCTION_CODE(decl)) {
217 /* Builtins that expand to constants. */
218 case BUILT_IN_CONSTANT_P:
219 case BUILT_IN_EXPECT:
220 case BUILT_IN_OBJECT_SIZE:
221 case BUILT_IN_UNREACHABLE:
222 /* Simple register moves or loads from stack. */
223 case BUILT_IN_RETURN_ADDRESS:
224 case BUILT_IN_EXTRACT_RETURN_ADDR:
225 case BUILT_IN_FROB_RETURN_ADDR:
226 case BUILT_IN_RETURN:
227 case BUILT_IN_AGGREGATE_INCOMING_ADDRESS:
228 case BUILT_IN_FRAME_ADDRESS:
229 case BUILT_IN_VA_END:
230 case BUILT_IN_STACK_SAVE:
231 case BUILT_IN_STACK_RESTORE:
232 /* Exception state returns or moves registers around. */
233 case BUILT_IN_EH_FILTER:
234 case BUILT_IN_EH_POINTER:
235 case BUILT_IN_EH_COPY_VALUES:
236 return true;
238 default:
239 return false;
243 static inline void add_local_decl(struct function *fun, tree d)
245 gcc_assert(TREE_CODE(d) == VAR_DECL);
246 fun->local_decls = tree_cons(NULL_TREE, d, fun->local_decls);
248 #endif
250 #if BUILDING_GCC_VERSION <= 4006
251 #define ANY_RETURN_P(rtx) (GET_CODE(rtx) == RETURN)
252 #define C_DECL_REGISTER(EXP) DECL_LANG_FLAG_4(EXP)
253 #define EDGE_PRESERVE 0ULL
254 #define HOST_WIDE_INT_PRINT_HEX_PURE "%" HOST_WIDE_INT_PRINT "x"
255 #define flag_fat_lto_objects true
257 #define get_random_seed(noinit) ({ \
258 unsigned HOST_WIDE_INT seed; \
259 sscanf(get_random_seed(noinit), "%" HOST_WIDE_INT_PRINT "x", &seed); \
260 seed * seed; })
262 #define int_const_binop(code, arg1, arg2) \
263 int_const_binop((code), (arg1), (arg2), 0)
265 static inline bool gimple_clobber_p(gimple s __unused)
267 return false;
270 static inline bool gimple_asm_clobbers_memory_p(const_gimple stmt)
272 unsigned i;
274 for (i = 0; i < gimple_asm_nclobbers(stmt); i++) {
275 tree op = gimple_asm_clobber_op(stmt, i);
277 if (!strcmp(TREE_STRING_POINTER(TREE_VALUE(op)), "memory"))
278 return true;
281 return false;
284 static inline tree builtin_decl_implicit(enum built_in_function fncode)
286 return implicit_built_in_decls[fncode];
289 static inline int ipa_reverse_postorder(struct cgraph_node **order)
291 return cgraph_postorder(order);
294 static inline struct cgraph_node *cgraph_create_node(tree decl)
296 return cgraph_node(decl);
299 static inline struct cgraph_node *cgraph_get_create_node(tree decl)
301 struct cgraph_node *node = cgraph_get_node(decl);
303 return node ? node : cgraph_node(decl);
306 static inline bool cgraph_function_with_gimple_body_p(struct cgraph_node *node)
308 return node->analyzed && !node->thunk.thunk_p && !node->alias;
311 static inline struct cgraph_node *cgraph_first_function_with_gimple_body(void)
313 struct cgraph_node *node;
315 for (node = cgraph_nodes; node; node = node->next)
316 if (cgraph_function_with_gimple_body_p(node))
317 return node;
318 return NULL;
321 static inline struct cgraph_node *cgraph_next_function_with_gimple_body(struct cgraph_node *node)
323 for (node = node->next; node; node = node->next)
324 if (cgraph_function_with_gimple_body_p(node))
325 return node;
326 return NULL;
329 static inline bool cgraph_for_node_and_aliases(cgraph_node_ptr node, bool (*callback)(cgraph_node_ptr, void *), void *data, bool include_overwritable)
331 cgraph_node_ptr alias;
333 if (callback(node, data))
334 return true;
336 for (alias = node->same_body; alias; alias = alias->next) {
337 if (include_overwritable || cgraph_function_body_availability(alias) > AVAIL_OVERWRITABLE)
338 if (cgraph_for_node_and_aliases(alias, callback, data, include_overwritable))
339 return true;
342 return false;
345 #define FOR_EACH_FUNCTION_WITH_GIMPLE_BODY(node) \
346 for ((node) = cgraph_first_function_with_gimple_body(); (node); \
347 (node) = cgraph_next_function_with_gimple_body(node))
349 static inline void varpool_add_new_variable(tree decl)
351 varpool_finalize_decl(decl);
353 #endif
355 #if BUILDING_GCC_VERSION <= 4007
356 #define FOR_EACH_FUNCTION(node) \
357 for (node = cgraph_nodes; node; node = node->next)
358 #define FOR_EACH_VARIABLE(node) \
359 for (node = varpool_nodes; node; node = node->next)
360 #define PROP_loops 0
361 #define NODE_SYMBOL(node) (node)
362 #define NODE_DECL(node) (node)->decl
363 #define INSN_LOCATION(INSN) RTL_LOCATION(INSN)
364 #define vNULL NULL
366 static inline int bb_loop_depth(const_basic_block bb)
368 return bb->loop_father ? loop_depth(bb->loop_father) : 0;
371 static inline bool gimple_store_p(gimple gs)
373 tree lhs = gimple_get_lhs(gs);
375 return lhs && !is_gimple_reg(lhs);
378 static inline void gimple_init_singleton(gimple g __unused)
381 #endif
383 #if BUILDING_GCC_VERSION == 4007 || BUILDING_GCC_VERSION == 4008
384 static inline struct cgraph_node *cgraph_alias_target(struct cgraph_node *n)
386 return cgraph_alias_aliased_node(n);
388 #endif
390 #if BUILDING_GCC_VERSION >= 4007 && BUILDING_GCC_VERSION <= 4009
391 #define cgraph_create_edge(caller, callee, call_stmt, count, freq, nest) \
392 cgraph_create_edge((caller), (callee), (call_stmt), (count), (freq))
393 #define cgraph_create_edge_including_clones(caller, callee, old_call_stmt, call_stmt, count, freq, nest, reason) \
394 cgraph_create_edge_including_clones((caller), (callee), (old_call_stmt), (call_stmt), (count), (freq), (reason))
395 #endif
397 #if BUILDING_GCC_VERSION <= 4008
398 #define ENTRY_BLOCK_PTR_FOR_FN(FN) ENTRY_BLOCK_PTR_FOR_FUNCTION(FN)
399 #define EXIT_BLOCK_PTR_FOR_FN(FN) EXIT_BLOCK_PTR_FOR_FUNCTION(FN)
400 #define basic_block_info_for_fn(FN) ((FN)->cfg->x_basic_block_info)
401 #define n_basic_blocks_for_fn(FN) ((FN)->cfg->x_n_basic_blocks)
402 #define n_edges_for_fn(FN) ((FN)->cfg->x_n_edges)
403 #define last_basic_block_for_fn(FN) ((FN)->cfg->x_last_basic_block)
404 #define label_to_block_map_for_fn(FN) ((FN)->cfg->x_label_to_block_map)
405 #define profile_status_for_fn(FN) ((FN)->cfg->x_profile_status)
406 #define BASIC_BLOCK_FOR_FN(FN, N) BASIC_BLOCK_FOR_FUNCTION((FN), (N))
407 #define NODE_IMPLICIT_ALIAS(node) (node)->same_body_alias
408 #define VAR_P(NODE) (TREE_CODE(NODE) == VAR_DECL)
410 static inline bool tree_fits_shwi_p(const_tree t)
412 if (t == NULL_TREE || TREE_CODE(t) != INTEGER_CST)
413 return false;
415 if (TREE_INT_CST_HIGH(t) == 0 && (HOST_WIDE_INT)TREE_INT_CST_LOW(t) >= 0)
416 return true;
418 if (TREE_INT_CST_HIGH(t) == -1 && (HOST_WIDE_INT)TREE_INT_CST_LOW(t) < 0 && !TYPE_UNSIGNED(TREE_TYPE(t)))
419 return true;
421 return false;
424 static inline bool tree_fits_uhwi_p(const_tree t)
426 if (t == NULL_TREE || TREE_CODE(t) != INTEGER_CST)
427 return false;
429 return TREE_INT_CST_HIGH(t) == 0;
432 static inline HOST_WIDE_INT tree_to_shwi(const_tree t)
434 gcc_assert(tree_fits_shwi_p(t));
435 return TREE_INT_CST_LOW(t);
438 static inline unsigned HOST_WIDE_INT tree_to_uhwi(const_tree t)
440 gcc_assert(tree_fits_uhwi_p(t));
441 return TREE_INT_CST_LOW(t);
444 static inline const char *get_tree_code_name(enum tree_code code)
446 gcc_assert(code < MAX_TREE_CODES);
447 return tree_code_name[code];
450 #define ipa_remove_stmt_references(cnode, stmt)
452 typedef union gimple_statement_d gasm;
453 typedef union gimple_statement_d gassign;
454 typedef union gimple_statement_d gcall;
455 typedef union gimple_statement_d gcond;
456 typedef union gimple_statement_d gdebug;
457 typedef union gimple_statement_d ggoto;
458 typedef union gimple_statement_d gphi;
459 typedef union gimple_statement_d greturn;
461 static inline gasm *as_a_gasm(gimple stmt)
463 return stmt;
466 static inline const gasm *as_a_const_gasm(const_gimple stmt)
468 return stmt;
471 static inline gassign *as_a_gassign(gimple stmt)
473 return stmt;
476 static inline const gassign *as_a_const_gassign(const_gimple stmt)
478 return stmt;
481 static inline gcall *as_a_gcall(gimple stmt)
483 return stmt;
486 static inline const gcall *as_a_const_gcall(const_gimple stmt)
488 return stmt;
491 static inline gcond *as_a_gcond(gimple stmt)
493 return stmt;
496 static inline const gcond *as_a_const_gcond(const_gimple stmt)
498 return stmt;
501 static inline gdebug *as_a_gdebug(gimple stmt)
503 return stmt;
506 static inline const gdebug *as_a_const_gdebug(const_gimple stmt)
508 return stmt;
511 static inline ggoto *as_a_ggoto(gimple stmt)
513 return stmt;
516 static inline const ggoto *as_a_const_ggoto(const_gimple stmt)
518 return stmt;
521 static inline gphi *as_a_gphi(gimple stmt)
523 return stmt;
526 static inline const gphi *as_a_const_gphi(const_gimple stmt)
528 return stmt;
531 static inline greturn *as_a_greturn(gimple stmt)
533 return stmt;
536 static inline const greturn *as_a_const_greturn(const_gimple stmt)
538 return stmt;
540 #endif
542 #if BUILDING_GCC_VERSION == 4008
543 #define NODE_SYMBOL(node) (&(node)->symbol)
544 #define NODE_DECL(node) (node)->symbol.decl
545 #endif
547 #if BUILDING_GCC_VERSION >= 4008
548 #define add_referenced_var(var)
549 #define mark_sym_for_renaming(var)
550 #define varpool_mark_needed_node(node)
551 #define create_var_ann(var)
552 #define TODO_dump_func 0
553 #define TODO_dump_cgraph 0
554 #endif
556 #if BUILDING_GCC_VERSION <= 4009
557 #define TODO_verify_il 0
558 #define AVAIL_INTERPOSABLE AVAIL_OVERWRITABLE
560 #define section_name_prefix LTO_SECTION_NAME_PREFIX
561 #define fatal_error(loc, gmsgid, ...) fatal_error((gmsgid), __VA_ARGS__)
563 rtx emit_move_insn(rtx x, rtx y);
565 typedef struct rtx_def rtx_insn;
567 static inline const char *get_decl_section_name(const_tree decl)
569 if (DECL_SECTION_NAME(decl) == NULL_TREE)
570 return NULL;
572 return TREE_STRING_POINTER(DECL_SECTION_NAME(decl));
575 static inline void set_decl_section_name(tree node, const char *value)
577 if (value)
578 DECL_SECTION_NAME(node) = build_string(strlen(value) + 1, value);
579 else
580 DECL_SECTION_NAME(node) = NULL;
582 #endif
584 #if BUILDING_GCC_VERSION == 4009
585 typedef struct gimple_statement_asm gasm;
586 typedef struct gimple_statement_base gassign;
587 typedef struct gimple_statement_call gcall;
588 typedef struct gimple_statement_base gcond;
589 typedef struct gimple_statement_base gdebug;
590 typedef struct gimple_statement_base ggoto;
591 typedef struct gimple_statement_phi gphi;
592 typedef struct gimple_statement_base greturn;
594 static inline gasm *as_a_gasm(gimple stmt)
596 return as_a<gasm>(stmt);
599 static inline const gasm *as_a_const_gasm(const_gimple stmt)
601 return as_a<const gasm>(stmt);
604 static inline gassign *as_a_gassign(gimple stmt)
606 return stmt;
609 static inline const gassign *as_a_const_gassign(const_gimple stmt)
611 return stmt;
614 static inline gcall *as_a_gcall(gimple stmt)
616 return as_a<gcall>(stmt);
619 static inline const gcall *as_a_const_gcall(const_gimple stmt)
621 return as_a<const gcall>(stmt);
624 static inline gcond *as_a_gcond(gimple stmt)
626 return stmt;
629 static inline const gcond *as_a_const_gcond(const_gimple stmt)
631 return stmt;
634 static inline gdebug *as_a_gdebug(gimple stmt)
636 return stmt;
639 static inline const gdebug *as_a_const_gdebug(const_gimple stmt)
641 return stmt;
644 static inline ggoto *as_a_ggoto(gimple stmt)
646 return stmt;
649 static inline const ggoto *as_a_const_ggoto(const_gimple stmt)
651 return stmt;
654 static inline gphi *as_a_gphi(gimple stmt)
656 return as_a<gphi>(stmt);
659 static inline const gphi *as_a_const_gphi(const_gimple stmt)
661 return as_a<const gphi>(stmt);
664 static inline greturn *as_a_greturn(gimple stmt)
666 return stmt;
669 static inline const greturn *as_a_const_greturn(const_gimple stmt)
671 return stmt;
673 #endif
675 #if BUILDING_GCC_VERSION >= 4009
676 #define TODO_ggc_collect 0
677 #define NODE_SYMBOL(node) (node)
678 #define NODE_DECL(node) (node)->decl
679 #define cgraph_node_name(node) (node)->name()
680 #define NODE_IMPLICIT_ALIAS(node) (node)->cpp_implicit_alias
682 static inline opt_pass *get_pass_for_id(int id)
684 return g->get_passes()->get_pass_for_id(id);
686 #endif
688 #if BUILDING_GCC_VERSION >= 5000 && BUILDING_GCC_VERSION < 6000
689 /* gimple related */
690 template <>
691 template <>
692 inline bool is_a_helper<const gassign *>::test(const_gimple gs)
694 return gs->code == GIMPLE_ASSIGN;
696 #endif
698 #if BUILDING_GCC_VERSION >= 5000
699 #define TODO_verify_ssa TODO_verify_il
700 #define TODO_verify_flow TODO_verify_il
701 #define TODO_verify_stmts TODO_verify_il
702 #define TODO_verify_rtl_sharing TODO_verify_il
704 #define INSN_DELETED_P(insn) (insn)->deleted()
706 static inline const char *get_decl_section_name(const_tree decl)
708 return DECL_SECTION_NAME(decl);
711 /* symtab/cgraph related */
712 #define debug_cgraph_node(node) (node)->debug()
713 #define cgraph_get_node(decl) cgraph_node::get(decl)
714 #define cgraph_get_create_node(decl) cgraph_node::get_create(decl)
715 #define cgraph_create_node(decl) cgraph_node::create(decl)
716 #define cgraph_n_nodes symtab->cgraph_count
717 #define cgraph_max_uid symtab->cgraph_max_uid
718 #define varpool_get_node(decl) varpool_node::get(decl)
719 #define dump_varpool_node(file, node) (node)->dump(file)
721 #define cgraph_create_edge(caller, callee, call_stmt, count, freq, nest) \
722 (caller)->create_edge((callee), (call_stmt), (count), (freq))
723 #define cgraph_create_edge_including_clones(caller, callee, old_call_stmt, call_stmt, count, freq, nest, reason) \
724 (caller)->create_edge_including_clones((callee), (old_call_stmt), (call_stmt), (count), (freq), (reason))
726 typedef struct cgraph_node *cgraph_node_ptr;
727 typedef struct cgraph_edge *cgraph_edge_p;
728 typedef struct varpool_node *varpool_node_ptr;
730 static inline void change_decl_assembler_name(tree decl, tree name)
732 symtab->change_decl_assembler_name(decl, name);
735 static inline void varpool_finalize_decl(tree decl)
737 varpool_node::finalize_decl(decl);
740 static inline void varpool_add_new_variable(tree decl)
742 varpool_node::add(decl);
745 static inline unsigned int rebuild_cgraph_edges(void)
747 return cgraph_edge::rebuild_edges();
750 static inline cgraph_node_ptr cgraph_function_node(cgraph_node_ptr node, enum availability *availability)
752 return node->function_symbol(availability);
755 static inline cgraph_node_ptr cgraph_function_or_thunk_node(cgraph_node_ptr node, enum availability *availability = NULL)
757 return node->ultimate_alias_target(availability);
760 static inline bool cgraph_only_called_directly_p(cgraph_node_ptr node)
762 return node->only_called_directly_p();
765 static inline enum availability cgraph_function_body_availability(cgraph_node_ptr node)
767 return node->get_availability();
770 static inline cgraph_node_ptr cgraph_alias_target(cgraph_node_ptr node)
772 return node->get_alias_target();
775 static inline bool cgraph_for_node_and_aliases(cgraph_node_ptr node, bool (*callback)(cgraph_node_ptr, void *), void *data, bool include_overwritable)
777 return node->call_for_symbol_thunks_and_aliases(callback, data, include_overwritable);
780 static inline struct cgraph_node_hook_list *cgraph_add_function_insertion_hook(cgraph_node_hook hook, void *data)
782 return symtab->add_cgraph_insertion_hook(hook, data);
785 static inline void cgraph_remove_function_insertion_hook(struct cgraph_node_hook_list *entry)
787 symtab->remove_cgraph_insertion_hook(entry);
790 static inline struct cgraph_node_hook_list *cgraph_add_node_removal_hook(cgraph_node_hook hook, void *data)
792 return symtab->add_cgraph_removal_hook(hook, data);
795 static inline void cgraph_remove_node_removal_hook(struct cgraph_node_hook_list *entry)
797 symtab->remove_cgraph_removal_hook(entry);
800 static inline struct cgraph_2node_hook_list *cgraph_add_node_duplication_hook(cgraph_2node_hook hook, void *data)
802 return symtab->add_cgraph_duplication_hook(hook, data);
805 static inline void cgraph_remove_node_duplication_hook(struct cgraph_2node_hook_list *entry)
807 symtab->remove_cgraph_duplication_hook(entry);
810 static inline void cgraph_call_node_duplication_hooks(cgraph_node_ptr node, cgraph_node_ptr node2)
812 symtab->call_cgraph_duplication_hooks(node, node2);
815 static inline void cgraph_call_edge_duplication_hooks(cgraph_edge *cs1, cgraph_edge *cs2)
817 symtab->call_edge_duplication_hooks(cs1, cs2);
820 #if BUILDING_GCC_VERSION >= 6000
821 typedef gimple *gimple_ptr;
822 typedef const gimple *const_gimple_ptr;
823 #define gimple gimple_ptr
824 #define const_gimple const_gimple_ptr
825 #undef CONST_CAST_GIMPLE
826 #define CONST_CAST_GIMPLE(X) CONST_CAST(gimple, (X))
827 #endif
829 /* gimple related */
830 static inline gimple gimple_build_assign_with_ops(enum tree_code subcode, tree lhs, tree op1, tree op2 MEM_STAT_DECL)
832 return gimple_build_assign(lhs, subcode, op1, op2 PASS_MEM_STAT);
835 template <>
836 template <>
837 inline bool is_a_helper<const ggoto *>::test(const_gimple gs)
839 return gs->code == GIMPLE_GOTO;
842 template <>
843 template <>
844 inline bool is_a_helper<const greturn *>::test(const_gimple gs)
846 return gs->code == GIMPLE_RETURN;
849 static inline gasm *as_a_gasm(gimple stmt)
851 return as_a<gasm *>(stmt);
854 static inline const gasm *as_a_const_gasm(const_gimple stmt)
856 return as_a<const gasm *>(stmt);
859 static inline gassign *as_a_gassign(gimple stmt)
861 return as_a<gassign *>(stmt);
864 static inline const gassign *as_a_const_gassign(const_gimple stmt)
866 return as_a<const gassign *>(stmt);
869 static inline gcall *as_a_gcall(gimple stmt)
871 return as_a<gcall *>(stmt);
874 static inline const gcall *as_a_const_gcall(const_gimple stmt)
876 return as_a<const gcall *>(stmt);
879 static inline ggoto *as_a_ggoto(gimple stmt)
881 return as_a<ggoto *>(stmt);
884 static inline const ggoto *as_a_const_ggoto(const_gimple stmt)
886 return as_a<const ggoto *>(stmt);
889 static inline gphi *as_a_gphi(gimple stmt)
891 return as_a<gphi *>(stmt);
894 static inline const gphi *as_a_const_gphi(const_gimple stmt)
896 return as_a<const gphi *>(stmt);
899 static inline greturn *as_a_greturn(gimple stmt)
901 return as_a<greturn *>(stmt);
904 static inline const greturn *as_a_const_greturn(const_gimple stmt)
906 return as_a<const greturn *>(stmt);
909 /* IPA/LTO related */
910 #define ipa_ref_list_referring_iterate(L, I, P) \
911 (L)->referring.iterate((I), &(P))
912 #define ipa_ref_list_reference_iterate(L, I, P) \
913 (L)->reference.iterate((I), &(P))
915 static inline cgraph_node_ptr ipa_ref_referring_node(struct ipa_ref *ref)
917 return dyn_cast<cgraph_node_ptr>(ref->referring);
920 static inline void ipa_remove_stmt_references(symtab_node *referring_node, gimple stmt)
922 referring_node->remove_stmt_references(stmt);
924 #endif
926 #if BUILDING_GCC_VERSION < 6000
927 #define get_inner_reference(exp, pbitsize, pbitpos, poffset, pmode, punsignedp, preversep, pvolatilep, keep_aligning) \
928 get_inner_reference(exp, pbitsize, pbitpos, poffset, pmode, punsignedp, pvolatilep, keep_aligning)
929 #define gen_rtx_set(ARG0, ARG1) gen_rtx_SET(VOIDmode, (ARG0), (ARG1))
930 #endif
932 #if BUILDING_GCC_VERSION >= 6000
933 #define gen_rtx_set(ARG0, ARG1) gen_rtx_SET((ARG0), (ARG1))
934 #endif
936 #ifdef __cplusplus
937 static inline void debug_tree(const_tree t)
939 debug_tree(CONST_CAST_TREE(t));
942 static inline void debug_gimple_stmt(const_gimple s)
944 debug_gimple_stmt(CONST_CAST_GIMPLE(s));
946 #else
947 #define debug_tree(t) debug_tree(CONST_CAST_TREE(t))
948 #define debug_gimple_stmt(s) debug_gimple_stmt(CONST_CAST_GIMPLE(s))
949 #endif
951 #if BUILDING_GCC_VERSION >= 7000
952 #define get_inner_reference(exp, pbitsize, pbitpos, poffset, pmode, punsignedp, preversep, pvolatilep, keep_aligning) \
953 get_inner_reference(exp, pbitsize, pbitpos, poffset, pmode, punsignedp, preversep, pvolatilep)
954 #endif
956 #if BUILDING_GCC_VERSION < 7000
957 #define SET_DECL_ALIGN(decl, align) DECL_ALIGN(decl) = (align)
958 #define SET_DECL_MODE(decl, mode) DECL_MODE(decl) = (mode)
959 #endif
961 #endif