1. 02 Jul, 2017 1 commit
    • Reorganise machmode.h headers · b0e84cf7
      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
      Richard Sandiford committed
  2. 28 Jun, 2017 1 commit
  3. 21 Jun, 2017 1 commit
  4. 20 Jun, 2017 1 commit
  5. 31 May, 2017 2 commits
  6. 30 May, 2017 1 commit
  7. 29 May, 2017 3 commits
    • check_GNU_style_lib.py: Fix trailing whitespace check · 0a71c876
      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
      Tom de Vries committed
    • check_GNU_style.py: Read stdin if file argument is '-' · 75017bb9
      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
      Tom de Vries committed
    • check_GNU_style_lib.py: Suggest to install all missing pip3 packages at once · 76baf5ca
      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
      Tom de Vries committed
  8. 24 May, 2017 1 commit
  9. 19 May, 2017 2 commits
  10. 03 May, 2017 1 commit
  11. 02 May, 2017 1 commit
  12. 26 Apr, 2017 1 commit
  13. 11 Apr, 2017 1 commit
  14. 06 Feb, 2017 1 commit
  15. 30 Jan, 2017 1 commit
  16. 29 Jan, 2017 1 commit
  17. 26 Jan, 2017 2 commits
    • update-copyright.py: Add libhsail-rt to self.default_dirs and call self.add_dir on it. · e6d55103
      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
      Jakub Jelinek committed
    • update-copyright.py: Add libhsail-rt to self.default_dirs and call self.add_dir on it. · 68edb9ba
      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
      Jakub Jelinek committed
  18. 25 Jan, 2017 1 commit
  19. 23 Jan, 2017 1 commit
  20. 22 Jan, 2017 1 commit
  21. 20 Jan, 2017 1 commit
  22. 17 Jan, 2017 1 commit
  23. 11 Jan, 2017 1 commit
    • [arm] Replace command-line option .def files with single definition file · a92ffb3e
      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
      Richard Earnshaw committed
  24. 08 Jan, 2017 1 commit
  25. 05 Jan, 2017 1 commit
  26. 04 Jan, 2017 1 commit
  27. 01 Jan, 2017 1 commit
  28. 14 Dec, 2016 1 commit
    • Enhance analyze_brprob script · ca3b6071
      	* 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
      Martin Liska committed
  29. 25 Oct, 2016 1 commit
  30. 24 Oct, 2016 2 commits
  31. 23 Sep, 2016 1 commit
  32. 20 Sep, 2016 2 commits
  33. 17 Aug, 2016 1 commit