-
- Downloads
configure.ac (--enable-lto): Add x86_64-apple-darwin* as a platform that supports LTO.
ChangeLog: * configure.ac (--enable-lto): Add x86_64-apple-darwin* as a platform that supports LTO. * configure: Regenerate. gcc/ChangeLog: * config.gcc (i[34567]86-*-darwin*, x86_64-*-darwin*): Add lto-macho as lto_binary_reader. * target.h (struct gcc_target): New hooks lto_start and lto_end. * target-def.h (TARGET_ASM_LTO_START, TARGET_ASM_LTO_END): Define. * cgraphunit.c (ipa_passes): Wrap LTO assembler output generation in lto_start and lto_end calls. (is_elf_or_coff): Rename to maybe_lto_object_file. Add Mach-O magic numbers. (scan_prog_file): Update is_elf_or_coff call. * doc/tm.text (TARGET_ASM_LTO_START, TARGET_ASM_LTO_END): Document. * collect2.c (main): Fix enum comparison. * config/darwin-protos.h (darwin_asm_lto_start, darwin_asm_lto_end): Add prototypes. * darwin9.h (LINK_COMMAND_SPEC): Pass -flto and -fwhopr to the linker. * darwin.h (LINK_COMMAND_SPEC): Likewise. Define TARGET_ASM_LTO_START and TARGET_ASM_LTO_END. * darwin.c: Include obstack.h and lto-streamer.h. (lto_section_names_offset, lto_section_names_obstack, lto_asm_out_file, lto_asm_out_name, saved_asm_out_file): New static global variables. (LTO_SEGMENT_NAME, LTO_NAMES_SECTION): New defines. (darwin_asm_lto_start): New function. Redirect output to asm_out_file to a temporary file. (darwin_asm_lto_end): New function. Restore asm_out_file. (darwin_asm_named_section): For LTO sections, replace the name with the offset of the section name in a string table, and build this table. (darwin_file_start): Initialize global vars for LTO support. (darwin_file_end): If output to asm_out_file was redirected, append it to the proper asm_out_file here. Add the section names section. lto/ChangeLog: * lto.h (struct lto_file_struct): Document offset member. * lto-endian.h: New file. * lto-macho.h: New file. * lto-macho.c: New file. * Make-lang.in: Add rule for lto-macho.o. From-SVN: r159173
Showing
- ChangeLog 6 additions, 0 deletionsChangeLog
- configure 1 addition, 0 deletionsconfigure
- configure.ac 1 addition, 0 deletionsconfigure.ac
- gcc/ChangeLog 35 additions, 0 deletionsgcc/ChangeLog
- gcc/cgraphunit.c 8 additions, 0 deletionsgcc/cgraphunit.c
- gcc/collect2.c 24 additions, 10 deletionsgcc/collect2.c
- gcc/config.gcc 2 additions, 0 deletionsgcc/config.gcc
- gcc/config/darwin-protos.h 3 additions, 0 deletionsgcc/config/darwin-protos.h
- gcc/config/darwin.c 135 additions, 3 deletionsgcc/config/darwin.c
- gcc/config/darwin.h 11 additions, 0 deletionsgcc/config/darwin.h
- gcc/config/darwin9.h 1 addition, 0 deletionsgcc/config/darwin9.h
- gcc/doc/tm.texi 12 additions, 0 deletionsgcc/doc/tm.texi
- gcc/lto/ChangeLog 8 additions, 0 deletionsgcc/lto/ChangeLog
- gcc/lto/Make-lang.in 3 additions, 0 deletionsgcc/lto/Make-lang.in
- gcc/lto/lto-endian.h 205 additions, 0 deletionsgcc/lto/lto-endian.h
- gcc/lto/lto-macho.c 978 additions, 0 deletionsgcc/lto/lto-macho.c
- gcc/lto/lto-macho.h 251 additions, 0 deletionsgcc/lto/lto-macho.h
- gcc/lto/lto.h 2 additions, 1 deletiongcc/lto/lto.h
- gcc/target-def.h 10 additions, 0 deletionsgcc/target-def.h
- gcc/target.h 8 additions, 0 deletionsgcc/target.h
Loading
Please register or sign in to comment