Home
last modified time | relevance | path

Searched refs:_PASS_NAME_PASS (Results 1 – 4 of 4) sorted by relevance

/Linux-v4.19/scripts/gcc-plugins/
Dgcc-generate-simple_ipa-pass.h31 #define _PASS_NAME_PASS __PASS_NAME_PASS(PASS_NAME) macro
80 static struct simple_ipa_opt_pass _PASS_NAME_PASS = {
111 class _PASS_NAME_PASS : public simple_ipa_opt_pass {
113 _PASS_NAME_PASS() : simple_ipa_opt_pass(_PASS_NAME_PASS_DATA, g) {}
123 virtual opt_pass *clone() { return new _PASS_NAME_PASS(); }
137 return new _PASS_NAME_PASS();
142 return &_PASS_NAME_PASS.pass;
171 #undef _PASS_NAME_PASS
Dgcc-generate-gimple-pass.h31 #define _PASS_NAME_PASS __PASS_NAME_PASS(PASS_NAME) macro
80 static struct gimple_opt_pass _PASS_NAME_PASS = {
111 class _PASS_NAME_PASS : public gimple_opt_pass {
113 _PASS_NAME_PASS() : gimple_opt_pass(_PASS_NAME_PASS_DATA, g) {}
123 virtual opt_pass * clone () { return new _PASS_NAME_PASS(); }
137 return new _PASS_NAME_PASS();
142 return &_PASS_NAME_PASS.pass;
171 #undef _PASS_NAME_PASS
Dgcc-generate-rtl-pass.h31 #define _PASS_NAME_PASS __PASS_NAME_PASS(PASS_NAME) macro
80 static struct rtl_opt_pass _PASS_NAME_PASS = {
111 class _PASS_NAME_PASS : public rtl_opt_pass {
113 _PASS_NAME_PASS() : rtl_opt_pass(_PASS_NAME_PASS_DATA, g) {}
123 virtual opt_pass *clone() { return new _PASS_NAME_PASS(); }
137 return new _PASS_NAME_PASS();
142 return &_PASS_NAME_PASS.pass;
171 #undef _PASS_NAME_PASS
Dgcc-generate-ipa-pass.h39 #define _PASS_NAME_PASS __PASS_NAME_PASS(PASS_NAME) macro
148 static struct ipa_opt_pass_d _PASS_NAME_PASS = {
190 class _PASS_NAME_PASS : public ipa_opt_pass_d {
192 _PASS_NAME_PASS() : ipa_opt_pass_d(_PASS_NAME_PASS_DATA,
212 virtual opt_pass *clone() { return new _PASS_NAME_PASS(); }
226 return new _PASS_NAME_PASS();
231 return &_PASS_NAME_PASS.pass;
273 #undef _PASS_NAME_PASS