aboutsummaryrefslogtreecommitdiff
path: root/contrib
AgeCommit message (Collapse)AuthorFilesLines
2017-10-02Handle libbacktrace in contrib/gcc_updateThomas Schwinge2-0/+8
contrib/ * gcc_update (files_and_dependencies): Handle libbacktrace. From-SVN: r253346
2017-09-18Update checksums for isl-0.18.tar.bz2Markus Trippelsdorf2-2/+2
From-SVN: r252921
2017-09-18download_prerequisites (isl): Bump version to 0.18.Richard Biener2-1/+5
2017-09-18 Richard Biener <rguenther@suse.de> * download_prerequisites (isl): Bump version to 0.18. From-SVN: r252907
2017-08-02Added Python implementation of mklog.Yury Gribov2-0/+474
From-SVN: r250836
2017-08-02Renamed original mklog to mklog.pl.Yury Gribov2-0/+5
From-SVN: r250835
2017-07-18mklog: Fix extraction of changed file name.Yury Gribov2-3/+19
2017-07-17 Yury Gribov <tetra2005@gmail.com> * mklog: Fix extraction of changed file name. From-SVN: r250314
2017-07-17gcc_update (files_and_dependencies): Remove dead entry.Georg-Johann Lay2-1/+5
* gcc_update (files_and_dependencies) [gcc/config/avr/avr-tables.opt]: Remove dead entry. From-SVN: r250263
2017-07-04[arm] Move some generated files out of the source treeRichard Earnshaw1-3/+0
When I originally started work on the new options framework for ARM I'd worked on the assumption that AWK might not be available on every build machine (only on developer's machines). However, looking again I notice that all the options framework relies on it being present for every build. This means that some of the generated files that come from running parsecpu.awk do not need to be kept under revision control. Unfortunately, it's not _all_ generated files. The build infrastructure assumes that all .md fragments are in the source tree and similarly that all .opt fragments are there as well. Still, eliminating the very big .h files is a step forward as they are very regular in structure and diff/patch/merge tools can sometimes make mistakes when resolving conflicts. So this patch removes the generated .h files from the source tree and tweaks the make rules accordingly. I've also changed the build rules to use the stamp technique to eliminate some false dependencies in a rebuild. Top-level: * contrib/gcc_update (files_and_dependencies): Remove stamp rules for arm-specific auto-generated header files. gcc: * common/config/arm/arm-common.c: Adjust include path for arm-cpu-cdata.h * t-arm (TM_H): Adjust path for arm-cpu.h. (arm-cpu.h): Create in build directory. Adjust dependency rules. (arm-cpu-data.h): Likewise. (arm-cpu-cdata.h): Likewise. * config/arm/arm-cpu.h: Delete. * config/arm/arm-cpu-cdata.h: Delete. * config/arm/arm-cpu-data.h: Delete. From-SVN: r249971
2017-07-02Reorganise machmode.h headersRichard Sandiford2-1/+10
This patch splits the auto-generated inline functions out of insn-modes.h and puts them in a new header file, insn-modes-inline.h. It also makes coretypes.h include these files directly, rather than indirectly via machmode.h. This in turn allows insn-modes-inline.h and machmode.h to come later in the include list, after wide-int.h. This is useful for later patches. insn-modes.h itself still needs to come first, since it provides configuration information like MAX_BITSIZE_MODE_ANY_INT, which is used to control the size of a wide_int. The patch also makes the generator files include machmode.h via coretypes.h. Previously they did it by more indirect means. Finally, the patch makes wide-int-print.h available via coretypes.h too. There didn't seem to be any reason to force only the print routines to be included directly, and it would be painful to extend that approach to the SVE patches. [Based on the code ARM contributed in branches/ARM/sve-branch@242100] 2017-07-02 Richard Sandiford <richard.sandiford@linaro.org> Alan Hayward <alan.hayward@arm.com> David Sherwood <david.sherwood@arm.com> contrib/header-tools/ * graph-header-logs (ignore): Update coretypes.h header list. gcc/ * Makefile.in (MACHMODE_H): Remove insn-modes.h (CORETYPES_H): New define. (MOSTLYCLEANFILES): Add insn-modes-inline.h. (insn-modes-inline.h, s-modes-inline-h): New rules. (generated_files): Add insn-modes-inline.h. (RTL_BASE_H, TREE_CORE_H): Use CORETYPES_H instead of coretypes.h. (build/gensupport.o, build/ggc-none.o, build/print-rtl.o): Likewise. (build/read-md.o, build/read-rtl.o, build/rtl.o): Likewise. (build/vec.o, build/hash-table.o, build/inchash.o): Likewise. (build/gencondmd.o, build/genattr.o, build/genattr-common.o): Likewise. (build/genattrtab.o, build/genautomata.o, build/gencheck.o): Likewise. (build/gencodes.o, build/genconditions.o): Likewise. (build/genconfig.o, build/genconstants.o, build/genemit.o): Likewise. (build/genenums.o, build/genextract.o, build/genflags.o): Likewise. (build/gentarget-def.o, build/genmddeps.o, build/genopinit.o) (build/genoutput.o, build/genpeep.o, build/genpreds.o): Likewise. (build/genrecog.o, build/genmddump.o, build/genmatch.o): Likewise. (build/gencfn-macros.o, build/gcov-iov.o): Likewise. * coretypes.h: Include everything up to real.h for generators. Include insn-modes.h first. Include wide-int-print.h after wide-int.h. Include insn-modes-inline.h and then machmode.h. * machmode.h: Don't include insn-modes.h here. * function-tests.c: Remove includes of signop.h, machmode.h, double-int.h and wide-int.h. * rtl.h: Likewise. * gcc-rich-location.c: Remove includes of machmode.h, double-int.h and wide-int.h. * optc-save-gen.awk: Likewise. * gencheck.c (BITS_PER_UNIT): Delete dummy definition. * godump.c: Remove include of wide-int-print.h. * pretty-print.h: Likewise. * wide-int-print.cc: Likewise. * wide-int.cc: Likewise. * hash-map-tests.c: Remove include of signop.h. * hash-set-tests.c: Likewise. * rtl-tests.c: Likewise. * mkconfig.sh: Remove include of machmode.h. * genmodes.c (emit_insn_modes_h): Split emission of inline functions into... (emit_insn_modes_inline_h): ...this new function. Emit the code into an insn-modes-inline.h header file, adding appropriate include guards and end comments. (emit_insn_modes_c_header): Remove include of machmode.h. (emit_min_insn_modes_c_header): Include coretypes.h rather than machmode.h. (main): Handle -i flag and call emit_insn_modes_inline_h when it is passed. Co-Authored-By: Alan Hayward <alan.hayward@arm.com> Co-Authored-By: David Sherwood <david.sherwood@arm.com> From-SVN: r249881
2017-06-28Doxygen: add default location for filters and output folder.Martin Liska5-35/+11
2017-06-28 Martin Liska <mliska@suse.cz> * gcc.doxy: Add default location for filters and output folder. * filter_gcc_for_doxygen_new: Rename to filter_gcc_for_doxygen. * filter_params.pl: Remove. From-SVN: r249725
2017-06-21Fix variant selection in dg-cmp-results.shThomas Preud'homme2-2/+6
2017-06-21 Thomas Preud'homme <thomas.preudhomme@arm.com> contrib/ * dg-cmp-results.sh: Restore filtering on target variant. From-SVN: r249463
2017-06-20Support multi-tool sum files in dg-cmp-results.shThomas Preud'homme2-4/+7
2017-06-20 Thomas Preud'homme <thomas.preudhomme@arm.com> contrib/ * dg-cmp-results.sh: Keep test result lines rather than throwing header and summary to support sum files with multiple tools. From-SVN: r249422
2017-05-31Doxygen: transform ENUM_BITFIELD and comments starting with '/**'.Martin Liska2-0/+35
2017-05-31 Martin Liska <mliska@suse.cz> * filter_params.py: Transform ENUM_BITFIELD and comments starting with '/**' From-SVN: r248741
2017-05-31Port Doxygen support script from Perl to Python; add unittestsDavid Malcolm3-0/+163
2017-05-31 David Malcolm <dmalcolm@redhat.com> Martin Liska <mliska@suse.cz> * filter_params.py: New, porting the perl script to python, adding a test suite. * filter_gcc_for_doxygen_new: New file. Co-Authored-By: Martin Liska <mliska@suse.cz> From-SVN: r248739
2017-05-30Compare predictor values with these defined in predict.def.Martin Liska3-10/+80
2017-05-30 Martin Liska <mliska@suse.cz> * analyze_brprob.py: Add new argument to parse and modify predict.def file. * analyze_brprob_spec.py: Likewise. From-SVN: r248600
2017-05-29check_GNU_style_lib.py: Fix trailing whitespace checkTom de Vries2-1/+22
2017-05-29 Tom de Vries <tom@codesourcery.com> * check_GNU_style_lib.py (TrailingWhitespaceCheck.check): Assert no trailing eol. (TrailingWhitespaceTest): New unit test. (check_GNU_style_file): Remove eol before checking. From-SVN: r248556
2017-05-29check_GNU_style.py: Read stdin if file argument is '-'Tom de Vries3-4/+18
2017-05-29 Tom de Vries <tom@codesourcery.com> * check_GNU_style_lib.py (check_GNU_style_file): Treat file argument as file handle. Add and handle file_encoding argument. * check_GNU_style.py (main): Handle '-' file argument. Call check_GNU_style_file with file handle as argument. From-SVN: r248555
2017-05-29check_GNU_style_lib.py: Suggest to install all missing pip3 packages at onceTom de Vries2-11/+28
Instead of: ... $ ./contrib/check_GNU_style.py termcolor module is missing (run: pip3 install termcolor) $ pip3 install termcolor $ ./contrib/check_GNU_style.py unidiff module is missing (run: pip3 install unidiff) $ pip3 install unidiff $ ... Do: ... $ ./contrib/check_GNU_style.py termcolor and unidiff modules are missing (run: pip3 install termcolor unidiff) $ pip3 install termcolor unidiff $ ... 2017-05-29 Tom de Vries <tom@codesourcery.com> * check_GNU_style_lib.py: Use import_pip3 to import pip3 packages. (import_pip3): New function. From-SVN: r248554
2017-05-24check_GNU_style.py: print usage if no file specifiedTom de Vries3-246/+275
2017-05-24 Tom de Vries <tom@codesourcery.com> * check_GNU_style_lib.py: New file, factored out of ... * check_GNU_style.py: ... here. Call main unconditionally. From-SVN: r248403
2017-05-19Make the script executable.Martin Liska1-0/+0
From-SVN: r248282
2017-05-19Introduce new check_GNU_style.py script.Martin Liska2-0/+282
2017-05-19 Martin Liska <mliska@suse.cz> * check_GNU_style.py: New file. From-SVN: r248281
2017-05-03config-list.mk (am33_2.0-linux): Remove from list of targets to build.Jeff Law2-1/+6
2007-05-03 Jeff Law <law@redhat.com> * config-list.mk (am33_2.0-linux): Remove from list of targets to build. From-SVN: r247553
2017-05-02* gennews (files): Add files for GCC 7.Jakub Jelinek2-1/+6
From-SVN: r247491
2017-04-26Fix comment in contrib/gen_autofdo_event.pyTom de Vries2-1/+5
2017-04-26 Tom de Vries <tom@codesourcery.com> * gen_autofdo_event.py: Fix comment. From-SVN: r247274
2017-04-11download_prerequisites (md5_check): New function emulates Linux 'md5 ↵Damian Rouson2-7/+61
--check' on macOS. 2017-04-11 Damian Rouson <damian@sourceryinstitute.org> * download_prerequisites (md5_check): New function emulates Linux 'md5 --check' on macOS. Modified script for macOS compatibility. From-SVN: r246845
2017-02-06RISC-V Port: contribPalmer Dabbelt2-0/+6
2017-02-06 Palmer Dabbelt <palmer@dabbelt.com> * config-list.mki (LIST): Add riscv32-unknown-linux-gun and riscv64-unknown-linux-gnu. From-SVN: r245229
2017-01-30update-copyright.py: Retain original file modeBernhard Reutner-Fischer2-0/+8
2017-01-31 Bernhard Reutner-Fischer <aldot@gcc.gnu.org> * update-copyright.py (Copyright.process_file): Retain original file mode. From-SVN: r245028
2017-01-29* update-copyright.py: Fix the name of this script in examples.Gerald Pfeifer2-2/+6
From-SVN: r245017
2017-01-26update-copyright.py: Add libhsail-rt to self.default_dirs and call ↵Jakub Jelinek1-0/+6
self.add_dir on it. contrib/ * update-copyright.py: Add libhsail-rt to self.default_dirs and call self.add_dir on it. Add Intel Corporation to external authors. gcc/ * brig-builtins.def: Update copyright years. * config/arm/arm_acle_builtins.def: Update copyright years. gcc/brig/ Update copyright years. gcc/testsuite/ * brig.dg/dg.exp: Update copyright years. * lib/brig-dg.exp: Update copyright years. * lib/brig.exp: Update copyright years. libhsail-rt/ Update copyright years. libstdc++-v3/ * libsupc++/eh_atomics.h: Update copyright years. * testsuite/20_util/unique_ptr/cons/default.cc: Update copyright years. From-SVN: r244920
2017-01-26update-copyright.py: Add libhsail-rt to self.default_dirs and call ↵Jakub Jelinek1-0/+3
self.add_dir on it. contrib/ * update-copyright.py: Add libhsail-rt to self.default_dirs and call self.add_dir on it. Add Intel Corporation to external authors. gcc/ * brig-builtins.def: Update copyright years. * config/arm/arm_acle_builtins.def: Update copyright years. gcc/brig/ Update copyright years. gcc/testsuite/ * brig.dg/dg.exp: Update copyright years. * lib/brig-dg.exp: Update copyright years. * lib/brig.exp: Update copyright years. libhsail-rt/ Update copyright years. libstdc++-v3/ * libsupc++/eh_atomics.h: Update copyright years. * testsuite/20_util/unique_ptr/cons/default.cc: Update copyright years. From-SVN: r244919
2017-01-25libhsail-rt: Fix some Autotools issuesThomas Schwinge2-0/+8
contrib/ * gcc_update (files_and_dependencies): Care for "libhsail-rt". libhsail-rt/ * configure.ac: Don't instantiate AC_CONFIG_MACRO_DIR. * configure: Regenerate. libhsail-rt/ * config.h.in: Remove stale file. From-SVN: r244902
2017-01-23patch_tester.sh (TESTLOGS): Remove $TARGET/libjava/testsuite/libjava.sum.Gerald Pfeifer2-1/+5
* patch_tester.sh (TESTLOGS): Remove $TARGET/libjava/testsuite/libjava.sum. From-SVN: r244771
2017-01-22* warn_summary: Remove the -java option.Gerald Pfeifer2-5/+9
From-SVN: r244766
2017-01-20* update-copyright.py (LibJavaFilter): Remove.Gerald Pfeifer2-24/+5
From-SVN: r244719
2017-01-17gcc_update: Remove entries related to GCJ and libgcj.Gerald Pfeifer2-11/+8
* gcc_update: Remove entries related to GCJ and libgcj. Complete copyright years and adjust my e-mail address. From-SVN: r244518
2017-01-11[arm] Replace command-line option .def files with single definition fileRichard Earnshaw2-2/+9
The files arm-cores.def, arm-fpus.def and arm-arches.def are parsed and used in several places and the format is slightly awkward to maintain as they must be parsable in C and by certain scripts. Furthermore, changes to the content that affects every entry is particularly awkward for dealing with merges. This patch replaces all three files with a single file that specifies all the command-line related definitions in a new format that allows for better checking for consistency as well as (hopefully) easier to merge changes. The awk script used to parse it is relatively complicated, but should be pretty portable. It works by parsing in all the data and then operating one of a number of possible sub-commands to generate the desired output. The new method picked up one error. The CPU descriptions referred to an architecture ARMv5tej which was not supported by -march. This has been fixed by adding the relevant entry to the architecture list. gcc: * config.gcc: Use new awk script to check CPU, FPU and architecture parameters for --with-... options. * config/arm/parsecpu.awk: New file * config/arm/arm-cpus.in: New file. * config/arm/arm-opts.h: Include arm-cpu.h instead of processing .def files. * config/arm/arm.c: Include arm-cpu-data.h instead of processing .def files. * config/arm/t-arm: Update dependency rules. * common/config/arm/arm-common.c: Include arm-cpu-cdata.h instead of processing .def files. * config/arm/genopt.sh: Deleted. * config/arm/gentune.sh: Deleted. * config/arm/arm-cores.def: Deleted. * config/arm/arm-arches.def: Deleted. * config/arm/arm-fpus.def: Deleted. * config/arm/arm-tune.md: Regenerated. * config/arm/arm-tables.opt: Regenerated. * config/arm/arm-cpu.h: New generated file. * config/arm/arm-cpu-data.h: New generated file. * config/arm/arm-cpu-cdata.h: New generated file. Contrib: * gcc_update: Adjust touch list. From-SVN: r244316
2017-01-08* download_ecj: Remove.Gerald Pfeifer2-25/+3
From-SVN: r244209
2017-01-05vimrc: fix TAB settingsMartin Liska2-0/+8
2017-01-05 Martin Liska <mliska@suse.cz> * vimrc: Update indentation definition. From-SVN: r244094
2017-01-04update-copyright.py (GCCCmdLine): Add include, libcc1, libiberty, libssp, ↵Jakub Jelinek2-0/+11
libvtv and lto-plugin to default_dirs. * update-copyright.py (GCCCmdLine): Add include, libcc1, libiberty, libssp, libvtv and lto-plugin to default_dirs. From-SVN: r244060
2017-01-01update-copyright.py (TestsuiteFilter): Skip params/README.Jakub Jelinek2-5/+11
* update-copyright.py (TestsuiteFilter): Skip params/README. (GCCCmdLine): Remove libjava and libjava/testsuite add_dir. From-SVN: r243993
2016-12-14Enhance analyze_brprob scriptMartin Liska3-20/+77
* analyze_brprob.py: Add new column to output and new sorting option. Fix coding style to not exceed 80 characters. * analyze_brprob_spec.py: Add new sorting option. Fix coding style to not exceed 80 characters. From-SVN: r243640
2016-10-25Add BZ marker to recent commitJeff Law1-0/+1
From-SVN: r241515
2016-10-24download_prerequisites: Conditionally verify checksums of downloaded pacakges.Moritz Klammler4-39/+209
2016-10-24 Moritz Klammler <moritz@glammler.eu> * download_prerequisites: Conditionally verify checksums of downloaded pacakges. Add help text. * prerequisites.md5: New file. * prerequisites.sha512: New file. From-SVN: r241483
2016-10-24[check_GNU_style.sh] More aggressively ignore dg-xxx directivesKyrylo Tkachov2-4/+19
* check_GNU_style.sh (remove_testsuite): New function. Use it to remove testsuite from the diff. From-SVN: r241471
2016-09-23Revert bogus dg-extract-results.sh changeRainer Orth2-1/+5
* dg-extract-results.sh: Revert bogus change. From-SVN: r240429
2016-09-20Report DejaGnu ERROR messages in dg-extract-results.Christophe Lyon3-6/+23
2016-09-20 Christophe Lyon <christophe.lyon@linaro.org> * dg-extract-results.py: Report DejaGnu error in the final summary. * dg-extract-results.sh: Likewise. From-SVN: r240289
2016-09-20Report DejaGnu ERROR messages in compare_testsChristophe Lyon2-2/+7
2016-09-20 Christophe Lyon <christophe.lyon@linaro.org> * compare_tests: Take ERROR messages into account when comparing. From-SVN: r240288
2016-08-17mark_spam.py: Mark as spam all comments done by a creatorMartin Liska2-8/+16
* mark_spam.py: Mark as spam all comments done by a creator. From-SVN: r239527
2016-08-15Enhance mark_spam.py scriptMartin Liska2-1/+16
* mark_spam.py: Add error handling and reset another properties of attachments and bugs. From-SVN: r239467
2016-08-11mark_spam.py: mark attachments as obsolete and rename themMartin Liska2-0/+16
* mark_spam.py: Mark attachments as obsolete and rename them. From-SVN: r239368