aboutsummaryrefslogtreecommitdiff
path: root/gcc/lto/ChangeLog
diff options
context:
space:
mode:
authorHrishikesh Kulkarni <hrishikeshparag@gmail.com>2019-05-06 07:23:25 +0000
committerMartin Liska <mliska@suse.cz>2019-05-06 07:23:25 +0000
commit06db9979a2997daa94c92c9829947ee4c53aa84a (patch)
treefab164b40d0f06c1e3b883ed151202724aa28fd7 /gcc/lto/ChangeLog
parent78f6dbcb5640a4d2251af25f42cfb14c9c142c93 (diff)
Add lto-dump tool.
2019-05-06 Hrishikesh Kulkarni <hrishikeshparag@gmail.com> Martin Liska <mliska@suse.cz> * Makefile.in: Add lto-dump.texi. * cgraph.h: Add new functions get_visibility_string and get_symtab_type_string. * doc/gcc.texi: Include lto-dump section. * doc/lto-dump.texi: New file. * dumpfile.c (dump_switch_p_1): Use parse_dump_option. (parse_dump_option): Factor out this function. * dumpfile.h (enum dump_flag): Add new value TDF_ERROR. (parse_dump_option): Export the function. * symtab.c (symtab_node::get_visibility_string): New function. (symtab_node::get_symtab_type_string): Likewise. 2019-05-06 Hrishikesh Kulkarni <hrishikeshparag@gmail.com> Martin Liska <mliska@suse.cz> * Make-lang.in: Add lto_dump-related definition. * config-lang.in: Likewise. * lang.opt: Add new language LTODump and options related to LTO dump tool. * lto-common.c (lto_read_decls): Support type statistics dump. (lto_file_read): Likewise for object files. * lto-dump.c: New file. * lto-lang.c (lto_option_lang_mask): Move from .. * lto.c (lto_option_lang_mask): .. here. * lto.h (lto_option_lang_mask): New declaration. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@270897 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/lto/ChangeLog')
-rw-r--r--gcc/lto/ChangeLog14
1 files changed, 14 insertions, 0 deletions
diff --git a/gcc/lto/ChangeLog b/gcc/lto/ChangeLog
index 527d856ef3d..b2bd6b46c39 100644
--- a/gcc/lto/ChangeLog
+++ b/gcc/lto/ChangeLog
@@ -1,3 +1,17 @@
+2019-05-06 Hrishikesh Kulkarni <hrishikeshparag@gmail.com>
+ Martin Liska <mliska@suse.cz>
+
+ * Make-lang.in: Add lto_dump-related definition.
+ * config-lang.in: Likewise.
+ * lang.opt: Add new language LTODump and options related
+ to LTO dump tool.
+ * lto-common.c (lto_read_decls): Support type statistics dump.
+ (lto_file_read): Likewise for object files.
+ * lto-dump.c: New file.
+ * lto-lang.c (lto_option_lang_mask): Move from ..
+ * lto.c (lto_option_lang_mask): .. here.
+ * lto.h (lto_option_lang_mask): New declaration.
+
2019-05-06 Martin Liska <mliska@suse.cz>
Hrishikesh Kulkarni <hrishikeshparag@gmail.com>