aboutsummaryrefslogtreecommitdiff
path: root/gcc/output.h
diff options
context:
space:
mode:
authorJames Greenhalgh <james.greenhalgh@arm.com>2016-12-07 14:01:59 +0000
committerJames Greenhalgh <jgreenhalgh@gcc.gnu.org>2016-12-07 14:01:59 +0000
commitda88ea0265af5c877429a0c096cfdc0d4b3fecaa (patch)
tree624f3840e340fb87117f70858530e01dbb84bc36 /gcc/output.h
parent716c5aced1f3e998df4a5d78eba4e090a332acee (diff)
downloadgcc-da88ea0265af5c877429a0c096cfdc0d4b3fecaa.zip
gcc-da88ea0265af5c877429a0c096cfdc0d4b3fecaa.tar.gz
gcc-da88ea0265af5c877429a0c096cfdc0d4b3fecaa.tar.bz2
[Patch PR78561 PowerPC] Revert to old behaviour for counting constant pools
gcc/ PR rtl-optimization/78561 * config/rs6000/rs6000.c (rs6000_reg_live_or_pic_offset_p) Use constant_pool_empty_p in place of get_pool_size_upper_bound. (rs6000_stack_info): Likewise. (rs6000_emit_prologue): Likewise. (rs6000_elf_declare_function_name): Likewise. (rs6000_set_up_by_prologue): Likewise. (rs6000_can_eliminate): Likewise. * output.h (get_pool_size_upper_bound): Delete. (constant_pool_empty_p): New. * varasm.c (get_pool_size_upper_bound): Delete (constant_pool_empty_p): New. From-SVN: r243345
Diffstat (limited to 'gcc/output.h')
-rw-r--r--gcc/output.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/gcc/output.h b/gcc/output.h
index 7186dc1..6c99381 100644
--- a/gcc/output.h
+++ b/gcc/output.h
@@ -287,11 +287,10 @@ extern void assemble_real (REAL_VALUE_TYPE, machine_mode, unsigned,
/* Write the address of the entity given by SYMBOL to SEC. */
extern void assemble_addr_to_section (rtx, section *);
-/* Return the maximum size of the constant pool. This may be larger
- than the final size of the constant pool, as entries may be added to
- the constant pool which become unreferenced, or otherwise not need
- output by the time we actually emit the pool. */
-extern int get_pool_size_upper_bound (void);
+/* Return TRUE if and only if the constant pool has no entries. Note
+ that even entries we might end up choosing not to emit are counted
+ here, so there is the potential for missed optimizations. */
+extern bool constant_pool_empty_p (void);
extern rtx_insn *peephole (rtx_insn *);