aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorEmese Revfy <re.emese@gmail.com>2016-05-23 18:09:38 -0400
committerMichal Marek <mmarek@suse.com>2016-06-07 16:57:10 -0400
commit6b90bd4ba40b38dc13c2782469c1c77e4ed79915 (patch)
tree02d65b38b76e3543d33088ae9149010bae0290b0 /scripts
parent24403874316a7180d367e51d7f7e25d5de1f78dd (diff)
GCC plugin infrastructure
This patch allows to build the whole kernel with GCC plugins. It was ported from grsecurity/PaX. The infrastructure supports building out-of-tree modules and building in a separate directory. Cross-compilation is supported too. Currently the x86, arm, arm64 and uml architectures enable plugins. The directory of the gcc plugins is scripts/gcc-plugins. You can use a file or a directory there. The plugins compile with these options: * -fno-rtti: gcc is compiled with this option so the plugins must use it too * -fno-exceptions: this is inherited from gcc too * -fasynchronous-unwind-tables: this is inherited from gcc too * -ggdb: it is useful for debugging a plugin (better backtrace on internal errors) * -Wno-narrowing: to suppress warnings from gcc headers (ipa-utils.h) * -Wno-unused-variable: to suppress warnings from gcc headers (gcc_version variable, plugin-version.h) The infrastructure introduces a new Makefile target called gcc-plugins. It supports all gcc versions from 4.5 to 6.0. The scripts/gcc-plugin.sh script chooses the proper host compiler (gcc-4.7 can be built by either gcc or g++). This script also checks the availability of the included headers in scripts/gcc-plugins/gcc-common.h. The gcc-common.h header contains frequently included headers for GCC plugins and it has a compatibility layer for the supported gcc versions. The gcc-generate-*-pass.h headers automatically generate the registration structures for GIMPLE, SIMPLE_IPA, IPA and RTL passes. Note that 'make clean' keeps the *.so files (only the distclean or mrproper targets clean all) because they are needed for out-of-tree modules. Based on work created by the PaX Team. Signed-off-by: Emese Revfy <re.emese@gmail.com> Acked-by: Kees Cook <keescook@chromium.org> Signed-off-by: Michal Marek <mmarek@suse.com>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/Makefile2
-rw-r--r--scripts/Makefile.gcc-plugins23
-rwxr-xr-xscripts/gcc-plugin.sh51
-rw-r--r--scripts/gcc-plugins/Makefile20
-rw-r--r--scripts/gcc-plugins/gcc-common.h830
-rw-r--r--scripts/gcc-plugins/gcc-generate-gimple-pass.h175
-rw-r--r--scripts/gcc-plugins/gcc-generate-ipa-pass.h289
-rw-r--r--scripts/gcc-plugins/gcc-generate-rtl-pass.h175
-rw-r--r--scripts/gcc-plugins/gcc-generate-simple_ipa-pass.h175
-rwxr-xr-xscripts/link-vmlinux.sh2
-rwxr-xr-xscripts/package/builddeb1
11 files changed, 1741 insertions, 2 deletions
diff --git a/scripts/Makefile b/scripts/Makefile
index 822ab4a6a4aa..1d80897a9644 100644
--- a/scripts/Makefile
+++ b/scripts/Makefile
@@ -47,4 +47,4 @@ subdir-$(CONFIG_DTC) += dtc
47subdir-$(CONFIG_GDB_SCRIPTS) += gdb 47subdir-$(CONFIG_GDB_SCRIPTS) += gdb
48 48
49# Let clean descend into subdirs 49# Let clean descend into subdirs
50subdir- += basic kconfig package 50subdir- += basic kconfig package gcc-plugins
diff --git a/scripts/Makefile.gcc-plugins b/scripts/Makefile.gcc-plugins
new file mode 100644
index 000000000000..bcc373dcb3b5
--- /dev/null
+++ b/scripts/Makefile.gcc-plugins
@@ -0,0 +1,23 @@
1ifdef CONFIG_GCC_PLUGINS
2 __PLUGINCC := $(call cc-ifversion, -ge, 0408, $(HOSTCXX), $(HOSTCC))
3 PLUGINCC := $(shell $(CONFIG_SHELL) $(srctree)/scripts/gcc-plugin.sh "$(__PLUGINCC)" "$(HOSTCXX)" "$(CC)")
4
5 GCC_PLUGINS_CFLAGS := $(addprefix -fplugin=$(objtree)/scripts/gcc-plugins/, $(gcc-plugin-y))
6
7 export PLUGINCC GCC_PLUGINS_CFLAGS GCC_PLUGIN
8
9 ifeq ($(PLUGINCC),)
10 ifneq ($(GCC_PLUGINS_CFLAGS),)
11 ifeq ($(call cc-ifversion, -ge, 0405, y), y)
12 PLUGINCC := $(shell $(CONFIG_SHELL) -x $(srctree)/scripts/gcc-plugin.sh "$(__PLUGINCC)" "$(HOSTCXX)" "$(CC)")
13 $(warning warning: your gcc installation does not support plugins, perhaps the necessary headers are missing?)
14 else
15 $(warning warning: your gcc version does not support plugins, you should upgrade it to gcc 4.5 at least)
16 endif
17 endif
18 endif
19
20 KBUILD_CFLAGS += $(GCC_PLUGINS_CFLAGS)
21 GCC_PLUGIN := $(gcc-plugin-y)
22
23endif
diff --git a/scripts/gcc-plugin.sh b/scripts/gcc-plugin.sh
new file mode 100755
index 000000000000..fb9207565471
--- /dev/null
+++ b/scripts/gcc-plugin.sh
@@ -0,0 +1,51 @@
1#!/bin/sh
2srctree=$(dirname "$0")
3gccplugins_dir=$($3 -print-file-name=plugin)
4plugincc=$($1 -E -x c++ - -o /dev/null -I"${srctree}"/gcc-plugins -I"${gccplugins_dir}"/include 2>&1 <<EOF
5#include "gcc-common.h"
6#if BUILDING_GCC_VERSION >= 4008 || defined(ENABLE_BUILD_WITH_CXX)
7#warning $2 CXX
8#else
9#warning $1 CC
10#endif
11EOF
12)
13
14if [ $? -ne 0 ]
15then
16 exit 1
17fi
18
19case "$plugincc" in
20 *"$1 CC"*)
21 echo "$1"
22 exit 0
23 ;;
24
25 *"$2 CXX"*)
26 # the c++ compiler needs another test, see below
27 ;;
28
29 *)
30 exit 1
31 ;;
32esac
33
34# we need a c++ compiler that supports the designated initializer GNU extension
35plugincc=$($2 -c -x c++ -std=gnu++98 - -fsyntax-only -I"${srctree}"/gcc-plugins -I"${gccplugins_dir}"/include 2>&1 <<EOF
36#include "gcc-common.h"
37class test {
38public:
39 int test;
40} test = {
41 .test = 1
42};
43EOF
44)
45
46if [ $? -eq 0 ]
47then
48 echo "$2"
49 exit 0
50fi
51exit 1
diff --git a/scripts/gcc-plugins/Makefile b/scripts/gcc-plugins/Makefile
new file mode 100644
index 000000000000..a4c93419d5d1
--- /dev/null
+++ b/scripts/gcc-plugins/Makefile
@@ -0,0 +1,20 @@
1GCC_PLUGINS_DIR := $(shell $(CC) -print-file-name=plugin)
2
3ifeq ($(PLUGINCC),$(HOSTCC))
4 HOSTLIBS := hostlibs
5 HOST_EXTRACFLAGS += -I$(GCC_PLUGINS_DIR)/include -I$(src) -std=gnu99 -ggdb
6 export HOST_EXTRACFLAGS
7else
8 HOSTLIBS := hostcxxlibs
9 HOST_EXTRACXXFLAGS += -I$(GCC_PLUGINS_DIR)/include -I$(src) -std=gnu++98 -fno-rtti
10 HOST_EXTRACXXFLAGS += -fno-exceptions -fasynchronous-unwind-tables -ggdb
11 HOST_EXTRACXXFLAGS += -Wno-narrowing -Wno-unused-variable
12 export HOST_EXTRACXXFLAGS
13endif
14
15export GCCPLUGINS_DIR HOSTLIBS
16
17$(HOSTLIBS)-y := $(GCC_PLUGIN)
18always := $($(HOSTLIBS)-y)
19
20clean-files += *.so
diff --git a/scripts/gcc-plugins/gcc-common.h b/scripts/gcc-plugins/gcc-common.h
new file mode 100644
index 000000000000..172850bcd0d9
--- /dev/null
+++ b/scripts/gcc-plugins/gcc-common.h
@@ -0,0 +1,830 @@
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__))
133
134#define DECL_NAME_POINTER(node) IDENTIFIER_POINTER(DECL_NAME(node))
135#define DECL_NAME_LENGTH(node) IDENTIFIER_LENGTH(DECL_NAME(node))
136#define TYPE_NAME_POINTER(node) IDENTIFIER_POINTER(TYPE_NAME(node))
137#define TYPE_NAME_LENGTH(node) IDENTIFIER_LENGTH(TYPE_NAME(node))
138
139/* should come from c-tree.h if only it were installed for gcc 4.5... */
140#define C_TYPE_FIELDS_READONLY(TYPE) TREE_LANG_FLAG_1(TYPE)
141
142#if BUILDING_GCC_VERSION == 4005
143#define FOR_EACH_LOCAL_DECL(FUN, I, D) \
144 for (tree vars = (FUN)->local_decls, (I) = 0; \
145 vars && ((D) = TREE_VALUE(vars)); \
146 vars = TREE_CHAIN(vars), (I)++)
147#define DECL_CHAIN(NODE) (TREE_CHAIN(DECL_MINIMAL_CHECK(NODE)))
148#define FOR_EACH_VEC_ELT(T, V, I, P) \
149 for (I = 0; VEC_iterate(T, (V), (I), (P)); ++(I))
150#define TODO_rebuild_cgraph_edges 0
151#define SCOPE_FILE_SCOPE_P(EXP) (!(EXP))
152
153#ifndef O_BINARY
154#define O_BINARY 0
155#endif
156
157typedef struct varpool_node *varpool_node_ptr;
158
159static inline bool gimple_call_builtin_p(gimple stmt, enum built_in_function code)
160{
161 tree fndecl;
162
163 if (!is_gimple_call(stmt))
164 return false;
165 fndecl = gimple_call_fndecl(stmt);
166 if (!fndecl || DECL_BUILT_IN_CLASS(fndecl) != BUILT_IN_NORMAL)
167 return false;
168 return DECL_FUNCTION_CODE(fndecl) == code;
169}
170
171static inline bool is_simple_builtin(tree decl)
172{
173 if (decl && DECL_BUILT_IN_CLASS(decl) != BUILT_IN_NORMAL)
174 return false;
175
176 switch (DECL_FUNCTION_CODE(decl)) {
177 /* Builtins that expand to constants. */
178 case BUILT_IN_CONSTANT_P:
179 case BUILT_IN_EXPECT:
180 case BUILT_IN_OBJECT_SIZE:
181 case BUILT_IN_UNREACHABLE:
182 /* Simple register moves or loads from stack. */
183 case BUILT_IN_RETURN_ADDRESS:
184 case BUILT_IN_EXTRACT_RETURN_ADDR:
185 case BUILT_IN_FROB_RETURN_ADDR:
186 case BUILT_IN_RETURN:
187 case BUILT_IN_AGGREGATE_INCOMING_ADDRESS:
188 case BUILT_IN_FRAME_ADDRESS:
189 case BUILT_IN_VA_END:
190 case BUILT_IN_STACK_SAVE:
191 case BUILT_IN_STACK_RESTORE:
192 /* Exception state returns or moves registers around. */
193 case BUILT_IN_EH_FILTER:
194 case BUILT_IN_EH_POINTER:
195 case BUILT_IN_EH_COPY_VALUES:
196 return true;
197
198 default:
199 return false;
200 }
201}
202
203static inline void add_local_decl(struct function *fun, tree d)
204{
205 gcc_assert(TREE_CODE(d) == VAR_DECL);
206 fun->local_decls = tree_cons(NULL_TREE, d, fun->local_decls);
207}
208#endif
209
210#if BUILDING_GCC_VERSION <= 4006
211#define ANY_RETURN_P(rtx) (GET_CODE(rtx) == RETURN)
212#define C_DECL_REGISTER(EXP) DECL_LANG_FLAG_4(EXP)
213#define EDGE_PRESERVE 0ULL
214#define HOST_WIDE_INT_PRINT_HEX_PURE "%" HOST_WIDE_INT_PRINT "x"
215#define flag_fat_lto_objects true
216
217#define get_random_seed(noinit) ({ \
218 unsigned HOST_WIDE_INT seed; \
219 sscanf(get_random_seed(noinit), "%" HOST_WIDE_INT_PRINT "x", &seed); \
220 seed * seed; })
221
222#define int_const_binop(code, arg1, arg2) \
223 int_const_binop((code), (arg1), (arg2), 0)
224
225static inline bool gimple_clobber_p(gimple s __unused)
226{
227 return false;
228}
229
230static inline bool gimple_asm_clobbers_memory_p(const_gimple stmt)
231{
232 unsigned i;
233
234 for (i = 0; i < gimple_asm_nclobbers(stmt); i++) {
235 tree op = gimple_asm_clobber_op(stmt, i);
236
237 if (!strcmp(TREE_STRING_POINTER(TREE_VALUE(op)), "memory"))
238 return true;
239 }
240
241 return false;
242}
243
244static inline tree builtin_decl_implicit(enum built_in_function fncode)
245{
246 return implicit_built_in_decls[fncode];
247}
248
249static inline int ipa_reverse_postorder(struct cgraph_node **order)
250{
251 return cgraph_postorder(order);
252}
253
254static inline struct cgraph_node *cgraph_create_node(tree decl)
255{
256 return cgraph_node(decl);
257}
258
259static inline struct cgraph_node *cgraph_get_create_node(tree decl)
260{
261 struct cgraph_node *node = cgraph_get_node(decl);
262
263 return node ? node : cgraph_node(decl);
264}
265
266static inline bool cgraph_function_with_gimple_body_p(struct cgraph_node *node)
267{
268 return node->analyzed && !node->thunk.thunk_p && !node->alias;
269}
270
271static inline struct cgraph_node *cgraph_first_function_with_gimple_body(void)
272{
273 struct cgraph_node *node;
274
275 for (node = cgraph_nodes; node; node = node->next)
276 if (cgraph_function_with_gimple_body_p(node))
277 return node;
278 return NULL;
279}
280
281static inline struct cgraph_node *cgraph_next_function_with_gimple_body(struct cgraph_node *node)
282{
283 for (node = node->next; node; node = node->next)
284 if (cgraph_function_with_gimple_body_p(node))
285 return node;
286 return NULL;
287}
288
289#define FOR_EACH_FUNCTION_WITH_GIMPLE_BODY(node) \
290 for ((node) = cgraph_first_function_with_gimple_body(); (node); \
291 (node) = cgraph_next_function_with_gimple_body(node))
292
293static inline void varpool_add_new_variable(tree decl)
294{
295 varpool_finalize_decl(decl);
296}
297#endif
298
299#if BUILDING_GCC_VERSION <= 4007
300#define FOR_EACH_FUNCTION(node) \
301 for (node = cgraph_nodes; node; node = node->next)
302#define FOR_EACH_VARIABLE(node) \
303 for (node = varpool_nodes; node; node = node->next)
304#define PROP_loops 0
305#define NODE_SYMBOL(node) (node)
306#define NODE_DECL(node) (node)->decl
307#define INSN_LOCATION(INSN) RTL_LOCATION(INSN)
308#define vNULL NULL
309
310static inline int bb_loop_depth(const_basic_block bb)
311{
312 return bb->loop_father ? loop_depth(bb->loop_father) : 0;
313}
314
315static inline bool gimple_store_p(gimple gs)
316{
317 tree lhs = gimple_get_lhs(gs);
318
319 return lhs && !is_gimple_reg(lhs);
320}
321
322static inline void gimple_init_singleton(gimple g __unused)
323{
324}
325#endif
326
327#if BUILDING_GCC_VERSION == 4007 || BUILDING_GCC_VERSION == 4008
328static inline struct cgraph_node *cgraph_alias_target(struct cgraph_node *n)
329{
330 return cgraph_alias_aliased_node(n);
331}
332#endif
333
334#if BUILDING_GCC_VERSION >= 4007 && BUILDING_GCC_VERSION <= 4009
335#define cgraph_create_edge(caller, callee, call_stmt, count, freq, nest) \
336 cgraph_create_edge((caller), (callee), (call_stmt), (count), (freq))
337#define cgraph_create_edge_including_clones(caller, callee, old_call_stmt, call_stmt, count, freq, nest, reason) \
338 cgraph_create_edge_including_clones((caller), (callee), (old_call_stmt), (call_stmt), (count), (freq), (reason))
339#endif
340
341#if BUILDING_GCC_VERSION <= 4008
342#define ENTRY_BLOCK_PTR_FOR_FN(FN) ENTRY_BLOCK_PTR_FOR_FUNCTION(FN)
343#define EXIT_BLOCK_PTR_FOR_FN(FN) EXIT_BLOCK_PTR_FOR_FUNCTION(FN)
344#define basic_block_info_for_fn(FN) ((FN)->cfg->x_basic_block_info)
345#define n_basic_blocks_for_fn(FN) ((FN)->cfg->x_n_basic_blocks)
346#define n_edges_for_fn(FN) ((FN)->cfg->x_n_edges)
347#define last_basic_block_for_fn(FN) ((FN)->cfg->x_last_basic_block)
348#define label_to_block_map_for_fn(FN) ((FN)->cfg->x_label_to_block_map)
349#define profile_status_for_fn(FN) ((FN)->cfg->x_profile_status)
350#define BASIC_BLOCK_FOR_FN(FN, N) BASIC_BLOCK_FOR_FUNCTION((FN), (N))
351#define NODE_IMPLICIT_ALIAS(node) (node)->same_body_alias
352#define VAR_P(NODE) (TREE_CODE(NODE) == VAR_DECL)
353
354static inline bool tree_fits_shwi_p(const_tree t)
355{
356 if (t == NULL_TREE || TREE_CODE(t) != INTEGER_CST)
357 return false;
358
359 if (TREE_INT_CST_HIGH(t) == 0 && (HOST_WIDE_INT)TREE_INT_CST_LOW(t) >= 0)
360 return true;
361
362 if (TREE_INT_CST_HIGH(t) == -1 && (HOST_WIDE_INT)TREE_INT_CST_LOW(t) < 0 && !TYPE_UNSIGNED(TREE_TYPE(t)))
363 return true;
364
365 return false;
366}
367
368static inline bool tree_fits_uhwi_p(const_tree t)
369{
370 if (t == NULL_TREE || TREE_CODE(t) != INTEGER_CST)
371 return false;
372
373 return TREE_INT_CST_HIGH(t) == 0;
374}
375
376static inline HOST_WIDE_INT tree_to_shwi(const_tree t)
377{
378 gcc_assert(tree_fits_shwi_p(t));
379 return TREE_INT_CST_LOW(t);
380}
381
382static inline unsigned HOST_WIDE_INT tree_to_uhwi(const_tree t)
383{
384 gcc_assert(tree_fits_uhwi_p(t));
385 return TREE_INT_CST_LOW(t);
386}
387
388static inline const char *get_tree_code_name(enum tree_code code)
389{
390 gcc_assert(code < MAX_TREE_CODES);
391 return tree_code_name[code];
392}
393
394#define ipa_remove_stmt_references(cnode, stmt)
395
396typedef union gimple_statement_d gasm;
397typedef union gimple_statement_d gassign;
398typedef union gimple_statement_d gcall;
399typedef union gimple_statement_d gcond;
400typedef union gimple_statement_d gdebug;
401typedef union gimple_statement_d gphi;
402typedef union gimple_statement_d greturn;
403
404static inline gasm *as_a_gasm(gimple stmt)
405{
406 return stmt;
407}
408
409static inline const gasm *as_a_const_gasm(const_gimple stmt)
410{
411 return stmt;
412}
413
414static inline gassign *as_a_gassign(gimple stmt)
415{
416 return stmt;
417}
418
419static inline const gassign *as_a_const_gassign(const_gimple stmt)
420{
421 return stmt;
422}
423
424static inline gcall *as_a_gcall(gimple stmt)
425{
426 return stmt;
427}
428
429static inline const gcall *as_a_const_gcall(const_gimple stmt)
430{
431 return stmt;
432}
433
434static inline gcond *as_a_gcond(gimple stmt)
435{
436 return stmt;
437}
438
439static inline const gcond *as_a_const_gcond(const_gimple stmt)
440{
441 return stmt;
442}
443
444static inline gdebug *as_a_gdebug(gimple stmt)
445{
446 return stmt;
447}
448
449static inline const gdebug *as_a_const_gdebug(const_gimple stmt)
450{
451 return stmt;
452}
453
454static inline gphi *as_a_gphi(gimple stmt)
455{
456 return stmt;
457}
458
459static inline const gphi *as_a_const_gphi(const_gimple stmt)
460{
461 return stmt;
462}
463
464static inline greturn *as_a_greturn(gimple stmt)
465{
466 return stmt;
467}
468
469static inline const greturn *as_a_const_greturn(const_gimple stmt)
470{
471 return stmt;
472}
473#endif
474
475#if BUILDING_GCC_VERSION == 4008
476#define NODE_SYMBOL(node) (&(node)->symbol)
477#define NODE_DECL(node) (node)->symbol.decl
478#endif
479
480#if BUILDING_GCC_VERSION >= 4008
481#define add_referenced_var(var)
482#define mark_sym_for_renaming(var)
483#define varpool_mark_needed_node(node)
484#define create_var_ann(var)
485#define TODO_dump_func 0
486#define TODO_dump_cgraph 0
487#endif
488
489#if BUILDING_GCC_VERSION <= 4009
490#define TODO_verify_il 0
491#define AVAIL_INTERPOSABLE AVAIL_OVERWRITABLE
492
493#define section_name_prefix LTO_SECTION_NAME_PREFIX
494#define fatal_error(loc, gmsgid, ...) fatal_error((gmsgid), __VA_ARGS__)
495
496typedef struct rtx_def rtx_insn;
497
498static inline void set_decl_section_name(tree node, const char *value)
499{
500 if (value)
501 DECL_SECTION_NAME(node) = build_string(strlen(value) + 1, value);
502 else
503 DECL_SECTION_NAME(node) = NULL;
504}
505#endif
506
507#if BUILDING_GCC_VERSION == 4009
508typedef struct gimple_statement_asm gasm;
509typedef struct gimple_statement_base gassign;
510typedef struct gimple_statement_call gcall;
511typedef struct gimple_statement_base gcond;
512typedef struct gimple_statement_base gdebug;
513typedef struct gimple_statement_phi gphi;
514typedef struct gimple_statement_base greturn;
515
516static inline gasm *as_a_gasm(gimple stmt)
517{
518 return as_a<gasm>(stmt);
519}
520
521static inline const gasm *as_a_const_gasm(const_gimple stmt)
522{
523 return as_a<const gasm>(stmt);
524}
525
526static inline gassign *as_a_gassign(gimple stmt)
527{
528 return stmt;
529}
530
531static inline const gassign *as_a_const_gassign(const_gimple stmt)
532{
533 return stmt;
534}
535
536static inline gcall *as_a_gcall(gimple stmt)
537{
538 return as_a<gcall>(stmt);
539}
540
541static inline const gcall *as_a_const_gcall(const_gimple stmt)
542{
543 return as_a<const gcall>(stmt);
544}
545
546static inline gcond *as_a_gcond(gimple stmt)
547{
548 return stmt;
549}
550
551static inline const gcond *as_a_const_gcond(const_gimple stmt)
552{
553 return stmt;
554}
555
556static inline gdebug *as_a_gdebug(gimple stmt)
557{
558 return stmt;
559}
560
561static inline const gdebug *as_a_const_gdebug(const_gimple stmt)
562{
563 return stmt;
564}
565
566static inline gphi *as_a_gphi(gimple stmt)
567{
568 return as_a<gphi>(stmt);
569}
570
571static inline const gphi *as_a_const_gphi(const_gimple stmt)
572{
573 return as_a<const gphi>(stmt);
574}
575
576static inline greturn *as_a_greturn(gimple stmt)
577{
578 return stmt;
579}
580
581static inline const greturn *as_a_const_greturn(const_gimple stmt)
582{
583 return stmt;
584}
585#endif
586
587#if BUILDING_GCC_VERSION >= 4009
588#define TODO_ggc_collect 0
589#define NODE_SYMBOL(node) (node)
590#define NODE_DECL(node) (node)->decl
591#define cgraph_node_name(node) (node)->name()
592#define NODE_IMPLICIT_ALIAS(node) (node)->cpp_implicit_alias
593#endif
594
595#if BUILDING_GCC_VERSION >= 5000 && BUILDING_GCC_VERSION < 6000
596/* gimple related */
597template <>
598template <>
599inline bool is_a_helper<const gassign *>::test(const_gimple gs)
600{
601 return gs->code == GIMPLE_ASSIGN;
602}
603#endif
604
605#if BUILDING_GCC_VERSION >= 5000
606#define TODO_verify_ssa TODO_verify_il
607#define TODO_verify_flow TODO_verify_il
608#define TODO_verify_stmts TODO_verify_il
609#define TODO_verify_rtl_sharing TODO_verify_il
610
611#define INSN_DELETED_P(insn) (insn)->deleted()
612
613/* symtab/cgraph related */
614#define debug_cgraph_node(node) (node)->debug()
615#define cgraph_get_node(decl) cgraph_node::get(decl)
616#define cgraph_get_create_node(decl) cgraph_node::get_create(decl)
617#define cgraph_create_node(decl) cgraph_node::create(decl)
618#define cgraph_n_nodes symtab->cgraph_count
619#define cgraph_max_uid symtab->cgraph_max_uid
620#define varpool_get_node(decl) varpool_node::get(decl)
621
622#define cgraph_create_edge(caller, callee, call_stmt, count, freq, nest) \
623 (caller)->create_edge((callee), (call_stmt), (count), (freq))
624#define cgraph_create_edge_including_clones(caller, callee, old_call_stmt, call_stmt, count, freq, nest, reason) \
625 (caller)->create_edge_including_clones((callee), (old_call_stmt), (call_stmt), (count), (freq), (reason))
626
627typedef struct cgraph_node *cgraph_node_ptr;
628typedef struct cgraph_edge *cgraph_edge_p;
629typedef struct varpool_node *varpool_node_ptr;
630
631static inline void change_decl_assembler_name(tree decl, tree name)
632{
633 symtab->change_decl_assembler_name(decl, name);
634}
635
636static inline void varpool_finalize_decl(tree decl)
637{
638 varpool_node::finalize_decl(decl);
639}
640
641static inline void varpool_add_new_variable(tree decl)
642{
643 varpool_node::add(decl);
644}
645
646static inline unsigned int rebuild_cgraph_edges(void)
647{
648 return cgraph_edge::rebuild_edges();
649}
650
651static inline cgraph_node_ptr cgraph_function_node(cgraph_node_ptr node, enum availability *availability)
652{
653 return node->function_symbol(availability);
654}
655
656static inline cgraph_node_ptr cgraph_function_or_thunk_node(cgraph_node_ptr node, enum availability *availability = NULL)
657{
658 return node->ultimate_alias_target(availability);
659}
660
661static inline bool cgraph_only_called_directly_p(cgraph_node_ptr node)
662{
663 return node->only_called_directly_p();
664}
665
666static inline enum availability cgraph_function_body_availability(cgraph_node_ptr node)
667{
668 return node->get_availability();
669}
670
671static inline cgraph_node_ptr cgraph_alias_target(cgraph_node_ptr node)
672{
673 return node->get_alias_target();
674}
675
676static inline struct cgraph_node_hook_list *cgraph_add_function_insertion_hook(cgraph_node_hook hook, void *data)
677{
678 return symtab->add_cgraph_insertion_hook(hook, data);
679}
680
681static inline void cgraph_remove_function_insertion_hook(struct cgraph_node_hook_list *entry)
682{
683 symtab->remove_cgraph_insertion_hook(entry);
684}
685
686static inline struct cgraph_node_hook_list *cgraph_add_node_removal_hook(cgraph_node_hook hook, void *data)
687{
688 return symtab->add_cgraph_removal_hook(hook, data);
689}
690
691static inline void cgraph_remove_node_removal_hook(struct cgraph_node_hook_list *entry)
692{
693 symtab->remove_cgraph_removal_hook(entry);
694}
695
696static inline struct cgraph_2node_hook_list *cgraph_add_node_duplication_hook(cgraph_2node_hook hook, void *data)
697{
698 return symtab->add_cgraph_duplication_hook(hook, data);
699}
700
701static inline void cgraph_remove_node_duplication_hook(struct cgraph_2node_hook_list *entry)
702{
703 symtab->remove_cgraph_duplication_hook(entry);
704}
705
706static inline void cgraph_call_node_duplication_hooks(cgraph_node_ptr node, cgraph_node_ptr node2)
707{
708 symtab->call_cgraph_duplication_hooks(node, node2);
709}
710
711static inline void cgraph_call_edge_duplication_hooks(cgraph_edge *cs1, cgraph_edge *cs2)
712{
713 symtab->call_edge_duplication_hooks(cs1, cs2);
714}
715
716#if BUILDING_GCC_VERSION >= 6000
717typedef gimple *gimple_ptr;
718typedef const gimple *const_gimple_ptr;
719#define gimple gimple_ptr
720#define const_gimple const_gimple_ptr
721#undef CONST_CAST_GIMPLE
722#define CONST_CAST_GIMPLE(X) CONST_CAST(gimple, (X))
723#endif
724
725/* gimple related */
726static inline gimple gimple_build_assign_with_ops(enum tree_code subcode, tree lhs, tree op1, tree op2 MEM_STAT_DECL)
727{
728 return gimple_build_assign(lhs, subcode, op1, op2 PASS_MEM_STAT);
729}
730
731template <>
732template <>
733inline bool is_a_helper<const greturn *>::test(const_gimple gs)
734{
735 return gs->code == GIMPLE_RETURN;
736}
737
738static inline gasm *as_a_gasm(gimple stmt)
739{
740 return as_a<gasm *>(stmt);
741}
742
743static inline const gasm *as_a_const_gasm(const_gimple stmt)
744{
745 return as_a<const gasm *>(stmt);
746}
747
748static inline gassign *as_a_gassign(gimple stmt)
749{
750 return as_a<gassign *>(stmt);
751}
752
753static inline const gassign *as_a_const_gassign(const_gimple stmt)
754{
755 return as_a<const gassign *>(stmt);
756}
757
758static inline gcall *as_a_gcall(gimple stmt)
759{
760 return as_a<gcall *>(stmt);
761}
762
763static inline const gcall *as_a_const_gcall(const_gimple stmt)
764{
765 return as_a<const gcall *>(stmt);
766}
767
768static inline gphi *as_a_gphi(gimple stmt)
769{
770 return as_a<gphi *>(stmt);
771}
772
773static inline const gphi *as_a_const_gphi(const_gimple stmt)
774{
775 return as_a<const gphi *>(stmt);
776}
777
778static inline greturn *as_a_greturn(gimple stmt)
779{
780 return as_a<greturn *>(stmt);
781}
782
783static inline const greturn *as_a_const_greturn(const_gimple stmt)
784{
785 return as_a<const greturn *>(stmt);
786}
787
788/* IPA/LTO related */
789#define ipa_ref_list_referring_iterate(L, I, P) \
790 (L)->referring.iterate((I), &(P))
791#define ipa_ref_list_reference_iterate(L, I, P) \
792 (L)->reference.iterate((I), &(P))
793
794static inline cgraph_node_ptr ipa_ref_referring_node(struct ipa_ref *ref)
795{
796 return dyn_cast<cgraph_node_ptr>(ref->referring);
797}
798
799static inline void ipa_remove_stmt_references(symtab_node *referring_node, gimple stmt)
800{
801 referring_node->remove_stmt_references(stmt);
802}
803#endif
804
805#if BUILDING_GCC_VERSION < 6000
806#define get_inner_reference(exp, pbitsize, pbitpos, poffset, pmode, punsignedp, preversep, pvolatilep, keep_aligning) \
807 get_inner_reference(exp, pbitsize, pbitpos, poffset, pmode, punsignedp, pvolatilep, keep_aligning)
808#define gen_rtx_set(ARG0, ARG1) gen_rtx_SET(VOIDmode, (ARG0), (ARG1))
809#endif
810
811#if BUILDING_GCC_VERSION >= 6000
812#define gen_rtx_set(ARG0, ARG1) gen_rtx_SET((ARG0), (ARG1))
813#endif
814
815#ifdef __cplusplus
816static inline void debug_tree(const_tree t)
817{
818 debug_tree(CONST_CAST_TREE(t));
819}
820
821static inline void debug_gimple_stmt(const_gimple s)
822{
823 debug_gimple_stmt(CONST_CAST_GIMPLE(s));
824}
825#else
826#define debug_tree(t) debug_tree(CONST_CAST_TREE(t))
827#define debug_gimple_stmt(s) debug_gimple_stmt(CONST_CAST_GIMPLE(s))
828#endif
829
830#endif
diff --git a/scripts/gcc-plugins/gcc-generate-gimple-pass.h b/scripts/gcc-plugins/gcc-generate-gimple-pass.h
new file mode 100644
index 000000000000..526c3c79b68e
--- /dev/null
+++ b/scripts/gcc-plugins/gcc-generate-gimple-pass.h
@@ -0,0 +1,175 @@
1/*
2 * Generator for GIMPLE pass related boilerplate code/data
3 *
4 * Supports gcc 4.5-6
5 *
6 * Usage:
7 *
8 * 1. before inclusion define PASS_NAME
9 * 2. before inclusion define NO_* for unimplemented callbacks
10 * NO_GATE
11 * NO_EXECUTE
12 * 3. before inclusion define PROPERTIES_* and TODO_FLAGS_* to override
13 * the default 0 values
14 * 4. for convenience, all the above will be undefined after inclusion!
15 * 5. the only exported name is make_PASS_NAME_pass() to register with gcc
16 */
17
18#ifndef PASS_NAME
19#error at least PASS_NAME must be defined
20#else
21#define __GCC_PLUGIN_STRINGIFY(n) #n
22#define _GCC_PLUGIN_STRINGIFY(n) __GCC_PLUGIN_STRINGIFY(n)
23#define _GCC_PLUGIN_CONCAT2(x, y) x ## y
24#define _GCC_PLUGIN_CONCAT3(x, y, z) x ## y ## z
25
26#define __PASS_NAME_PASS_DATA(n) _GCC_PLUGIN_CONCAT2(n, _pass_data)
27#define _PASS_NAME_PASS_DATA __PASS_NAME_PASS_DATA(PASS_NAME)
28
29#define __PASS_NAME_PASS(n) _GCC_PLUGIN_CONCAT2(n, _pass)
30#define _PASS_NAME_PASS __PASS_NAME_PASS(PASS_NAME)
31
32#define _PASS_NAME_NAME _GCC_PLUGIN_STRINGIFY(PASS_NAME)
33
34#define __MAKE_PASS_NAME_PASS(n) _GCC_PLUGIN_CONCAT3(make_, n, _pass)
35#define _MAKE_PASS_NAME_PASS __MAKE_PASS_NAME_PASS(PASS_NAME)
36
37#ifdef NO_GATE
38#define _GATE NULL
39#define _HAS_GATE false
40#else
41#define __GATE(n) _GCC_PLUGIN_CONCAT2(n, _gate)
42#define _GATE __GATE(PASS_NAME)
43#define _HAS_GATE true
44#endif
45
46#ifdef NO_EXECUTE
47#define _EXECUTE NULL
48#define _HAS_EXECUTE false
49#else
50#define __EXECUTE(n) _GCC_PLUGIN_CONCAT2(n, _execute)
51#define _EXECUTE __EXECUTE(PASS_NAME)
52#define _HAS_EXECUTE true
53#endif
54
55#ifndef PROPERTIES_REQUIRED
56#define PROPERTIES_REQUIRED 0
57#endif
58
59#ifndef PROPERTIES_PROVIDED
60#define PROPERTIES_PROVIDED 0
61#endif
62
63#ifndef PROPERTIES_DESTROYED
64#define PROPERTIES_DESTROYED 0
65#endif
66
67#ifndef TODO_FLAGS_START
68#define TODO_FLAGS_START 0
69#endif
70
71#ifndef TODO_FLAGS_FINISH
72#define TODO_FLAGS_FINISH 0
73#endif
74
75#if BUILDING_GCC_VERSION >= 4009
76namespace {
77static const pass_data _PASS_NAME_PASS_DATA = {
78#else
79static struct gimple_opt_pass _PASS_NAME_PASS = {
80 .pass = {
81#endif
82 .type = GIMPLE_PASS,
83 .name = _PASS_NAME_NAME,
84#if BUILDING_GCC_VERSION >= 4008
85 .optinfo_flags = OPTGROUP_NONE,
86#endif
87#if BUILDING_GCC_VERSION >= 5000
88#elif BUILDING_GCC_VERSION == 4009
89 .has_gate = _HAS_GATE,
90 .has_execute = _HAS_EXECUTE,
91#else
92 .gate = _GATE,
93 .execute = _EXECUTE,
94 .sub = NULL,
95 .next = NULL,
96 .static_pass_number = 0,
97#endif
98 .tv_id = TV_NONE,
99 .properties_required = PROPERTIES_REQUIRED,
100 .properties_provided = PROPERTIES_PROVIDED,
101 .properties_destroyed = PROPERTIES_DESTROYED,
102 .todo_flags_start = TODO_FLAGS_START,
103 .todo_flags_finish = TODO_FLAGS_FINISH,
104#if BUILDING_GCC_VERSION < 4009
105 }
106#endif
107};
108
109#if BUILDING_GCC_VERSION >= 4009
110class _PASS_NAME_PASS : public gimple_opt_pass {
111public:
112 _PASS_NAME_PASS() : gimple_opt_pass(_PASS_NAME_PASS_DATA, g) {}
113
114#ifndef NO_GATE
115#if BUILDING_GCC_VERSION >= 5000
116 virtual bool gate(function *) { return _GATE(); }
117#else
118 virtual bool gate(void) { return _GATE(); }
119#endif
120#endif
121
122 virtual opt_pass * clone () { return new _PASS_NAME_PASS(); }
123
124#ifndef NO_EXECUTE
125#if BUILDING_GCC_VERSION >= 5000
126 virtual unsigned int execute(function *) { return _EXECUTE(); }
127#else
128 virtual unsigned int execute(void) { return _EXECUTE(); }
129#endif
130#endif
131};
132}
133
134opt_pass *_MAKE_PASS_NAME_PASS(void)
135{
136 return new _PASS_NAME_PASS();
137}
138#else
139struct opt_pass *_MAKE_PASS_NAME_PASS(void)
140{
141 return &_PASS_NAME_PASS.pass;
142}
143#endif
144
145/* clean up user provided defines */
146#undef PASS_NAME
147#undef NO_GATE
148#undef NO_EXECUTE
149
150#undef PROPERTIES_DESTROYED
151#undef PROPERTIES_PROVIDED
152#undef PROPERTIES_REQUIRED
153#undef TODO_FLAGS_FINISH
154#undef TODO_FLAGS_START
155
156/* clean up generated defines */
157#undef _EXECUTE
158#undef __EXECUTE
159#undef _GATE
160#undef __GATE
161#undef _GCC_PLUGIN_CONCAT2
162#undef _GCC_PLUGIN_CONCAT3
163#undef _GCC_PLUGIN_STRINGIFY
164#undef __GCC_PLUGIN_STRINGIFY
165#undef _HAS_EXECUTE
166#undef _HAS_GATE
167#undef _MAKE_PASS_NAME_PASS
168#undef __MAKE_PASS_NAME_PASS
169#undef _PASS_NAME_NAME
170#undef _PASS_NAME_PASS
171#undef __PASS_NAME_PASS
172#undef _PASS_NAME_PASS_DATA
173#undef __PASS_NAME_PASS_DATA
174
175#endif /* PASS_NAME */
diff --git a/scripts/gcc-plugins/gcc-generate-ipa-pass.h b/scripts/gcc-plugins/gcc-generate-ipa-pass.h
new file mode 100644
index 000000000000..9bd926e072f0
--- /dev/null
+++ b/scripts/gcc-plugins/gcc-generate-ipa-pass.h
@@ -0,0 +1,289 @@
1/*
2 * Generator for IPA pass related boilerplate code/data
3 *
4 * Supports gcc 4.5-6
5 *
6 * Usage:
7 *
8 * 1. before inclusion define PASS_NAME
9 * 2. before inclusion define NO_* for unimplemented callbacks
10 * NO_GENERATE_SUMMARY
11 * NO_READ_SUMMARY
12 * NO_WRITE_SUMMARY
13 * NO_READ_OPTIMIZATION_SUMMARY
14 * NO_WRITE_OPTIMIZATION_SUMMARY
15 * NO_STMT_FIXUP
16 * NO_FUNCTION_TRANSFORM
17 * NO_VARIABLE_TRANSFORM
18 * NO_GATE
19 * NO_EXECUTE
20 * 3. before inclusion define PROPERTIES_* and *TODO_FLAGS_* to override
21 * the default 0 values
22 * 4. for convenience, all the above will be undefined after inclusion!
23 * 5. the only exported name is make_PASS_NAME_pass() to register with gcc
24 */
25
26#ifndef PASS_NAME
27#error at least PASS_NAME must be defined
28#else
29#define __GCC_PLUGIN_STRINGIFY(n) #n
30#define _GCC_PLUGIN_STRINGIFY(n) __GCC_PLUGIN_STRINGIFY(n)
31#define _GCC_PLUGIN_CONCAT2(x, y) x ## y
32#define _GCC_PLUGIN_CONCAT3(x, y, z) x ## y ## z
33
34#define __PASS_NAME_PASS_DATA(n) _GCC_PLUGIN_CONCAT2(n, _pass_data)
35#define _PASS_NAME_PASS_DATA __PASS_NAME_PASS_DATA(PASS_NAME)
36
37#define __PASS_NAME_PASS(n) _GCC_PLUGIN_CONCAT2(n, _pass)
38#define _PASS_NAME_PASS __PASS_NAME_PASS(PASS_NAME)
39
40#define _PASS_NAME_NAME _GCC_PLUGIN_STRINGIFY(PASS_NAME)
41
42#define __MAKE_PASS_NAME_PASS(n) _GCC_PLUGIN_CONCAT3(make_, n, _pass)
43#define _MAKE_PASS_NAME_PASS __MAKE_PASS_NAME_PASS(PASS_NAME)
44
45#ifdef NO_GENERATE_SUMMARY
46#define _GENERATE_SUMMARY NULL
47#else
48#define __GENERATE_SUMMARY(n) _GCC_PLUGIN_CONCAT2(n, _generate_summary)
49#define _GENERATE_SUMMARY __GENERATE_SUMMARY(PASS_NAME)
50#endif
51
52#ifdef NO_READ_SUMMARY
53#define _READ_SUMMARY NULL
54#else
55#define __READ_SUMMARY(n) _GCC_PLUGIN_CONCAT2(n, _read_summary)
56#define _READ_SUMMARY __READ_SUMMARY(PASS_NAME)
57#endif
58
59#ifdef NO_WRITE_SUMMARY
60#define _WRITE_SUMMARY NULL
61#else
62#define __WRITE_SUMMARY(n) _GCC_PLUGIN_CONCAT2(n, _write_summary)
63#define _WRITE_SUMMARY __WRITE_SUMMARY(PASS_NAME)
64#endif
65
66#ifdef NO_READ_OPTIMIZATION_SUMMARY
67#define _READ_OPTIMIZATION_SUMMARY NULL
68#else
69#define __READ_OPTIMIZATION_SUMMARY(n) _GCC_PLUGIN_CONCAT2(n, _read_optimization_summary)
70#define _READ_OPTIMIZATION_SUMMARY __READ_OPTIMIZATION_SUMMARY(PASS_NAME)
71#endif
72
73#ifdef NO_WRITE_OPTIMIZATION_SUMMARY
74#define _WRITE_OPTIMIZATION_SUMMARY NULL
75#else
76#define __WRITE_OPTIMIZATION_SUMMARY(n) _GCC_PLUGIN_CONCAT2(n, _write_optimization_summary)
77#define _WRITE_OPTIMIZATION_SUMMARY __WRITE_OPTIMIZATION_SUMMARY(PASS_NAME)
78#endif
79
80#ifdef NO_STMT_FIXUP
81#define _STMT_FIXUP NULL
82#else
83#define __STMT_FIXUP(n) _GCC_PLUGIN_CONCAT2(n, _stmt_fixup)
84#define _STMT_FIXUP __STMT_FIXUP(PASS_NAME)
85#endif
86
87#ifdef NO_FUNCTION_TRANSFORM
88#define _FUNCTION_TRANSFORM NULL
89#else
90#define __FUNCTION_TRANSFORM(n) _GCC_PLUGIN_CONCAT2(n, _function_transform)
91#define _FUNCTION_TRANSFORM __FUNCTION_TRANSFORM(PASS_NAME)
92#endif
93
94#ifdef NO_VARIABLE_TRANSFORM
95#define _VARIABLE_TRANSFORM NULL
96#else
97#define __VARIABLE_TRANSFORM(n) _GCC_PLUGIN_CONCAT2(n, _variable_transform)
98#define _VARIABLE_TRANSFORM __VARIABLE_TRANSFORM(PASS_NAME)
99#endif
100
101#ifdef NO_GATE
102#define _GATE NULL
103#define _HAS_GATE false
104#else
105#define __GATE(n) _GCC_PLUGIN_CONCAT2(n, _gate)
106#define _GATE __GATE(PASS_NAME)
107#define _HAS_GATE true
108#endif
109
110#ifdef NO_EXECUTE
111#define _EXECUTE NULL
112#define _HAS_EXECUTE false
113#else
114#define __EXECUTE(n) _GCC_PLUGIN_CONCAT2(n, _execute)
115#define _EXECUTE __EXECUTE(PASS_NAME)
116#define _HAS_EXECUTE true
117#endif
118
119#ifndef PROPERTIES_REQUIRED
120#define PROPERTIES_REQUIRED 0
121#endif
122
123#ifndef PROPERTIES_PROVIDED
124#define PROPERTIES_PROVIDED 0
125#endif
126
127#ifndef PROPERTIES_DESTROYED
128#define PROPERTIES_DESTROYED 0
129#endif
130
131#ifndef TODO_FLAGS_START
132#define TODO_FLAGS_START 0
133#endif
134
135#ifndef TODO_FLAGS_FINISH
136#define TODO_FLAGS_FINISH 0
137#endif
138
139#ifndef FUNCTION_TRANSFORM_TODO_FLAGS_START
140#define FUNCTION_TRANSFORM_TODO_FLAGS_START 0
141#endif
142
143#if BUILDING_GCC_VERSION >= 4009
144namespace {
145static const pass_data _PASS_NAME_PASS_DATA = {
146#else
147static struct ipa_opt_pass_d _PASS_NAME_PASS = {
148 .pass = {
149#endif
150 .type = IPA_PASS,
151 .name = _PASS_NAME_NAME,
152#if BUILDING_GCC_VERSION >= 4008
153 .optinfo_flags = OPTGROUP_NONE,
154#endif
155#if BUILDING_GCC_VERSION >= 5000
156#elif BUILDING_GCC_VERSION == 4009
157 .has_gate = _HAS_GATE,
158 .has_execute = _HAS_EXECUTE,
159#else
160 .gate = _GATE,
161 .execute = _EXECUTE,
162 .sub = NULL,
163 .next = NULL,
164 .static_pass_number = 0,
165#endif
166 .tv_id = TV_NONE,
167 .properties_required = PROPERTIES_REQUIRED,
168 .properties_provided = PROPERTIES_PROVIDED,
169 .properties_destroyed = PROPERTIES_DESTROYED,
170 .todo_flags_start = TODO_FLAGS_START,
171 .todo_flags_finish = TODO_FLAGS_FINISH,
172#if BUILDING_GCC_VERSION < 4009
173 },
174 .generate_summary = _GENERATE_SUMMARY,
175 .write_summary = _WRITE_SUMMARY,
176 .read_summary = _READ_SUMMARY,
177#if BUILDING_GCC_VERSION >= 4006
178 .write_optimization_summary = _WRITE_OPTIMIZATION_SUMMARY,
179 .read_optimization_summary = _READ_OPTIMIZATION_SUMMARY,
180#endif
181 .stmt_fixup = _STMT_FIXUP,
182 .function_transform_todo_flags_start = FUNCTION_TRANSFORM_TODO_FLAGS_START,
183 .function_transform = _FUNCTION_TRANSFORM,
184 .variable_transform = _VARIABLE_TRANSFORM,
185#endif
186};
187
188#if BUILDING_GCC_VERSION >= 4009
189class _PASS_NAME_PASS : public ipa_opt_pass_d {
190public:
191 _PASS_NAME_PASS() : ipa_opt_pass_d(_PASS_NAME_PASS_DATA,
192 g,
193 _GENERATE_SUMMARY,
194 _WRITE_SUMMARY,
195 _READ_SUMMARY,
196 _WRITE_OPTIMIZATION_SUMMARY,
197 _READ_OPTIMIZATION_SUMMARY,
198 _STMT_FIXUP,
199 FUNCTION_TRANSFORM_TODO_FLAGS_START,
200 _FUNCTION_TRANSFORM,
201 _VARIABLE_TRANSFORM) {}
202
203#ifndef NO_GATE
204#if BUILDING_GCC_VERSION >= 5000
205 virtual bool gate(function *) { return _GATE(); }
206#else
207 virtual bool gate(void) { return _GATE(); }
208#endif
209#endif
210
211 virtual opt_pass *clone() { return new _PASS_NAME_PASS(); }
212
213#ifndef NO_EXECUTE
214#if BUILDING_GCC_VERSION >= 5000
215 virtual unsigned int execute(function *) { return _EXECUTE(); }
216#else
217 virtual unsigned int execute(void) { return _EXECUTE(); }
218#endif
219#endif
220};
221}
222
223opt_pass *_MAKE_PASS_NAME_PASS(void)
224{
225 return new _PASS_NAME_PASS();
226}
227#else
228struct opt_pass *_MAKE_PASS_NAME_PASS(void)
229{
230 return &_PASS_NAME_PASS.pass;
231}
232#endif
233
234/* clean up user provided defines */
235#undef PASS_NAME
236#undef NO_GENERATE_SUMMARY
237#undef NO_WRITE_SUMMARY
238#undef NO_READ_SUMMARY
239#undef NO_WRITE_OPTIMIZATION_SUMMARY
240#undef NO_READ_OPTIMIZATION_SUMMARY
241#undef NO_STMT_FIXUP
242#undef NO_FUNCTION_TRANSFORM
243#undef NO_VARIABLE_TRANSFORM
244#undef NO_GATE
245#undef NO_EXECUTE
246
247#undef FUNCTION_TRANSFORM_TODO_FLAGS_START
248#undef PROPERTIES_DESTROYED
249#undef PROPERTIES_PROVIDED
250#undef PROPERTIES_REQUIRED
251#undef TODO_FLAGS_FINISH
252#undef TODO_FLAGS_START
253
254/* clean up generated defines */
255#undef _EXECUTE
256#undef __EXECUTE
257#undef _FUNCTION_TRANSFORM
258#undef __FUNCTION_TRANSFORM
259#undef _GATE
260#undef __GATE
261#undef _GCC_PLUGIN_CONCAT2
262#undef _GCC_PLUGIN_CONCAT3
263#undef _GCC_PLUGIN_STRINGIFY
264#undef __GCC_PLUGIN_STRINGIFY
265#undef _GENERATE_SUMMARY
266#undef __GENERATE_SUMMARY
267#undef _HAS_EXECUTE
268#undef _HAS_GATE
269#undef _MAKE_PASS_NAME_PASS
270#undef __MAKE_PASS_NAME_PASS
271#undef _PASS_NAME_NAME
272#undef _PASS_NAME_PASS
273#undef __PASS_NAME_PASS
274#undef _PASS_NAME_PASS_DATA
275#undef __PASS_NAME_PASS_DATA
276#undef _READ_OPTIMIZATION_SUMMARY
277#undef __READ_OPTIMIZATION_SUMMARY
278#undef _READ_SUMMARY
279#undef __READ_SUMMARY
280#undef _STMT_FIXUP
281#undef __STMT_FIXUP
282#undef _VARIABLE_TRANSFORM
283#undef __VARIABLE_TRANSFORM
284#undef _WRITE_OPTIMIZATION_SUMMARY
285#undef __WRITE_OPTIMIZATION_SUMMARY
286#undef _WRITE_SUMMARY
287#undef __WRITE_SUMMARY
288
289#endif /* PASS_NAME */
diff --git a/scripts/gcc-plugins/gcc-generate-rtl-pass.h b/scripts/gcc-plugins/gcc-generate-rtl-pass.h
new file mode 100644
index 000000000000..1dc67a5aeadf
--- /dev/null
+++ b/scripts/gcc-plugins/gcc-generate-rtl-pass.h
@@ -0,0 +1,175 @@
1/*
2 * Generator for RTL pass related boilerplate code/data
3 *
4 * Supports gcc 4.5-6
5 *
6 * Usage:
7 *
8 * 1. before inclusion define PASS_NAME
9 * 2. before inclusion define NO_* for unimplemented callbacks
10 * NO_GATE
11 * NO_EXECUTE
12 * 3. before inclusion define PROPERTIES_* and TODO_FLAGS_* to override
13 * the default 0 values
14 * 4. for convenience, all the above will be undefined after inclusion!
15 * 5. the only exported name is make_PASS_NAME_pass() to register with gcc
16 */
17
18#ifndef PASS_NAME
19#error at least PASS_NAME must be defined
20#else
21#define __GCC_PLUGIN_STRINGIFY(n) #n
22#define _GCC_PLUGIN_STRINGIFY(n) __GCC_PLUGIN_STRINGIFY(n)
23#define _GCC_PLUGIN_CONCAT2(x, y) x ## y
24#define _GCC_PLUGIN_CONCAT3(x, y, z) x ## y ## z
25
26#define __PASS_NAME_PASS_DATA(n) _GCC_PLUGIN_CONCAT2(n, _pass_data)
27#define _PASS_NAME_PASS_DATA __PASS_NAME_PASS_DATA(PASS_NAME)
28
29#define __PASS_NAME_PASS(n) _GCC_PLUGIN_CONCAT2(n, _pass)
30#define _PASS_NAME_PASS __PASS_NAME_PASS(PASS_NAME)
31
32#define _PASS_NAME_NAME _GCC_PLUGIN_STRINGIFY(PASS_NAME)
33
34#define __MAKE_PASS_NAME_PASS(n) _GCC_PLUGIN_CONCAT3(make_, n, _pass)
35#define _MAKE_PASS_NAME_PASS __MAKE_PASS_NAME_PASS(PASS_NAME)
36
37#ifdef NO_GATE
38#define _GATE NULL
39#define _HAS_GATE false
40#else
41#define __GATE(n) _GCC_PLUGIN_CONCAT2(n, _gate)
42#define _GATE __GATE(PASS_NAME)
43#define _HAS_GATE true
44#endif
45
46#ifdef NO_EXECUTE
47#define _EXECUTE NULL
48#define _HAS_EXECUTE false
49#else
50#define __EXECUTE(n) _GCC_PLUGIN_CONCAT2(n, _execute)
51#define _EXECUTE __EXECUTE(PASS_NAME)
52#define _HAS_EXECUTE true
53#endif
54
55#ifndef PROPERTIES_REQUIRED
56#define PROPERTIES_REQUIRED 0
57#endif
58
59#ifndef PROPERTIES_PROVIDED
60#define PROPERTIES_PROVIDED 0
61#endif
62
63#ifndef PROPERTIES_DESTROYED
64#define PROPERTIES_DESTROYED 0
65#endif
66
67#ifndef TODO_FLAGS_START
68#define TODO_FLAGS_START 0
69#endif
70
71#ifndef TODO_FLAGS_FINISH
72#define TODO_FLAGS_FINISH 0
73#endif
74
75#if BUILDING_GCC_VERSION >= 4009
76namespace {
77static const pass_data _PASS_NAME_PASS_DATA = {
78#else
79static struct rtl_opt_pass _PASS_NAME_PASS = {
80 .pass = {
81#endif
82 .type = RTL_PASS,
83 .name = _PASS_NAME_NAME,
84#if BUILDING_GCC_VERSION >= 4008
85 .optinfo_flags = OPTGROUP_NONE,
86#endif
87#if BUILDING_GCC_VERSION >= 5000
88#elif BUILDING_GCC_VERSION == 4009
89 .has_gate = _HAS_GATE,
90 .has_execute = _HAS_EXECUTE,
91#else
92 .gate = _GATE,
93 .execute = _EXECUTE,
94 .sub = NULL,
95 .next = NULL,
96 .static_pass_number = 0,
97#endif
98 .tv_id = TV_NONE,
99 .properties_required = PROPERTIES_REQUIRED,
100 .properties_provided = PROPERTIES_PROVIDED,
101 .properties_destroyed = PROPERTIES_DESTROYED,
102 .todo_flags_start = TODO_FLAGS_START,
103 .todo_flags_finish = TODO_FLAGS_FINISH,
104#if BUILDING_GCC_VERSION < 4009
105 }
106#endif
107};
108
109#if BUILDING_GCC_VERSION >= 4009
110class _PASS_NAME_PASS : public rtl_opt_pass {
111public:
112 _PASS_NAME_PASS() : rtl_opt_pass(_PASS_NAME_PASS_DATA, g) {}
113
114#ifndef NO_GATE
115#if BUILDING_GCC_VERSION >= 5000
116 virtual bool gate(function *) { return _GATE(); }
117#else
118 virtual bool gate(void) { return _GATE(); }
119#endif
120#endif
121
122 virtual opt_pass *clone() { return new _PASS_NAME_PASS(); }
123
124#ifndef NO_EXECUTE
125#if BUILDING_GCC_VERSION >= 5000
126 virtual unsigned int execute(function *) { return _EXECUTE(); }
127#else
128 virtual unsigned int execute(void) { return _EXECUTE(); }
129#endif
130#endif
131};
132}
133
134opt_pass *_MAKE_PASS_NAME_PASS(void)
135{
136 return new _PASS_NAME_PASS();
137}
138#else
139struct opt_pass *_MAKE_PASS_NAME_PASS(void)
140{
141 return &_PASS_NAME_PASS.pass;
142}
143#endif
144
145/* clean up user provided defines */
146#undef PASS_NAME
147#undef NO_GATE
148#undef NO_EXECUTE
149
150#undef PROPERTIES_DESTROYED
151#undef PROPERTIES_PROVIDED
152#undef PROPERTIES_REQUIRED
153#undef TODO_FLAGS_FINISH
154#undef TODO_FLAGS_START
155
156/* clean up generated defines */
157#undef _EXECUTE
158#undef __EXECUTE
159#undef _GATE
160#undef __GATE
161#undef _GCC_PLUGIN_CONCAT2
162#undef _GCC_PLUGIN_CONCAT3
163#undef _GCC_PLUGIN_STRINGIFY
164#undef __GCC_PLUGIN_STRINGIFY
165#undef _HAS_EXECUTE
166#undef _HAS_GATE
167#undef _MAKE_PASS_NAME_PASS
168#undef __MAKE_PASS_NAME_PASS
169#undef _PASS_NAME_NAME
170#undef _PASS_NAME_PASS
171#undef __PASS_NAME_PASS
172#undef _PASS_NAME_PASS_DATA
173#undef __PASS_NAME_PASS_DATA
174
175#endif /* PASS_NAME */
diff --git a/scripts/gcc-plugins/gcc-generate-simple_ipa-pass.h b/scripts/gcc-plugins/gcc-generate-simple_ipa-pass.h
new file mode 100644
index 000000000000..a27e2b36afaa
--- /dev/null
+++ b/scripts/gcc-plugins/gcc-generate-simple_ipa-pass.h
@@ -0,0 +1,175 @@
1/*
2 * Generator for SIMPLE_IPA pass related boilerplate code/data
3 *
4 * Supports gcc 4.5-6
5 *
6 * Usage:
7 *
8 * 1. before inclusion define PASS_NAME
9 * 2. before inclusion define NO_* for unimplemented callbacks
10 * NO_GATE
11 * NO_EXECUTE
12 * 3. before inclusion define PROPERTIES_* and TODO_FLAGS_* to override
13 * the default 0 values
14 * 4. for convenience, all the above will be undefined after inclusion!
15 * 5. the only exported name is make_PASS_NAME_pass() to register with gcc
16 */
17
18#ifndef PASS_NAME
19#error at least PASS_NAME must be defined
20#else
21#define __GCC_PLUGIN_STRINGIFY(n) #n
22#define _GCC_PLUGIN_STRINGIFY(n) __GCC_PLUGIN_STRINGIFY(n)
23#define _GCC_PLUGIN_CONCAT2(x, y) x ## y
24#define _GCC_PLUGIN_CONCAT3(x, y, z) x ## y ## z
25
26#define __PASS_NAME_PASS_DATA(n) _GCC_PLUGIN_CONCAT2(n, _pass_data)
27#define _PASS_NAME_PASS_DATA __PASS_NAME_PASS_DATA(PASS_NAME)
28
29#define __PASS_NAME_PASS(n) _GCC_PLUGIN_CONCAT2(n, _pass)
30#define _PASS_NAME_PASS __PASS_NAME_PASS(PASS_NAME)
31
32#define _PASS_NAME_NAME _GCC_PLUGIN_STRINGIFY(PASS_NAME)
33
34#define __MAKE_PASS_NAME_PASS(n) _GCC_PLUGIN_CONCAT3(make_, n, _pass)
35#define _MAKE_PASS_NAME_PASS __MAKE_PASS_NAME_PASS(PASS_NAME)
36
37#ifdef NO_GATE
38#define _GATE NULL
39#define _HAS_GATE false
40#else
41#define __GATE(n) _GCC_PLUGIN_CONCAT2(n, _gate)
42#define _GATE __GATE(PASS_NAME)
43#define _HAS_GATE true
44#endif
45
46#ifdef NO_EXECUTE
47#define _EXECUTE NULL
48#define _HAS_EXECUTE false
49#else
50#define __EXECUTE(n) _GCC_PLUGIN_CONCAT2(n, _execute)
51#define _EXECUTE __EXECUTE(PASS_NAME)
52#define _HAS_EXECUTE true
53#endif
54
55#ifndef PROPERTIES_REQUIRED
56#define PROPERTIES_REQUIRED 0
57#endif
58
59#ifndef PROPERTIES_PROVIDED
60#define PROPERTIES_PROVIDED 0
61#endif
62
63#ifndef PROPERTIES_DESTROYED
64#define PROPERTIES_DESTROYED 0
65#endif
66
67#ifndef TODO_FLAGS_START
68#define TODO_FLAGS_START 0
69#endif
70
71#ifndef TODO_FLAGS_FINISH
72#define TODO_FLAGS_FINISH 0
73#endif
74
75#if BUILDING_GCC_VERSION >= 4009
76namespace {
77static const pass_data _PASS_NAME_PASS_DATA = {
78#else
79static struct simple_ipa_opt_pass _PASS_NAME_PASS = {
80 .pass = {
81#endif
82 .type = SIMPLE_IPA_PASS,
83 .name = _PASS_NAME_NAME,
84#if BUILDING_GCC_VERSION >= 4008
85 .optinfo_flags = OPTGROUP_NONE,
86#endif
87#if BUILDING_GCC_VERSION >= 5000
88#elif BUILDING_GCC_VERSION == 4009
89 .has_gate = _HAS_GATE,
90 .has_execute = _HAS_EXECUTE,
91#else
92 .gate = _GATE,
93 .execute = _EXECUTE,
94 .sub = NULL,
95 .next = NULL,
96 .static_pass_number = 0,
97#endif
98 .tv_id = TV_NONE,
99 .properties_required = PROPERTIES_REQUIRED,
100 .properties_provided = PROPERTIES_PROVIDED,
101 .properties_destroyed = PROPERTIES_DESTROYED,
102 .todo_flags_start = TODO_FLAGS_START,
103 .todo_flags_finish = TODO_FLAGS_FINISH,
104#if BUILDING_GCC_VERSION < 4009
105 }
106#endif
107};
108
109#if BUILDING_GCC_VERSION >= 4009
110class _PASS_NAME_PASS : public simple_ipa_opt_pass {
111public:
112 _PASS_NAME_PASS() : simple_ipa_opt_pass(_PASS_NAME_PASS_DATA, g) {}
113
114#ifndef NO_GATE
115#if BUILDING_GCC_VERSION >= 5000
116 virtual bool gate(function *) { return _GATE(); }
117#else
118 virtual bool gate(void) { return _GATE(); }
119#endif
120#endif
121
122 virtual opt_pass *clone() { return new _PASS_NAME_PASS(); }
123
124#ifndef NO_EXECUTE
125#if BUILDING_GCC_VERSION >= 5000
126 virtual unsigned int execute(function *) { return _EXECUTE(); }
127#else
128 virtual unsigned int execute(void) { return _EXECUTE(); }
129#endif
130#endif
131};
132}
133
134opt_pass *_MAKE_PASS_NAME_PASS(void)
135{
136 return new _PASS_NAME_PASS();
137}
138#else
139struct opt_pass *_MAKE_PASS_NAME_PASS(void)
140{
141 return &_PASS_NAME_PASS.pass;
142}
143#endif
144
145/* clean up user provided defines */
146#undef PASS_NAME
147#undef NO_GATE
148#undef NO_EXECUTE
149
150#undef PROPERTIES_DESTROYED
151#undef PROPERTIES_PROVIDED
152#undef PROPERTIES_REQUIRED
153#undef TODO_FLAGS_FINISH
154#undef TODO_FLAGS_START
155
156/* clean up generated defines */
157#undef _EXECUTE
158#undef __EXECUTE
159#undef _GATE
160#undef __GATE
161#undef _GCC_PLUGIN_CONCAT2
162#undef _GCC_PLUGIN_CONCAT3
163#undef _GCC_PLUGIN_STRINGIFY
164#undef __GCC_PLUGIN_STRINGIFY
165#undef _HAS_EXECUTE
166#undef _HAS_GATE
167#undef _MAKE_PASS_NAME_PASS
168#undef __MAKE_PASS_NAME_PASS
169#undef _PASS_NAME_NAME
170#undef _PASS_NAME_PASS
171#undef __PASS_NAME_PASS
172#undef _PASS_NAME_PASS_DATA
173#undef __PASS_NAME_PASS_DATA
174
175#endif /* PASS_NAME */
diff --git a/scripts/link-vmlinux.sh b/scripts/link-vmlinux.sh
index f0f6d9d75435..4f727eb5ec43 100755
--- a/scripts/link-vmlinux.sh
+++ b/scripts/link-vmlinux.sh
@@ -180,7 +180,7 @@ else
180fi; 180fi;
181 181
182# final build of init/ 182# final build of init/
183${MAKE} -f "${srctree}/scripts/Makefile.build" obj=init 183${MAKE} -f "${srctree}/scripts/Makefile.build" obj=init GCC_PLUGINS_CFLAGS="${GCC_PLUGINS_CFLAGS}"
184 184
185kallsymso="" 185kallsymso=""
186kallsyms_vmlinux="" 186kallsyms_vmlinux=""
diff --git a/scripts/package/builddeb b/scripts/package/builddeb
index 86e56fef7473..4d4418a8d54d 100755
--- a/scripts/package/builddeb
+++ b/scripts/package/builddeb
@@ -329,6 +329,7 @@ fi
329(cd $srctree; find arch/$SRCARCH -name module.lds -o -name Kbuild.platforms -o -name Platform) >> "$objtree/debian/hdrsrcfiles" 329(cd $srctree; find arch/$SRCARCH -name module.lds -o -name Kbuild.platforms -o -name Platform) >> "$objtree/debian/hdrsrcfiles"
330(cd $srctree; find $(find arch/$SRCARCH -name include -o -name scripts -type d) -type f) >> "$objtree/debian/hdrsrcfiles" 330(cd $srctree; find $(find arch/$SRCARCH -name include -o -name scripts -type d) -type f) >> "$objtree/debian/hdrsrcfiles"
331(cd $objtree; find arch/$SRCARCH/include Module.symvers include scripts -type f) >> "$objtree/debian/hdrobjfiles" 331(cd $objtree; find arch/$SRCARCH/include Module.symvers include scripts -type f) >> "$objtree/debian/hdrobjfiles"
332(cd $objtree; find scripts/gcc-plugins -name \*.so -o -name gcc-common.h) >> "$objtree/debian/hdrobjfiles"
332destdir=$kernel_headers_dir/usr/src/linux-headers-$version 333destdir=$kernel_headers_dir/usr/src/linux-headers-$version
333mkdir -p "$destdir" 334mkdir -p "$destdir"
334(cd $srctree; tar -c -f - -T -) < "$objtree/debian/hdrsrcfiles" | (cd $destdir; tar -xf -) 335(cd $srctree; tar -c -f - -T -) < "$objtree/debian/hdrsrcfiles" | (cd $destdir; tar -xf -)