diff options
author | Martin Jambor <mjambor@suse.cz> | 2009-06-10 18:43:24 +0200 |
---|---|---|
committer | Martin Jambor <jamborm@gcc.gnu.org> | 2009-06-10 18:43:24 +0200 |
commit | a550d677f52207d3620443399e37fd8caff18b5e (patch) | |
tree | 90cc0fca074e90dc760793f98ca919ecb2a337a6 /gcc/cgraph.c | |
parent | d8259b07b049c309339c8b1fde4c6ac3ff886cc3 (diff) | |
download | gcc-a550d677f52207d3620443399e37fd8caff18b5e.zip gcc-a550d677f52207d3620443399e37fd8caff18b5e.tar.gz gcc-a550d677f52207d3620443399e37fd8caff18b5e.tar.bz2 |
cgraph.c (cgraph_node_can_be_local_p): New function.
2009-06-10 Martin Jambor <mjambor@suse.cz>
* cgraph.c (cgraph_node_can_be_local_p): New function.
(cgraph_make_node_local): New function.
* cgraph.h (cgraph_node_can_be_local_p): Declare.
(cgraph_make_node_local): Declare.
From-SVN: r148349
Diffstat (limited to 'gcc/cgraph.c')
-rw-r--r-- | gcc/cgraph.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gcc/cgraph.c b/gcc/cgraph.c index 53475d1..640d180 100644 --- a/gcc/cgraph.c +++ b/gcc/cgraph.c @@ -1871,4 +1871,32 @@ cgraph_add_new_function (tree fndecl, bool lowered) } } +/* Return true if NODE can be made local for API change. + Extern inline functions and C++ COMDAT functions can be made local + at the expense of possible code size growth if function is used in multiple + compilation units. */ +bool +cgraph_node_can_be_local_p (struct cgraph_node *node) +{ + return !node->needed; +} + +/* Bring NODE local. */ +void +cgraph_make_node_local (struct cgraph_node *node) +{ + gcc_assert (cgraph_node_can_be_local_p (node)); + if (DECL_COMDAT (node->decl) || DECL_EXTERNAL (node->decl)) + { + DECL_COMDAT (node->decl) = 0; + DECL_ONE_ONLY (node->decl) = 0; + TREE_PUBLIC (node->decl) = 0; + DECL_WEAK (node->decl) = 0; + DECL_EXTERNAL (node->decl) = 0; + node->local.externally_visible = false; + node->local.local = true; + gcc_assert (cgraph_function_body_availability (node) == AVAIL_LOCAL); + } +} + #include "gt-cgraph.h" |