]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - scripts/gcc-plugins/gcc-common.h
Merge tag 'dlm-4.10' of git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm
[mirror_ubuntu-artful-kernel.git] / scripts / gcc-plugins / gcc-common.h
CommitLineData
6b90bd4b
ER
1#ifndef GCC_COMMON_H_INCLUDED
2#define GCC_COMMON_H_INCLUDED
3
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"
18
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#include "basic-block.h"
30#include "intl.h"
31#include "ggc.h"
32#include "timevar.h"
33
34#include "params.h"
35
36#if BUILDING_GCC_VERSION <= 4009
37#include "pointer-set.h"
38#else
39#include "hash-map.h"
40#endif
41
42#include "emit-rtl.h"
43#include "debug.h"
44#include "target.h"
45#include "langhooks.h"
46#include "cfgloop.h"
47#include "cgraph.h"
48#include "opts.h"
49
50#if BUILDING_GCC_VERSION == 4005
51#include <sys/mman.h>
52#endif
53
54#if BUILDING_GCC_VERSION >= 4007
55#include "tree-pretty-print.h"
56#include "gimple-pretty-print.h"
57#endif
58
59#if BUILDING_GCC_VERSION >= 4006
60#include "c-family/c-common.h"
61#else
62#include "c-common.h"
63#endif
64
65#if BUILDING_GCC_VERSION <= 4008
66#include "tree-flow.h"
67#else
68#include "tree-cfgcleanup.h"
69#include "tree-ssa-operands.h"
70#include "tree-into-ssa.h"
71#endif
72
73#if BUILDING_GCC_VERSION >= 4008
74#include "is-a.h"
75#endif
76
77#include "diagnostic.h"
78#include "tree-dump.h"
79#include "tree-pass.h"
80#include "predict.h"
81#include "ipa-utils.h"
82
83#if BUILDING_GCC_VERSION >= 4009
84#include "attribs.h"
85#include "varasm.h"
86#include "stor-layout.h"
87#include "internal-fn.h"
88#include "gimple-expr.h"
89#include "gimple-fold.h"
90#include "context.h"
91#include "tree-ssa-alias.h"
92#include "tree-ssa.h"
93#include "stringpool.h"
94#include "tree-ssanames.h"
95#include "print-tree.h"
96#include "tree-eh.h"
97#include "stmt.h"
98#include "gimplify.h"
99#endif
100
101#include "gimple.h"
102
103#if BUILDING_GCC_VERSION >= 4009
104#include "tree-ssa-operands.h"
105#include "tree-phinodes.h"
106#include "tree-cfg.h"
107#include "gimple-iterator.h"
108#include "gimple-ssa.h"
109#include "ssa-iterators.h"
110#endif
111
112#if BUILDING_GCC_VERSION >= 5000
113#include "builtins.h"
114#endif
115
116/* #include "expr.h" where are you... */
117extern rtx emit_move_insn(rtx x, rtx y);
118
119/* missing from basic_block.h... */
120extern void debug_dominance_info(enum cdi_direction dir);
121extern void debug_dominance_tree(enum cdi_direction dir, basic_block root);
122
123#if BUILDING_GCC_VERSION == 4006
124extern void debug_gimple_stmt(gimple);
125extern void debug_gimple_seq(gimple_seq);
126extern void print_gimple_seq(FILE *, gimple_seq, int, int);
127extern void print_gimple_stmt(FILE *, gimple, int, int);
128extern void print_gimple_expr(FILE *, gimple, int, int);
129extern void dump_gimple_stmt(pretty_printer *, gimple, int, int);
130#endif
131
132#define __unused __attribute__((__unused__))
da7389ac 133#define __visible __attribute__((visibility("default")))
6b90bd4b
ER
134
135#define DECL_NAME_POINTER(node) IDENTIFIER_POINTER(DECL_NAME(node))
136#define DECL_NAME_LENGTH(node) IDENTIFIER_LENGTH(DECL_NAME(node))
137#define TYPE_NAME_POINTER(node) IDENTIFIER_POINTER(TYPE_NAME(node))
138#define TYPE_NAME_LENGTH(node) IDENTIFIER_LENGTH(TYPE_NAME(node))
139
140/* should come from c-tree.h if only it were installed for gcc 4.5... */
141#define C_TYPE_FIELDS_READONLY(TYPE) TREE_LANG_FLAG_1(TYPE)
142
143#if BUILDING_GCC_VERSION == 4005
144#define FOR_EACH_LOCAL_DECL(FUN, I, D) \
145 for (tree vars = (FUN)->local_decls, (I) = 0; \
146 vars && ((D) = TREE_VALUE(vars)); \
147 vars = TREE_CHAIN(vars), (I)++)
148#define DECL_CHAIN(NODE) (TREE_CHAIN(DECL_MINIMAL_CHECK(NODE)))
149#define FOR_EACH_VEC_ELT(T, V, I, P) \
150 for (I = 0; VEC_iterate(T, (V), (I), (P)); ++(I))
151#define TODO_rebuild_cgraph_edges 0
152#define SCOPE_FILE_SCOPE_P(EXP) (!(EXP))
153
154#ifndef O_BINARY
155#define O_BINARY 0
156#endif
157
158typedef struct varpool_node *varpool_node_ptr;
159
160static inline bool gimple_call_builtin_p(gimple stmt, enum built_in_function code)
161{
162 tree fndecl;
163
164 if (!is_gimple_call(stmt))
165 return false;
166 fndecl = gimple_call_fndecl(stmt);
167 if (!fndecl || DECL_BUILT_IN_CLASS(fndecl) != BUILT_IN_NORMAL)
168 return false;
169 return DECL_FUNCTION_CODE(fndecl) == code;
170}
171
172static inline bool is_simple_builtin(tree decl)
173{
174 if (decl && DECL_BUILT_IN_CLASS(decl) != BUILT_IN_NORMAL)
175 return false;
176
177 switch (DECL_FUNCTION_CODE(decl)) {
178 /* Builtins that expand to constants. */
179 case BUILT_IN_CONSTANT_P:
180 case BUILT_IN_EXPECT:
181 case BUILT_IN_OBJECT_SIZE:
182 case BUILT_IN_UNREACHABLE:
183 /* Simple register moves or loads from stack. */
184 case BUILT_IN_RETURN_ADDRESS:
185 case BUILT_IN_EXTRACT_RETURN_ADDR:
186 case BUILT_IN_FROB_RETURN_ADDR:
187 case BUILT_IN_RETURN:
188 case BUILT_IN_AGGREGATE_INCOMING_ADDRESS:
189 case BUILT_IN_FRAME_ADDRESS:
190 case BUILT_IN_VA_END:
191 case BUILT_IN_STACK_SAVE:
192 case BUILT_IN_STACK_RESTORE:
193 /* Exception state returns or moves registers around. */
194 case BUILT_IN_EH_FILTER:
195 case BUILT_IN_EH_POINTER:
196 case BUILT_IN_EH_COPY_VALUES:
197 return true;
198
199 default:
200 return false;
201 }
202}
203
204static inline void add_local_decl(struct function *fun, tree d)
205{
206 gcc_assert(TREE_CODE(d) == VAR_DECL);
207 fun->local_decls = tree_cons(NULL_TREE, d, fun->local_decls);
208}
209#endif
210
211#if BUILDING_GCC_VERSION <= 4006
212#define ANY_RETURN_P(rtx) (GET_CODE(rtx) == RETURN)
213#define C_DECL_REGISTER(EXP) DECL_LANG_FLAG_4(EXP)
214#define EDGE_PRESERVE 0ULL
215#define HOST_WIDE_INT_PRINT_HEX_PURE "%" HOST_WIDE_INT_PRINT "x"
216#define flag_fat_lto_objects true
217
218#define get_random_seed(noinit) ({ \
219 unsigned HOST_WIDE_INT seed; \
220 sscanf(get_random_seed(noinit), "%" HOST_WIDE_INT_PRINT "x", &seed); \
221 seed * seed; })
222
223#define int_const_binop(code, arg1, arg2) \
224 int_const_binop((code), (arg1), (arg2), 0)
225
226static inline bool gimple_clobber_p(gimple s __unused)
227{
228 return false;
229}
230
231static inline bool gimple_asm_clobbers_memory_p(const_gimple stmt)
232{
233 unsigned i;
234
235 for (i = 0; i < gimple_asm_nclobbers(stmt); i++) {
236 tree op = gimple_asm_clobber_op(stmt, i);
237
238 if (!strcmp(TREE_STRING_POINTER(TREE_VALUE(op)), "memory"))
239 return true;
240 }
241
242 return false;
243}
244
245static inline tree builtin_decl_implicit(enum built_in_function fncode)
246{
247 return implicit_built_in_decls[fncode];
248}
249
250static inline int ipa_reverse_postorder(struct cgraph_node **order)
251{
252 return cgraph_postorder(order);
253}
254
255static inline struct cgraph_node *cgraph_create_node(tree decl)
256{
257 return cgraph_node(decl);
258}
259
260static inline struct cgraph_node *cgraph_get_create_node(tree decl)
261{
262 struct cgraph_node *node = cgraph_get_node(decl);
263
264 return node ? node : cgraph_node(decl);
265}
266
267static inline bool cgraph_function_with_gimple_body_p(struct cgraph_node *node)
268{
269 return node->analyzed && !node->thunk.thunk_p && !node->alias;
270}
271
272static inline struct cgraph_node *cgraph_first_function_with_gimple_body(void)
273{
274 struct cgraph_node *node;
275
276 for (node = cgraph_nodes; node; node = node->next)
277 if (cgraph_function_with_gimple_body_p(node))
278 return node;
279 return NULL;
280}
281
282static inline struct cgraph_node *cgraph_next_function_with_gimple_body(struct cgraph_node *node)
283{
284 for (node = node->next; node; node = node->next)
285 if (cgraph_function_with_gimple_body_p(node))
286 return node;
287 return NULL;
288}
289
290#define FOR_EACH_FUNCTION_WITH_GIMPLE_BODY(node) \
291 for ((node) = cgraph_first_function_with_gimple_body(); (node); \
292 (node) = cgraph_next_function_with_gimple_body(node))
293
294static inline void varpool_add_new_variable(tree decl)
295{
296 varpool_finalize_decl(decl);
297}
298#endif
299
300#if BUILDING_GCC_VERSION <= 4007
301#define FOR_EACH_FUNCTION(node) \
302 for (node = cgraph_nodes; node; node = node->next)
303#define FOR_EACH_VARIABLE(node) \
304 for (node = varpool_nodes; node; node = node->next)
305#define PROP_loops 0
306#define NODE_SYMBOL(node) (node)
307#define NODE_DECL(node) (node)->decl
308#define INSN_LOCATION(INSN) RTL_LOCATION(INSN)
309#define vNULL NULL
310
311static inline int bb_loop_depth(const_basic_block bb)
312{
313 return bb->loop_father ? loop_depth(bb->loop_father) : 0;
314}
315
316static inline bool gimple_store_p(gimple gs)
317{
318 tree lhs = gimple_get_lhs(gs);
319
320 return lhs && !is_gimple_reg(lhs);
321}
322
323static inline void gimple_init_singleton(gimple g __unused)
324{
325}
326#endif
327
328#if BUILDING_GCC_VERSION == 4007 || BUILDING_GCC_VERSION == 4008
329static inline struct cgraph_node *cgraph_alias_target(struct cgraph_node *n)
330{
331 return cgraph_alias_aliased_node(n);
332}
333#endif
334
335#if BUILDING_GCC_VERSION >= 4007 && BUILDING_GCC_VERSION <= 4009
336#define cgraph_create_edge(caller, callee, call_stmt, count, freq, nest) \
337 cgraph_create_edge((caller), (callee), (call_stmt), (count), (freq))
338#define cgraph_create_edge_including_clones(caller, callee, old_call_stmt, call_stmt, count, freq, nest, reason) \
339 cgraph_create_edge_including_clones((caller), (callee), (old_call_stmt), (call_stmt), (count), (freq), (reason))
340#endif
341
342#if BUILDING_GCC_VERSION <= 4008
343#define ENTRY_BLOCK_PTR_FOR_FN(FN) ENTRY_BLOCK_PTR_FOR_FUNCTION(FN)
344#define EXIT_BLOCK_PTR_FOR_FN(FN) EXIT_BLOCK_PTR_FOR_FUNCTION(FN)
345#define basic_block_info_for_fn(FN) ((FN)->cfg->x_basic_block_info)
346#define n_basic_blocks_for_fn(FN) ((FN)->cfg->x_n_basic_blocks)
347#define n_edges_for_fn(FN) ((FN)->cfg->x_n_edges)
348#define last_basic_block_for_fn(FN) ((FN)->cfg->x_last_basic_block)
349#define label_to_block_map_for_fn(FN) ((FN)->cfg->x_label_to_block_map)
350#define profile_status_for_fn(FN) ((FN)->cfg->x_profile_status)
351#define BASIC_BLOCK_FOR_FN(FN, N) BASIC_BLOCK_FOR_FUNCTION((FN), (N))
352#define NODE_IMPLICIT_ALIAS(node) (node)->same_body_alias
353#define VAR_P(NODE) (TREE_CODE(NODE) == VAR_DECL)
354
355static inline bool tree_fits_shwi_p(const_tree t)
356{
357 if (t == NULL_TREE || TREE_CODE(t) != INTEGER_CST)
358 return false;
359
360 if (TREE_INT_CST_HIGH(t) == 0 && (HOST_WIDE_INT)TREE_INT_CST_LOW(t) >= 0)
361 return true;
362
363 if (TREE_INT_CST_HIGH(t) == -1 && (HOST_WIDE_INT)TREE_INT_CST_LOW(t) < 0 && !TYPE_UNSIGNED(TREE_TYPE(t)))
364 return true;
365
366 return false;
367}
368
369static inline bool tree_fits_uhwi_p(const_tree t)
370{
371 if (t == NULL_TREE || TREE_CODE(t) != INTEGER_CST)
372 return false;
373
374 return TREE_INT_CST_HIGH(t) == 0;
375}
376
377static inline HOST_WIDE_INT tree_to_shwi(const_tree t)
378{
379 gcc_assert(tree_fits_shwi_p(t));
380 return TREE_INT_CST_LOW(t);
381}
382
383static inline unsigned HOST_WIDE_INT tree_to_uhwi(const_tree t)
384{
385 gcc_assert(tree_fits_uhwi_p(t));
386 return TREE_INT_CST_LOW(t);
387}
388
389static inline const char *get_tree_code_name(enum tree_code code)
390{
391 gcc_assert(code < MAX_TREE_CODES);
392 return tree_code_name[code];
393}
394
395#define ipa_remove_stmt_references(cnode, stmt)
396
397typedef union gimple_statement_d gasm;
398typedef union gimple_statement_d gassign;
399typedef union gimple_statement_d gcall;
400typedef union gimple_statement_d gcond;
401typedef union gimple_statement_d gdebug;
402typedef union gimple_statement_d gphi;
403typedef union gimple_statement_d greturn;
404
405static inline gasm *as_a_gasm(gimple stmt)
406{
407 return stmt;
408}
409
410static inline const gasm *as_a_const_gasm(const_gimple stmt)
411{
412 return stmt;
413}
414
415static inline gassign *as_a_gassign(gimple stmt)
416{
417 return stmt;
418}
419
420static inline const gassign *as_a_const_gassign(const_gimple stmt)
421{
422 return stmt;
423}
424
425static inline gcall *as_a_gcall(gimple stmt)
426{
427 return stmt;
428}
429
430static inline const gcall *as_a_const_gcall(const_gimple stmt)
431{
432 return stmt;
433}
434
435static inline gcond *as_a_gcond(gimple stmt)
436{
437 return stmt;
438}
439
440static inline const gcond *as_a_const_gcond(const_gimple stmt)
441{
442 return stmt;
443}
444
445static inline gdebug *as_a_gdebug(gimple stmt)
446{
447 return stmt;
448}
449
450static inline const gdebug *as_a_const_gdebug(const_gimple stmt)
451{
452 return stmt;
453}
454
455static inline gphi *as_a_gphi(gimple stmt)
456{
457 return stmt;
458}
459
460static inline const gphi *as_a_const_gphi(const_gimple stmt)
461{
462 return stmt;
463}
464
465static inline greturn *as_a_greturn(gimple stmt)
466{
467 return stmt;
468}
469
470static inline const greturn *as_a_const_greturn(const_gimple stmt)
471{
472 return stmt;
473}
474#endif
475
476#if BUILDING_GCC_VERSION == 4008
477#define NODE_SYMBOL(node) (&(node)->symbol)
478#define NODE_DECL(node) (node)->symbol.decl
479#endif
480
481#if BUILDING_GCC_VERSION >= 4008
482#define add_referenced_var(var)
483#define mark_sym_for_renaming(var)
484#define varpool_mark_needed_node(node)
485#define create_var_ann(var)
486#define TODO_dump_func 0
487#define TODO_dump_cgraph 0
488#endif
489
490#if BUILDING_GCC_VERSION <= 4009
491#define TODO_verify_il 0
492#define AVAIL_INTERPOSABLE AVAIL_OVERWRITABLE
493
494#define section_name_prefix LTO_SECTION_NAME_PREFIX
495#define fatal_error(loc, gmsgid, ...) fatal_error((gmsgid), __VA_ARGS__)
496
497typedef struct rtx_def rtx_insn;
498
499static inline void set_decl_section_name(tree node, const char *value)
500{
501 if (value)
502 DECL_SECTION_NAME(node) = build_string(strlen(value) + 1, value);
503 else
504 DECL_SECTION_NAME(node) = NULL;
505}
506#endif
507
508#if BUILDING_GCC_VERSION == 4009
509typedef struct gimple_statement_asm gasm;
510typedef struct gimple_statement_base gassign;
511typedef struct gimple_statement_call gcall;
512typedef struct gimple_statement_base gcond;
513typedef struct gimple_statement_base gdebug;
514typedef struct gimple_statement_phi gphi;
515typedef struct gimple_statement_base greturn;
516
517static inline gasm *as_a_gasm(gimple stmt)
518{
519 return as_a<gasm>(stmt);
520}
521
522static inline const gasm *as_a_const_gasm(const_gimple stmt)
523{
524 return as_a<const gasm>(stmt);
525}
526
527static inline gassign *as_a_gassign(gimple stmt)
528{
529 return stmt;
530}
531
532static inline const gassign *as_a_const_gassign(const_gimple stmt)
533{
534 return stmt;
535}
536
537static inline gcall *as_a_gcall(gimple stmt)
538{
539 return as_a<gcall>(stmt);
540}
541
542static inline const gcall *as_a_const_gcall(const_gimple stmt)
543{
544 return as_a<const gcall>(stmt);
545}
546
547static inline gcond *as_a_gcond(gimple stmt)
548{
549 return stmt;
550}
551
552static inline const gcond *as_a_const_gcond(const_gimple stmt)
553{
554 return stmt;
555}
556
557static inline gdebug *as_a_gdebug(gimple stmt)
558{
559 return stmt;
560}
561
562static inline const gdebug *as_a_const_gdebug(const_gimple stmt)
563{
564 return stmt;
565}
566
567static inline gphi *as_a_gphi(gimple stmt)
568{
569 return as_a<gphi>(stmt);
570}
571
572static inline const gphi *as_a_const_gphi(const_gimple stmt)
573{
574 return as_a<const gphi>(stmt);
575}
576
577static inline greturn *as_a_greturn(gimple stmt)
578{
579 return stmt;
580}
581
582static inline const greturn *as_a_const_greturn(const_gimple stmt)
583{
584 return stmt;
585}
586#endif
587
588#if BUILDING_GCC_VERSION >= 4009
589#define TODO_ggc_collect 0
590#define NODE_SYMBOL(node) (node)
591#define NODE_DECL(node) (node)->decl
592#define cgraph_node_name(node) (node)->name()
593#define NODE_IMPLICIT_ALIAS(node) (node)->cpp_implicit_alias
594#endif
595
596#if BUILDING_GCC_VERSION >= 5000 && BUILDING_GCC_VERSION < 6000
597/* gimple related */
598template <>
599template <>
600inline bool is_a_helper<const gassign *>::test(const_gimple gs)
601{
602 return gs->code == GIMPLE_ASSIGN;
603}
604#endif
605
606#if BUILDING_GCC_VERSION >= 5000
607#define TODO_verify_ssa TODO_verify_il
608#define TODO_verify_flow TODO_verify_il
609#define TODO_verify_stmts TODO_verify_il
610#define TODO_verify_rtl_sharing TODO_verify_il
611
612#define INSN_DELETED_P(insn) (insn)->deleted()
613
614/* symtab/cgraph related */
615#define debug_cgraph_node(node) (node)->debug()
616#define cgraph_get_node(decl) cgraph_node::get(decl)
617#define cgraph_get_create_node(decl) cgraph_node::get_create(decl)
618#define cgraph_create_node(decl) cgraph_node::create(decl)
619#define cgraph_n_nodes symtab->cgraph_count
620#define cgraph_max_uid symtab->cgraph_max_uid
621#define varpool_get_node(decl) varpool_node::get(decl)
622
623#define cgraph_create_edge(caller, callee, call_stmt, count, freq, nest) \
624 (caller)->create_edge((callee), (call_stmt), (count), (freq))
625#define cgraph_create_edge_including_clones(caller, callee, old_call_stmt, call_stmt, count, freq, nest, reason) \
626 (caller)->create_edge_including_clones((callee), (old_call_stmt), (call_stmt), (count), (freq), (reason))
627
628typedef struct cgraph_node *cgraph_node_ptr;
629typedef struct cgraph_edge *cgraph_edge_p;
630typedef struct varpool_node *varpool_node_ptr;
631
632static inline void change_decl_assembler_name(tree decl, tree name)
633{
634 symtab->change_decl_assembler_name(decl, name);
635}
636
637static inline void varpool_finalize_decl(tree decl)
638{
639 varpool_node::finalize_decl(decl);
640}
641
642static inline void varpool_add_new_variable(tree decl)
643{
644 varpool_node::add(decl);
645}
646
647static inline unsigned int rebuild_cgraph_edges(void)
648{
649 return cgraph_edge::rebuild_edges();
650}
651
652static inline cgraph_node_ptr cgraph_function_node(cgraph_node_ptr node, enum availability *availability)
653{
654 return node->function_symbol(availability);
655}
656
657static inline cgraph_node_ptr cgraph_function_or_thunk_node(cgraph_node_ptr node, enum availability *availability = NULL)
658{
659 return node->ultimate_alias_target(availability);
660}
661
662static inline bool cgraph_only_called_directly_p(cgraph_node_ptr node)
663{
664 return node->only_called_directly_p();
665}
666
667static inline enum availability cgraph_function_body_availability(cgraph_node_ptr node)
668{
669 return node->get_availability();
670}
671
672static inline cgraph_node_ptr cgraph_alias_target(cgraph_node_ptr node)
673{
674 return node->get_alias_target();
675}
676
677static inline struct cgraph_node_hook_list *cgraph_add_function_insertion_hook(cgraph_node_hook hook, void *data)
678{
679 return symtab->add_cgraph_insertion_hook(hook, data);
680}
681
682static inline void cgraph_remove_function_insertion_hook(struct cgraph_node_hook_list *entry)
683{
684 symtab->remove_cgraph_insertion_hook(entry);
685}
686
687static inline struct cgraph_node_hook_list *cgraph_add_node_removal_hook(cgraph_node_hook hook, void *data)
688{
689 return symtab->add_cgraph_removal_hook(hook, data);
690}
691
692static inline void cgraph_remove_node_removal_hook(struct cgraph_node_hook_list *entry)
693{
694 symtab->remove_cgraph_removal_hook(entry);
695}
696
697static inline struct cgraph_2node_hook_list *cgraph_add_node_duplication_hook(cgraph_2node_hook hook, void *data)
698{
699 return symtab->add_cgraph_duplication_hook(hook, data);
700}
701
702static inline void cgraph_remove_node_duplication_hook(struct cgraph_2node_hook_list *entry)
703{
704 symtab->remove_cgraph_duplication_hook(entry);
705}
706
707static inline void cgraph_call_node_duplication_hooks(cgraph_node_ptr node, cgraph_node_ptr node2)
708{
709 symtab->call_cgraph_duplication_hooks(node, node2);
710}
711
712static inline void cgraph_call_edge_duplication_hooks(cgraph_edge *cs1, cgraph_edge *cs2)
713{
714 symtab->call_edge_duplication_hooks(cs1, cs2);
715}
716
717#if BUILDING_GCC_VERSION >= 6000
718typedef gimple *gimple_ptr;
719typedef const gimple *const_gimple_ptr;
720#define gimple gimple_ptr
721#define const_gimple const_gimple_ptr
722#undef CONST_CAST_GIMPLE
723#define CONST_CAST_GIMPLE(X) CONST_CAST(gimple, (X))
724#endif
725
726/* gimple related */
727static inline gimple gimple_build_assign_with_ops(enum tree_code subcode, tree lhs, tree op1, tree op2 MEM_STAT_DECL)
728{
729 return gimple_build_assign(lhs, subcode, op1, op2 PASS_MEM_STAT);
730}
731
732template <>
733template <>
734inline bool is_a_helper<const greturn *>::test(const_gimple gs)
735{
736 return gs->code == GIMPLE_RETURN;
737}
738
739static inline gasm *as_a_gasm(gimple stmt)
740{
741 return as_a<gasm *>(stmt);
742}
743
744static inline const gasm *as_a_const_gasm(const_gimple stmt)
745{
746 return as_a<const gasm *>(stmt);
747}
748
749static inline gassign *as_a_gassign(gimple stmt)
750{
751 return as_a<gassign *>(stmt);
752}
753
754static inline const gassign *as_a_const_gassign(const_gimple stmt)
755{
756 return as_a<const gassign *>(stmt);
757}
758
759static inline gcall *as_a_gcall(gimple stmt)
760{
761 return as_a<gcall *>(stmt);
762}
763
764static inline const gcall *as_a_const_gcall(const_gimple stmt)
765{
766 return as_a<const gcall *>(stmt);
767}
768
769static inline gphi *as_a_gphi(gimple stmt)
770{
771 return as_a<gphi *>(stmt);
772}
773
774static inline const gphi *as_a_const_gphi(const_gimple stmt)
775{
776 return as_a<const gphi *>(stmt);
777}
778
779static inline greturn *as_a_greturn(gimple stmt)
780{
781 return as_a<greturn *>(stmt);
782}
783
784static inline const greturn *as_a_const_greturn(const_gimple stmt)
785{
786 return as_a<const greturn *>(stmt);
787}
788
789/* IPA/LTO related */
790#define ipa_ref_list_referring_iterate(L, I, P) \
791 (L)->referring.iterate((I), &(P))
792#define ipa_ref_list_reference_iterate(L, I, P) \
793 (L)->reference.iterate((I), &(P))
794
795static inline cgraph_node_ptr ipa_ref_referring_node(struct ipa_ref *ref)
796{
797 return dyn_cast<cgraph_node_ptr>(ref->referring);
798}
799
800static inline void ipa_remove_stmt_references(symtab_node *referring_node, gimple stmt)
801{
802 referring_node->remove_stmt_references(stmt);
803}
804#endif
805
806#if BUILDING_GCC_VERSION < 6000
807#define get_inner_reference(exp, pbitsize, pbitpos, poffset, pmode, punsignedp, preversep, pvolatilep, keep_aligning) \
808 get_inner_reference(exp, pbitsize, pbitpos, poffset, pmode, punsignedp, pvolatilep, keep_aligning)
809#define gen_rtx_set(ARG0, ARG1) gen_rtx_SET(VOIDmode, (ARG0), (ARG1))
810#endif
811
812#if BUILDING_GCC_VERSION >= 6000
813#define gen_rtx_set(ARG0, ARG1) gen_rtx_SET((ARG0), (ARG1))
814#endif
815
816#ifdef __cplusplus
817static inline void debug_tree(const_tree t)
818{
819 debug_tree(CONST_CAST_TREE(t));
820}
821
822static inline void debug_gimple_stmt(const_gimple s)
823{
824 debug_gimple_stmt(CONST_CAST_GIMPLE(s));
825}
826#else
827#define debug_tree(t) debug_tree(CONST_CAST_TREE(t))
828#define debug_gimple_stmt(s) debug_gimple_stmt(CONST_CAST_GIMPLE(s))
829#endif
830
831#endif