HomeSort by: relevance | last modified time | path
    Searched defs:cfg_hooks (Results 1 - 4 of 4) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/
cfghooks.h 75 struct cfg_hooks struct
277 extern struct cfg_hooks gimple_cfg_hooks;
278 extern struct cfg_hooks rtl_cfg_hooks;
279 extern struct cfg_hooks cfg_layout_rtl_cfg_hooks;
286 extern struct cfg_hooks get_cfg_hooks (void);
287 extern void set_cfg_hooks (struct cfg_hooks);
cfghooks.cc 45 static struct cfg_hooks *cfg_hooks; variable in typeref:struct:cfg_hooks
51 cfg_hooks = &rtl_cfg_hooks;
58 cfg_hooks = &cfg_layout_rtl_cfg_hooks;
66 cfg_hooks = &gimple_cfg_hooks;
69 struct cfg_hooks
72 return *cfg_hooks;
76 set_cfg_hooks (struct cfg_hooks new_cfg_hooks)
78 *cfg_hooks = new_cfg_hooks;
86 if (cfg_hooks == &gimple_cfg_hooks
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
cfghooks.h 75 struct cfg_hooks struct
277 extern struct cfg_hooks gimple_cfg_hooks;
278 extern struct cfg_hooks rtl_cfg_hooks;
279 extern struct cfg_hooks cfg_layout_rtl_cfg_hooks;
286 extern struct cfg_hooks get_cfg_hooks (void);
287 extern void set_cfg_hooks (struct cfg_hooks);
cfghooks.cc 45 static struct cfg_hooks *cfg_hooks; variable in typeref:struct:cfg_hooks
51 cfg_hooks = &rtl_cfg_hooks;
58 cfg_hooks = &cfg_layout_rtl_cfg_hooks;
66 cfg_hooks = &gimple_cfg_hooks;
69 struct cfg_hooks
72 return *cfg_hooks;
76 set_cfg_hooks (struct cfg_hooks new_cfg_hooks)
78 *cfg_hooks = new_cfg_hooks;
86 if (cfg_hooks == &gimple_cfg_hooks
    [all...]

Completed in 67 milliseconds