gcc/gcc
H.J. Lu 38ef6fb19d i386: Enable AVX512 memory broadcast for FNMSUB
Many AVX512 vector operations can broadcast from a scalar memory source.
This patch enables memory broadcast for FNMSUB operations.  In order to
support AVX512 memory broadcast for FNMSUB, FNMSUB builtin functions are
also added, instead of passing the negated value to FMA builtin functions.

gcc/

	PR target/72782
	* config/i386/avx512fintrin.h (_mm512_fnmsub_round_pd): Use
	__builtin_ia32_vfnmsubpd512_mask.
	(_mm512_mask_fnmsub_round_pd): Likewise.
	(_mm512_fnmsub_pd): Likewise.
	(_mm512_mask_fnmsub_pd): Likewise.
	(_mm512_maskz_fnmsub_round_pd): Use
	__builtin_ia32_vfnmsubpd512_maskz.
	(_mm512_maskz_fnmsub_pd): Likewise.
	(_mm512_fnmsub_round_ps): Use __builtin_ia32_vfnmsubps512_mask.
	(_mm512_mask_fnmsub_round_ps): Likewise.
	(_mm512_fnmsub_ps): Likewise.
	(_mm512_mask_fnmsub_ps): Likewise.
	(_mm512_maskz_fnmsub_round_ps): Use
	__builtin_ia32_vfnmsubps512_maskz.
	(_mm512_maskz_fnmsub_ps): Likewise.
	* config/i386/avx512vlintrin.h (_mm256_mask_fnmsub_pd): Use
	__builtin_ia32_vfnmsubpd256_mask.
	(_mm256_maskz_fnmsub_pd): Use __builtin_ia32_vfnmsubpd256_maskz.
	(_mm_mask_fnmsub_pd): Use __builtin_ia32_vfmaddpd128_mask
	(_mm_maskz_fnmsub_pd): Use __builtin_ia32_vfnmsubpd128_maskz.
	(_mm256_mask_fnmsub_ps): Use __builtin_ia32_vfnmsubps256_mask.
	(_mm256_mask_fnmsub_ps): Use __builtin_ia32_vfnmsubps256_mask.
	(_mm256_maskz_fnmsub_ps): Use __builtin_ia32_vfnmsubps256_maskz.
	(_mm_mask_fnmsub_ps): Use __builtin_ia32_vfnmsubps128_mask.
	(_mm_maskz_fnmsub_ps): Use __builtin_ia32_vfnmsubps128_maskz.
	* config/i386/fmaintrin.h (_mm_fnmsub_pd): Use
	__builtin_ia32_vfnmsubpd.
	(_mm256_fnmsub_pd): Use __builtin_ia32_vfnmsubpd256.
	(_mm_fnmsub_ps): Use __builtin_ia32_vfnmsubps.
	(_mm256_fnmsub_ps): Use __builtin_ia32_vfnmsubps256.
	(_mm_fnmsub_sd): Use __builtin_ia32_vfnmsubsd3.
	(_mm_fnmsub_ss): Use __builtin_ia32_vfnmsubss3.
	* config/i386/i386-builtin.def: Add
	__builtin_ia32_vfnmsubpd256_mask,
	__builtin_ia32_vfnmsubpd256_maskz,
	__builtin_ia32_vfnmsubpd128_mask,
	__builtin_ia32_vfnmsubpd128_maskz,
	__builtin_ia32_vfnmsubps256_mask,
	__builtin_ia32_vfnmsubps256_maskz,
	__builtin_ia32_vfnmsubps128_mask,
	__builtin_ia32_vfnmsubps128_maskz,
	__builtin_ia32_vfnmsubpd512_mask,
	__builtin_ia32_vfnmsubpd512_maskz,
	__builtin_ia32_vfnmsubps512_mask,
	__builtin_ia32_vfnmsubps512_maskz, __builtin_ia32_vfnmsubss3,
	__builtin_ia32_vfnmsubsd3, __builtin_ia32_vfnmsubps,
	__builtin_ia32_vfnmsubpd, __builtin_ia32_vfnmsubps256 and.
	__builtin_ia32_vfnmsubpd256.
	* config/i386/sse.md (fma4i_fnmsub_<mode>): New.
	(<avx512>_fnmsub_<mode>_maskz<round_expand_name>): Likewise.
	(*<sd_mask_codefor>fma_fnmsub_<mode><sd_maskz_name>_bcst_1):
	Likewise.
	(*<sd_mask_codefor>fma_fnmsub_<mode><sd_maskz_name>_bcst_2):
	Likewise.
	(*<sd_mask_codefor>fma_fnmsub_<mode><sd_maskz_name>_bcst_3):
	Likewise.
	(fmai_vmfnmsub_<mode><round_name>): Likewise.

gcc/testsuite/

	PR target/72782
	* gcc.target/i386/avx512f-fnmsub-df-zmm-1.c: New test.
	* gcc.target/i386/avx512f-fnmsub-sf-zmm-1.c: Likewise.
	* gcc.target/i386/avx512f-fnmsub-sf-zmm-2.c: Likewise.
	* gcc.target/i386/avx512f-fnmsub-sf-zmm-3.c: Likewise.
	* gcc.target/i386/avx512f-fnmsub-sf-zmm-4.c: Likewise.
	* gcc.target/i386/avx512f-fnmsub-sf-zmm-5.c: Likewise.
	* gcc.target/i386/avx512f-fnmsub-sf-zmm-6.c: Likewise.
	* gcc.target/i386/avx512f-fnmsub-sf-zmm-7.c: Likewise.
	* gcc.target/i386/avx512f-fnmsub-sf-zmm-8.c: Likewise.
	* gcc.target/i386/avx512vl-fnmsub-sf-xmm-1.c: Likewise.
	* gcc.target/i386/avx512vl-fnmsub-sf-ymm-1.c: Likewise.

From-SVN: r265358
2018-10-21 13:28:56 -07:00
..
ada Fix missing entry to gcc/ada/ChangeLog for r265240 2018-10-18 16:09:56 +00:00
brig Run selftests for C++ as well as C 2018-10-17 13:56:05 +00:00
c Add -std=c2x, -std=gnu2x, -Wc11-c2x-compat, C2X _Static_assert support. 2018-10-18 00:58:54 +01:00
c-family Add -std=c2x, -std=gnu2x, -Wc11-c2x-compat, C2X _Static_assert support. 2018-10-18 00:58:54 +01:00
common re PR target/87572 (ICE in emit_move_insn, at expr.c:3722) 2018-10-15 18:08:09 +02:00
config i386: Enable AVX512 memory broadcast for FNMSUB 2018-10-21 13:28:56 -07:00
cp Run selftests for C++ as well as C 2018-10-17 13:56:05 +00:00
doc * doc/ux.texi: Move @section directly after @node. 2018-10-20 07:29:15 +00:00
fortran re PR fortran/71880 (pointer to allocatable character) 2018-10-21 17:32:06 +00:00
ginclude
go compiler: don't export any functions with special names 2018-10-19 19:43:47 +00:00
jit Run selftests for C++ as well as C 2018-10-17 13:56:05 +00:00
lto Run selftests for C++ as well as C 2018-10-17 13:56:05 +00:00
objc Run selftests for C++ as well as C 2018-10-17 13:56:05 +00:00
objcp Run selftests for C++ as well as C 2018-10-17 13:56:05 +00:00
po * es.po: Update. 2018-10-17 01:10:29 +01:00
testsuite i386: Enable AVX512 memory broadcast for FNMSUB 2018-10-21 13:28:56 -07:00
ABOUT-GCC-NLS
acinclude.m4
aclocal.m4
addresses.h
alias.c Remove unused functions and fields. 2018-09-25 07:13:40 +00:00
alias.h
align.h
alloc-pool.c
alloc-pool.h
asan.c ASAN: emit line information of stack variables. 2018-10-09 08:34:52 +00:00
asan.h Unpoison variable partition properly (PR sanitizer/85774). 2018-09-24 11:22:38 +00:00
attribs.c
attribs.h
auto-inc-dec.c
auto-profile.c tree.h (BLOCK_ORIGIN): New. 2018-09-28 11:33:29 +00:00
auto-profile.h
backend.h
BASE-VER
basic-block.h
bb-reorder.c
bb-reorder.h
bitmap.c bitmap.c (bitmap_head::dump): New. 2018-10-17 15:59:25 +00:00
bitmap.h bitmap.c (bitmap_head::dump): New. 2018-10-17 15:59:25 +00:00
brig-builtins.def
bt-load.c
builtin-attrs.def
builtin-types.def
builtins.c bitmap.c (bitmap_head::dump): New. 2018-10-17 15:59:25 +00:00
builtins.def
builtins.h builtins.c (unterminated_array): Add new arguments. 2018-10-02 08:08:53 -06:00
caller-save.c
calls.c bitmap.c (bitmap_head::dump): New. 2018-10-17 15:59:25 +00:00
calls.h
ccmp.c
ccmp.h
cfg-flags.def
cfg.c
cfg.h
cfganal.c
cfganal.h
cfgbuild.c
cfgbuild.h
cfgcleanup.c
cfgcleanup.h
cfgexpand.c cfgexpand.c (expand_one_var): Use specific wording in error message for non-local frame variables. 2018-10-19 07:17:20 +00:00
cfgexpand.h
cfghooks.c
cfghooks.h
cfgloop.c
cfgloop.h
cfgloopanal.c
cfgloopmanip.c
cfgloopmanip.h
cfgrtl.c
cfgrtl.h
cgraph.c calls.c (expand_call): Try to do a tail call for thunks at -O0 too. 2018-09-28 21:20:53 +00:00
cgraph.h calls.c (expand_call): Try to do a tail call for thunks at -O0 too. 2018-09-28 21:20:53 +00:00
cgraphbuild.c
cgraphclones.c re PR target/87156 (ICE building libstdc++ for mips64) 2018-10-11 20:40:17 -06:00
cgraphunit.c re PR middle-end/87574 (ICE in add_data_member_location_attribute at gcc/gcc/dwarf2out.c:19226 since r264943) 2018-10-10 22:54:04 +00:00
ChangeLog i386: Enable AVX512 memory broadcast for FNMSUB 2018-10-21 13:28:56 -07:00
ChangeLog-1997
ChangeLog-1998
ChangeLog-1999
ChangeLog-2000
ChangeLog-2001
ChangeLog-2002
ChangeLog-2003
ChangeLog-2004
ChangeLog-2005
ChangeLog-2006
ChangeLog-2007
ChangeLog-2008
ChangeLog-2009
ChangeLog-2010
ChangeLog-2011
ChangeLog-2012
ChangeLog-2013
ChangeLog-2014
ChangeLog-2015
ChangeLog-2016
ChangeLog-2017
ChangeLog.dataflow
ChangeLog.gimple-classes
ChangeLog.graphite
ChangeLog.jit
ChangeLog.lib
ChangeLog.ptr
ChangeLog.tree-ssa
ChangeLog.tuples
cif-code.def
collect2-aix.c
collect2-aix.h
collect2.c
collect2.h
collect-utils.c
collect-utils.h
color-macros.h
combine-stack-adj.c
combine.c
common.md
common.opt diagnostics: add minimum width to left margin for line numbers 2018-10-15 22:16:59 +00:00
compare-elim.c
conditions.h
config.build
config.gcc Obsolete Solaris 10 support 2018-10-16 08:50:48 +00:00
config.host
config.in introduce --enable-large-address-aware 2018-10-12 20:11:27 +00:00
configure Run selftests for C++ as well as C 2018-10-17 13:56:05 +00:00
configure.ac Run selftests for C++ as well as C 2018-10-17 13:56:05 +00:00
context.c
context.h
convert.c
convert.h
COPYING
COPYING3
COPYING3.LIB
COPYING.LIB
coretypes.h bitmap.c (bitmap_head::dump): New. 2018-10-17 15:59:25 +00:00
coverage.c Properly mark lambdas in GCOV (PR gcov-profile/86109). 2018-10-03 08:30:10 +00:00
coverage.h
cppbuiltin.c
cppbuiltin.h
cppdefault.c
cppdefault.h
cprop.c
cse.c
cselib.c
cselib.h
cstamp-h.in
data-streamer-in.c
data-streamer-out.c
data-streamer.c
data-streamer.h
DATESTAMP Daily bump. 2018-10-21 00:16:34 +00:00
dbgcnt.c Fix small coding style issues (PR fortran/87394). 2018-09-25 07:13:59 +00:00
dbgcnt.def
dbgcnt.h
dbxout.c Remove Pascal-related entries in code and comments. 2018-09-25 07:11:05 +00:00
dbxout.h
dce.c
dce.h
ddg.c
ddg.h
debug.c
debug.h
defaults.h
DEV-PHASE
df-core.c
df-problems.c
df-scan.c
df.h
dfp.c
dfp.h
diagnostic-color.c
diagnostic-color.h
diagnostic-core.h
diagnostic-show-locus.c diagnostics: add minimum width to left margin for line numbers 2018-10-15 22:16:59 +00:00
diagnostic.c diagnostics: add minimum width to left margin for line numbers 2018-10-15 22:16:59 +00:00
diagnostic.def
diagnostic.h diagnostics: add minimum width to left margin for line numbers 2018-10-15 22:16:59 +00:00
dojump.c dojump.h (do_jump): Delete. 2018-10-02 10:55:33 +00:00
dojump.h dojump.h (do_jump): Delete. 2018-10-02 10:55:33 +00:00
dominance.c
dominance.h
domwalk.c
domwalk.h
double-int.c
double-int.h
dse.c
dump-context.h Report vectorization problems via a new opt_problem class 2018-10-04 17:50:52 +00:00
dumpfile.c Report vectorization problems via a new opt_problem class 2018-10-04 17:50:52 +00:00
dumpfile.h Report vectorization problems via a new opt_problem class 2018-10-04 17:50:52 +00:00
dwarf2asm.c
dwarf2asm.h
dwarf2cfi.c dwarf2cfi.c (struct dw_trace_info): Add args_size_defined_for_eh. 2018-10-13 17:32:07 +00:00
dwarf2out.c Add -std=c2x, -std=gnu2x, -Wc11-c2x-compat, C2X _Static_assert support. 2018-10-18 00:58:54 +01:00
dwarf2out.h
early-remat.c
edit-context.c Remove unused functions and fields. 2018-09-25 07:13:40 +00:00
edit-context.h
emit-rtl.c
emit-rtl.h
errors.c
errors.h
et-forest.c
et-forest.h
except.c
except.h
exec-tool.in
explow.c Add a hook to support telling the mid-end when to probe the stack. 2018-10-01 12:58:21 +00:00
explow.h
expmed.c [pr82089] Don't sign-extend SFV 1 in BImode 2018-09-27 11:15:48 +00:00
expmed.h
expr.c dojump.h (do_jump): Delete. 2018-10-02 10:55:33 +00:00
expr.h
fibonacci_heap.c
fibonacci_heap.h
file-find.c
file-find.h
file-prefix-map.c
file-prefix-map.h
final.c tree-inline.c (expand_call_inline): Use the location of the callee declaration for the inline-entry marker. 2018-10-02 10:07:29 +00:00
fixed-value.c
fixed-value.h
flag-types.h
flags.h
fold-const-call.c
fold-const-call.h
fold-const.c re PR middle-end/87623 (bytes swapped in register when comparing cause fail when compiled with -O1 or higher) 2018-10-17 17:49:28 +00:00
fold-const.h
fp-test.c
FSFChangeLog
FSFChangeLog.10
FSFChangeLog.11
function-tests.c
function.c
function.h
fwprop.c
gcc-ar.c
gcc-main.c
gcc-plugin.h
gcc-rich-location.c
gcc-rich-location.h Remove stray reference to error_at_rich_loc 2018-10-15 22:09:51 +00:00
gcc-symtab.h
gcc.c
gcc.h
gcov-counter.def
gcov-dump.c
gcov-io.c
gcov-io.h
gcov-iov.c
gcov-tool.c Fix small coding style issues (PR fortran/87394). 2018-09-25 07:13:59 +00:00
gcov.c Improve colorization legend in gcov reports. 2018-09-24 11:28:38 +00:00
gcse-common.c
gcse-common.h
gcse.c
gcse.h
gdbasan.in
gdbhooks.py
gdbinit.in
gen-pass-instances.awk
genattr-common.c
genattr.c
genattrtab.c Change EQ_ATTR_ALT to support up to 64 alternatives 2018-09-24 15:01:57 +00:00
genautomata.c
gencfn-macros.c
gencheck.c
genchecksum.c
gencodes.c
genconditions.c
genconfig.c
genconstants.c
genemit.c
genenums.c
generic-match-head.c
generic-match.h
genextract.c
genflags.c
gengenrtl.c
gengtype-lex.l
gengtype-parse.c
gengtype-state.c
gengtype.c
gengtype.h
genhooks.c
genmatch.c Cleanup of libcpp diagnostic callbacks 2018-10-09 23:37:19 +00:00
genmddeps.c
genmddump.c
genmodes.c
genmultilib
genopinit.c
genoutput.c
genpeep.c
genpreds.c
genrecog.c
gensupport.c
gensupport.h
gentarget-def.c
ggc-common.c
ggc-internal.h
ggc-none.c
ggc-page.c
ggc-tests.c
ggc.h
gimple-builder.c
gimple-builder.h
gimple-expr.c
gimple-expr.h
gimple-fold.c bitmap.c (bitmap_head::dump): New. 2018-10-17 15:59:25 +00:00
gimple-fold.h
gimple-iterator.c
gimple-iterator.h
gimple-laddress.c
gimple-loop-interchange.cc
gimple-loop-jam.c
gimple-low.c
gimple-low.h
gimple-match-head.c re PR tree-optimization/86659 (gnat.dg/sso/q[23].adb FAIL) 2018-10-08 22:47:32 +00:00
gimple-match.h re PR tree-optimization/86659 (gnat.dg/sso/q[23].adb FAIL) 2018-10-09 17:16:24 +00:00
gimple-predict.h
gimple-pretty-print.c bitmap.c (bitmap_head::dump): New. 2018-10-17 15:59:25 +00:00
gimple-pretty-print.h
gimple-ssa-backprop.c Use FOR_EACH_IMM_USE_FAST in gimple-ssa-backprop.c 2018-10-08 18:58:59 +00:00
gimple-ssa-evrp-analyze.c bitmap.c (bitmap_head::dump): New. 2018-10-17 15:59:25 +00:00
gimple-ssa-evrp-analyze.h
gimple-ssa-evrp.c bitmap.c (bitmap_head::dump): New. 2018-10-17 15:59:25 +00:00
gimple-ssa-isolate-paths.c
gimple-ssa-nonnull-compare.c
gimple-ssa-split-paths.c
gimple-ssa-sprintf.c bitmap.c (bitmap_head::dump): New. 2018-10-17 15:59:25 +00:00
gimple-ssa-store-merging.c
gimple-ssa-strength-reduction.c re PR tree-optimization/87473 (ICE in create_add_on_incoming_edge, at gimple-ssa-strength-reduction.c:2344) 2018-10-19 18:28:11 +00:00
gimple-ssa-warn-alloca.c bitmap.c (bitmap_head::dump): New. 2018-10-17 15:59:25 +00:00
gimple-ssa-warn-restrict.c bitmap.c (bitmap_head::dump): New. 2018-10-17 15:59:25 +00:00
gimple-ssa-warn-restrict.h
gimple-ssa.h
gimple-streamer-in.c
gimple-streamer-out.c
gimple-streamer.h
gimple-walk.c
gimple-walk.h
gimple.c
gimple.def
gimple.h
gimplify-me.c
gimplify-me.h
gimplify.c
gimplify.h
glimits.h
godump.c Fix small coding style issues (PR fortran/87394). 2018-09-25 07:13:59 +00:00
graph.c
graph.h
graphds.c
graphds.h
graphite-dependences.c
graphite-isl-ast-to-gimple.c
graphite-optimize-isl.c
graphite-poly.c
graphite-scop-detection.c
graphite-sese-to-poly.c Remove unused functions and fields. 2018-09-25 07:13:40 +00:00
graphite.c
graphite.h Revert 2018-09-26 08:50:03 -06:00
gsstruct.def
gstab.h
gsyms.h
gsyslimits.h
gtm-builtins.def
haifa-sched.c Reset insn priority after inc/ref replacement 2018-10-19 06:25:30 +00:00
hard-reg-set.h
hash-map-tests.c
hash-map-traits.h
hash-map.h
hash-set-tests.c
hash-set.h
hash-table.c
hash-table.h
hash-traits.h
highlev-plugin-common.h
hooks.c
hooks.h
host-default.c
hosthooks-def.h
hosthooks.h
hsa-brig-format.h
hsa-brig.c
hsa-builtins.def
hsa-common.c
hsa-common.h
hsa-dump.c
hsa-gen.c
hsa-regalloc.c
hw-doloop.c
hw-doloop.h
hwint.c
hwint.h
ifcvt.c
ifcvt.h
inchash.c
inchash.h
incpath.c
incpath.h
init-regs.c
input.c Fix ICE in substring-handling building 502.gcc_r (PR 87562) 2018-10-18 15:44:39 +00:00
input.h Support string locations for C++ in -Wformat (PR c++/56856) 2018-10-05 19:02:17 +00:00
insn-addr.h
insn-notes.def
int-vector-builder.h
internal-fn.c [PR87563][AARCH64-SVE]: Don't keep ifcvt loop when COND_<OP> ifn could not be vectorized. 2018-10-15 16:49:05 +00:00
internal-fn.def
internal-fn.h [PR87563][AARCH64-SVE]: Don't keep ifcvt loop when COND_<OP> ifn could not be vectorized. 2018-10-15 16:49:05 +00:00
intl.c
intl.h
ipa-comdats.c
ipa-cp.c bitmap.c (bitmap_head::dump): New. 2018-10-17 15:59:25 +00:00
ipa-devirt.c
ipa-fnsummary.c Fix scaling of a sreal number. 2018-09-25 07:14:38 +00:00
ipa-fnsummary.h
ipa-hsa.c
ipa-icf-gimple.c
ipa-icf-gimple.h
ipa-icf.c calls.c (expand_call): Try to do a tail call for thunks at -O0 too. 2018-09-28 21:20:53 +00:00
ipa-icf.h
ipa-inline-analysis.c
ipa-inline-transform.c
ipa-inline.c Call ultimate_alias_target for node being inlined (PR ipa/87491). 2018-10-04 08:06:52 +00:00
ipa-inline.h
ipa-param-manipulation.c
ipa-param-manipulation.h
ipa-polymorphic-call.c
ipa-predicate.c
ipa-predicate.h
ipa-profile.c
ipa-prop.c bitmap.c (bitmap_head::dump): New. 2018-10-17 15:59:25 +00:00
ipa-prop.h bitmap.c (bitmap_head::dump): New. 2018-10-17 15:59:25 +00:00
ipa-pure-const.c re PR tree-optimization/85787 (malloc_candidate_p fails to detect malloc attribute on nested phis) 2018-10-04 11:06:24 +00:00
ipa-ref.c
ipa-ref.h
ipa-reference.c
ipa-reference.h
ipa-split.c
ipa-utils.c
ipa-utils.h
ipa-visibility.c
ipa.c
ira-build.c
ira-color.c
ira-conflicts.c
ira-costs.c
ira-emit.c
ira-int.h
ira-lives.c re PR rtl-optimization/87600 (Fix for PRs 86939 and 87479 causes build issues for several targets) 2018-10-12 11:31:11 -05:00
ira.c
ira.h re PR rtl-optimization/86939 (IRA incorrectly creates an interference between a pseudo register and a hard register) 2018-10-05 21:12:30 -05:00
is-a.h
json.cc
json.h
jump.c
langhooks-def.h
langhooks.c tree.h (BLOCK_ORIGIN): New. 2018-09-28 11:33:29 +00:00
langhooks.h
LANGUAGES
lcm.c
lcm.h
libfuncs.h
limitx.h
limity.h
lists.c
lock-and-run.sh
loop-doloop.c
loop-init.c
loop-invariant.c
loop-iv.c
loop-unroll.c
loop-unroll.h
lower-subreg.c
lower-subreg.h
lra-assigns.c
lra-coalesce.c
lra-constraints.c lra: fix spill_hard_reg_in_range clobber check 2018-10-19 08:33:52 +00:00
lra-eliminations.c
lra-int.h
lra-lives.c re PR rtl-optimization/86939 (IRA incorrectly creates an interference between a pseudo register and a hard register) 2018-10-05 21:12:30 -05:00
lra-remat.c
lra-spills.c
lra.c
lra.h
lto-cgraph.c calls.c (expand_call): Try to do a tail call for thunks at -O0 too. 2018-09-28 21:20:53 +00:00
lto-compress.c
lto-compress.h
lto-opts.c
lto-section-in.c
lto-section-names.h
lto-section-out.c
lto-streamer-in.c
lto-streamer-out.c
lto-streamer.c
lto-streamer.h
lto-wrapper.c
machmode.def
machmode.h
main.c
Makefile.in gccint.texi: add user experience guidelines 2018-10-19 19:50:02 +00:00
match.pd Add pattern to remove useless float casts in comparisons. 2018-10-12 20:35:20 +00:00
mcf.c
mem-stats-traits.h
mem-stats.h
memmodel.h
memory-block.cc
memory-block.h Guard memory block allocation. 2018-09-24 11:23:35 +00:00
mkconfig.sh
mode-classes.def
mode-switching.c
modulo-sched.c
multiple_target.c Redirect call within specific target attribute among MV clones (PR ipa/82625). 2018-10-04 14:36:55 +00:00
omp-builtins.def
omp-expand.c tree.h (BLOCK_ORIGIN): New. 2018-09-28 11:33:29 +00:00
omp-expand.h
omp-general.c
omp-general.h
omp-grid.c
omp-grid.h
omp-low.c re PR middle-end/85488 (segmentation fault when compiling code using the ordered(n) clause in OpenMP 4.5) 2018-10-20 00:52:06 +02:00
omp-low.h
omp-offload.c
omp-offload.h
omp-simd-clone.c
omp-simd-clone.h
ONEWS
opt-functions.awk
opt-gather.awk
opt-include.awk
opt-problem.cc Report vectorization problems via a new opt_problem class 2018-10-04 17:50:52 +00:00
opt-problem.h Fix compilation failure with C++98 compilers 2018-10-13 12:19:09 +01:00
opt-read.awk
opt-suggestions.c opt-suggestions.c: fix minor memory leak 2018-09-28 17:49:48 +00:00
opt-suggestions.h
optabs-libfuncs.c
optabs-libfuncs.h
optabs-query.c
optabs-query.h
optabs-tree.c
optabs-tree.h
optabs.c
optabs.def
optabs.h
optc-gen.awk
optc-save-gen.awk
opth-gen.awk Cleanup of libcpp diagnostic callbacks 2018-10-09 23:37:19 +00:00
optinfo-emit-json.cc Report vectorization problems via a new opt_problem class 2018-10-04 17:50:52 +00:00
optinfo-emit-json.h
optinfo.cc Report vectorization problems via a new opt_problem class 2018-10-04 17:50:52 +00:00
optinfo.h Report vectorization problems via a new opt_problem class 2018-10-04 17:50:52 +00:00
opts-common.c
opts-diagnostic.h
opts-global.c
opts.c diagnostics: add minimum width to left margin for line numbers 2018-10-15 22:16:59 +00:00
opts.h
output.h
params-enum.h
params-list.h
params-options.h
params.c Remove superfluous assignment in add_params. 2018-10-04 13:06:59 +00:00
params.def Allow setting of stack-clash via configure options. 2018-10-01 13:02:21 +00:00
params.h
pass_manager.h
passes.c Fix -fopt-info for plugin passes 2018-10-04 14:33:47 +00:00
passes.def
plugin.c
plugin.def
plugin.h
poly-int-types.h
poly-int.h
postreload-gcse.c
postreload.c
predict.c
predict.def
predict.h
prefix.c
prefix.h
pretty-print.c
pretty-print.h
print-rtl-function.c
print-rtl.c Elide repeated RTL elements. 2018-10-11 14:00:20 +00:00
print-rtl.h
print-tree.c
print-tree.h
profile-count.c
profile-count.h
profile.c
profile.h
read-md.c
read-md.h
read-rtl-function.c Elide repeated RTL elements. 2018-10-11 14:00:20 +00:00
read-rtl-function.h
read-rtl.c Elide repeated RTL elements. 2018-10-11 14:00:20 +00:00
README.Portability
real.c Add pattern to remove useless float casts in comparisons. 2018-10-12 20:35:20 +00:00
real.h Add pattern to remove useless float casts in comparisons. 2018-10-12 20:35:20 +00:00
realmpfr.c
realmpfr.h
recog.c
recog.h Change EQ_ATTR_ALT to support up to 64 alternatives 2018-09-24 15:01:57 +00:00
ree.c
reg-notes.def
reg-stack.c i386.md (frndintxf2_mask_pm): Remove. 2018-09-25 16:26:11 +02:00
regcprop.c
regcprop.h
reginfo.c
regrename.c
regrename.h
regs.h
regset.h
regstat.c
reload1.c
reload.c
reload.h
reorg.c reorg.c (make_return_insns): Use emit_copy_of_insn_after for the insns in the delay slot and add_insn_after... 2018-10-02 10:20:08 +00:00
resource.c
resource.h
rtl-error.c
rtl-error.h
rtl-iter.h
rtl-tests.c Elide repeated RTL elements. 2018-10-11 14:00:20 +00:00
rtl.c Fix EQ_ATTR_ALT size calculation (PR bootstrap/87417) 2018-09-25 06:38:20 +00:00
rtl.def Change EQ_ATTR_ALT to support up to 64 alternatives 2018-09-24 15:01:57 +00:00
rtl.h
rtlanal.c
rtlhash.c
rtlhash.h
rtlhooks-def.h
rtlhooks.c
rtx-vector-builder.c
rtx-vector-builder.h
run-rtl-passes.c
run-rtl-passes.h
sancov.c
sanitizer.def
sanopt.c
sbitmap.c
sbitmap.h
sched-deps.c
sched-ebb.c
sched-int.h
sched-rgn.c
sel-sched-dump.c
sel-sched-dump.h
sel-sched-ir.c
sel-sched-ir.h
sel-sched.c
sel-sched.h
selftest-diagnostic.c diagnostics: add minimum width to left margin for line numbers 2018-10-15 22:16:59 +00:00
selftest-diagnostic.h
selftest-rtl.c
selftest-rtl.h
selftest-run-tests.c Report vectorization problems via a new opt_problem class 2018-10-04 17:50:52 +00:00
selftest.c
selftest.h Report vectorization problems via a new opt_problem class 2018-10-04 17:50:52 +00:00
sese.c
sese.h
shrink-wrap.c
shrink-wrap.h
signop.h
simplify-rtx.c Limit mask of vec_merge to HOST_BITS_PER_WIDE_INT 2018-10-18 14:29:55 -07:00
sort.cc
sparseset.c
sparseset.h
spellcheck-tree.c
spellcheck-tree.h
spellcheck.c
spellcheck.h
sreal.c
sreal.h
ssa-iterators.h
ssa.h
stab.def
stack-ptr-mod.c
statistics.c
statistics.h
stmt.c
stmt.h
stor-layout.c cfgexpand.c (expand_one_var): Use specific wording in error message for non-local frame variables. 2018-10-19 07:17:20 +00:00
stor-layout.h
store-motion.c
streamer-hooks.c
streamer-hooks.h
stringpool.c
stringpool.h
substring-locations.c
substring-locations.h
symbol-summary.h
symtab.c
sync-builtins.def
system.h
target-def.h
target-globals.c
target-globals.h
target-hooks-macros.h
target-insns.def
target.def re PR rtl-optimization/87466 (IRA and LRA spill all pseudos that are live across setjmp calls) 2018-10-04 08:36:20 -05:00
target.h
targhooks.c Add a hook to support telling the mid-end when to probe the stack. 2018-10-01 12:58:21 +00:00
targhooks.h Add a hook to support telling the mid-end when to probe the stack. 2018-10-01 12:58:21 +00:00
timevar.c
timevar.def
timevar.h
tlink.c
toplev.c diagnostics: add minimum width to left margin for line numbers 2018-10-15 22:16:59 +00:00
toplev.h
tracer.c
tracer.h
trans-mem.c
trans-mem.h
tree-affine.c
tree-affine.h
tree-call-cdce.c
tree-cfg.c
tree-cfg.h
tree-cfgcleanup.c
tree-cfgcleanup.h
tree-chrec.c re PR tree-optimization/87087 (Optimization hangs up and consumes over 15Gb of memory) 2018-10-18 08:40:54 +00:00
tree-chrec.h
tree-complex.c
tree-core.h tree-core.h (tree_block::abstract_flag): Remove. 2018-10-05 11:46:12 +00:00
tree-data-ref.c bitmap.c (bitmap_head::dump): New. 2018-10-17 15:59:25 +00:00
tree-data-ref.h Report vectorization problems via a new opt_problem class 2018-10-04 17:50:52 +00:00
tree-dfa.c
tree-dfa.h
tree-diagnostic.c
tree-diagnostic.h
tree-dump.c
tree-dump.h
tree-eh.c
tree-eh.h
tree-emutls.c
tree-hash-traits.h
tree-hasher.h
tree-if-conv.c Remove unused functions and fields. 2018-09-25 07:13:40 +00:00
tree-if-conv.h
tree-inline.c Redirect call within specific target attribute among MV clones (PR ipa/82625). 2018-10-04 14:36:55 +00:00
tree-inline.h
tree-into-ssa.c
tree-into-ssa.h
tree-iterator.c
tree-iterator.h
tree-loop-distribution.c re PR tree-optimization/87022 (miscompilation with -ftree-loop-distribution) 2018-10-15 11:35:56 +00:00
tree-nested.c calls.c (expand_call): Try to do a tail call for thunks at -O0 too. 2018-09-28 21:20:53 +00:00
tree-nested.h
tree-nrv.c
tree-object-size.c
tree-object-size.h
tree-outof-ssa.c
tree-outof-ssa.h
tree-parloops.c
tree-parloops.h
tree-pass.h
tree-phinodes.c
tree-phinodes.h
tree-predcom.c Report vectorization problems via a new opt_problem class 2018-10-04 17:50:52 +00:00
tree-pretty-print.c tree-core.h (tree_block::abstract_flag): Remove. 2018-10-05 11:46:12 +00:00
tree-pretty-print.h
tree-profile.c Fix divergence in indirect profiling (PR gcov-profile/84107). 2018-10-04 12:41:14 +00:00
tree-scalar-evolution.c
tree-scalar-evolution.h
tree-sra.c
tree-ssa-address.c
tree-ssa-address.h
tree-ssa-alias.c
tree-ssa-alias.h
tree-ssa-ccp.c re PR middle-end/63155 (memory hog) 2018-10-05 12:54:51 +00:00
tree-ssa-ccp.h
tree-ssa-coalesce.c Remove unused functions and fields. 2018-09-25 07:13:40 +00:00
tree-ssa-coalesce.h
tree-ssa-copy.c
tree-ssa-dce.c
tree-ssa-dce.h
tree-ssa-dom.c bitmap.c (bitmap_head::dump): New. 2018-10-17 15:59:25 +00:00
tree-ssa-dom.h
tree-ssa-dse.c
tree-ssa-forwprop.c
tree-ssa-ifcombine.c
tree-ssa-live.c tree-core.h (tree_block::abstract_flag): Remove. 2018-10-05 11:46:12 +00:00
tree-ssa-live.h
tree-ssa-loop-ch.c
tree-ssa-loop-im.c
tree-ssa-loop-ivcanon.c re PR tree-optimization/87465 (Loop removal regression) 2018-10-01 13:10:48 +00:00
tree-ssa-loop-ivopts.c
tree-ssa-loop-ivopts.h
tree-ssa-loop-manip.c
tree-ssa-loop-manip.h
tree-ssa-loop-niter.c bitmap.c (bitmap_head::dump): New. 2018-10-17 15:59:25 +00:00
tree-ssa-loop-niter.h
tree-ssa-loop-prefetch.c
tree-ssa-loop-split.c
tree-ssa-loop-unswitch.c
tree-ssa-loop.c
tree-ssa-loop.h
tree-ssa-math-opts.c
tree-ssa-operands.c
tree-ssa-operands.h
tree-ssa-phionlycprop.c
tree-ssa-phiopt.c
tree-ssa-phiprop.c
tree-ssa-pre.c Remove unused functions and fields. 2018-09-25 07:13:40 +00:00
tree-ssa-propagate.c re PR middle-end/63155 (memory hog) 2018-10-08 07:16:28 +00:00
tree-ssa-propagate.h re PR middle-end/63155 (memory hog) 2018-10-05 12:54:51 +00:00
tree-ssa-reassoc.c
tree-ssa-sccvn.c re PR tree-optimization/87402 (ICE in set_ssa_val_to, at tree-ssa-sccvn.c:3645) 2018-09-25 12:51:57 +00:00
tree-ssa-sccvn.h
tree-ssa-scopedtables.c
tree-ssa-scopedtables.h
tree-ssa-sink.c
tree-ssa-strlen.c bitmap.c (bitmap_head::dump): New. 2018-10-17 15:59:25 +00:00
tree-ssa-strlen.h
tree-ssa-structalias.c re PR middle-end/87610 (wrong-code with restrict) 2018-10-15 10:58:28 +00:00
tree-ssa-tail-merge.c
tree-ssa-ter.c
tree-ssa-ter.h
tree-ssa-threadbackward.c
tree-ssa-threadedge.c bitmap.c (bitmap_head::dump): New. 2018-10-17 15:59:25 +00:00
tree-ssa-threadedge.h
tree-ssa-threadupdate.c
tree-ssa-threadupdate.h
tree-ssa-uncprop.c
tree-ssa-uninit.c Remove unused functions and fields. 2018-09-25 07:13:40 +00:00
tree-ssa.c
tree-ssa.h
tree-ssanames.c bitmap.c (bitmap_head::dump): New. 2018-10-17 15:59:25 +00:00
tree-ssanames.h bitmap.c (bitmap_head::dump): New. 2018-10-17 15:59:25 +00:00
tree-stdarg.c
tree-stdarg.h
tree-streamer-in.c tree-core.h (tree_block::abstract_flag): Remove. 2018-10-05 11:46:12 +00:00
tree-streamer-out.c tree-core.h (tree_block::abstract_flag): Remove. 2018-10-05 11:46:12 +00:00
tree-streamer.c
tree-streamer.h
tree-switch-conversion.c
tree-switch-conversion.h
tree-tailcall.c
tree-vect-data-refs.c Report vectorization problems via a new opt_problem class 2018-10-04 17:50:52 +00:00
tree-vect-generic.c
tree-vect-loop-manip.c Add -fopt-info-internals 2018-10-04 17:41:08 +00:00
tree-vect-loop.c tree-vect-loop.c (vect_compute_single_scalar_iteration_cost): Open a dump scope. 2018-10-08 12:29:51 +00:00
tree-vect-patterns.c bitmap.c (bitmap_head::dump): New. 2018-10-17 15:59:25 +00:00
tree-vect-slp.c Report vectorization problems via a new opt_problem class 2018-10-04 17:50:52 +00:00
tree-vect-stmts.c Report vectorization problems via a new opt_problem class 2018-10-04 17:50:52 +00:00
tree-vector-builder.c
tree-vector-builder.h
tree-vectorizer.c [PR87563][AARCH64-SVE]: Don't keep ifcvt loop when COND_<OP> ifn could not be vectorized. 2018-10-15 16:49:05 +00:00
tree-vectorizer.h tree-vect-loop.c (vect_compute_single_scalar_iteration_cost): Open a dump scope. 2018-10-08 12:29:51 +00:00
tree-vrp.c bitmap.c (bitmap_head::dump): New. 2018-10-17 15:59:25 +00:00
tree-vrp.h bitmap.c (bitmap_head::dump): New. 2018-10-17 15:59:25 +00:00
tree.c tree-core.h (tree_block::abstract_flag): Remove. 2018-10-05 11:46:12 +00:00
tree.def tree-core.h (tree_block::abstract_flag): Remove. 2018-10-05 11:46:12 +00:00
tree.h tree-core.h (tree_block::abstract_flag): Remove. 2018-10-05 11:46:12 +00:00
treestruct.def
tsan.c
tsan.h
tsystem.h
typeclass.h
typed-splay-tree.c
typed-splay-tree.h
ubsan.c
ubsan.h
unique-ptr-tests.cc
valtrack.c
valtrack.h
value-prof.c Fix divergence in indirect profiling (PR gcov-profile/84107). 2018-10-04 12:41:14 +00:00
value-prof.h
var-tracking.c
varasm.c re PR middle-end/87647 (ICE on valid code in decode_addr_const, at varasm.c:2958) 2018-10-20 10:58:00 +02:00
varasm.h
varpool.c
vec-perm-indices.c
vec-perm-indices.h
vec.c
vec.h
vector-builder.h
version.c
version.h
vmsdbg.h
vmsdbgout.c
vr-values.c bitmap.c (bitmap_head::dump): New. 2018-10-17 15:59:25 +00:00
vr-values.h bitmap.c (bitmap_head::dump): New. 2018-10-17 15:59:25 +00:00
vtable-verify.c
vtable-verify.h
web.c
wide-int-bitmask.h
wide-int-print.cc
wide-int-print.h
wide-int-range.cc tree-vrp.c (extract_range_from_multiplicative_op): Remove overflow wraps argument. 2018-10-17 12:32:08 +00:00
wide-int-range.h tree-vrp.c (extract_range_from_multiplicative_op): Remove overflow wraps argument. 2018-10-17 12:32:08 +00:00
wide-int.cc
wide-int.h
xcoff.h
xcoffout.c
xcoffout.h

Copyright (C) 2000-2018 Free Software Foundation, Inc.

This file is intended to contain a few notes about writing C code
within GCC so that it compiles without error on the full range of
compilers GCC needs to be able to compile on.

The problem is that many ISO-standard constructs are not accepted by
either old or buggy compilers, and we keep getting bitten by them.
This knowledge until now has been sparsely spread around, so I
thought I'd collect it in one useful place.  Please add and correct
any problems as you come across them.

I'm going to start from a base of the ISO C90 standard, since that is
probably what most people code to naturally.  Obviously using
constructs introduced after that is not a good idea.

For the complete coding style conventions used in GCC, please read
http://gcc.gnu.org/codingconventions.html


String literals
---------------

Some compilers like MSVC++ have fairly low limits on the maximum
length of a string literal; 509 is the lowest we've come across.  You
may need to break up a long printf statement into many smaller ones.


Empty macro arguments
---------------------

ISO C (6.8.3 in the 1990 standard) specifies the following:

If (before argument substitution) any argument consists of no
preprocessing tokens, the behavior is undefined.

This was relaxed by ISO C99, but some older compilers emit an error,
so code like

#define foo(x, y) x y
foo (bar, )

needs to be coded in some other way.


Avoid unnecessary test before free
----------------------------------

Since SunOS 4 stopped being a reasonable portability target,
(which happened around 2007) there has been no need to guard
against "free (NULL)".  Thus, any guard like the following
constitutes a redundant test:

  if (P)
    free (P);

It is better to avoid the test.[*]
Instead, simply free P, regardless of whether it is NULL.

[*] However, if your profiling exposes a test like this in a
performance-critical loop, say where P is nearly always NULL, and
the cost of calling free on a NULL pointer would be prohibitively
high, consider using __builtin_expect, e.g., like this:

  if (__builtin_expect (ptr != NULL, 0))
    free (ptr);



Trigraphs
---------

You weren't going to use them anyway, but some otherwise ISO C
compliant compilers do not accept trigraphs.


Suffixes on Integer Constants
-----------------------------

You should never use a 'l' suffix on integer constants ('L' is fine),
since it can easily be confused with the number '1'.


			Common Coding Pitfalls
			======================

errno
-----

errno might be declared as a macro.


Implicit int
------------

In C, the 'int' keyword can often be omitted from type declarations.
For instance, you can write

  unsigned variable;

as shorthand for

  unsigned int variable;

There are several places where this can cause trouble.  First, suppose
'variable' is a long; then you might think

  (unsigned) variable

would convert it to unsigned long.  It does not.  It converts to
unsigned int.  This mostly causes problems on 64-bit platforms, where
long and int are not the same size.

Second, if you write a function definition with no return type at
all:

  operate (int a, int b)
  {
    ...
  }

that function is expected to return int, *not* void.  GCC will warn
about this.

Implicit function declarations always have return type int.  So if you
correct the above definition to

  void
  operate (int a, int b)
  ...

but operate() is called above its definition, you will get an error
about a "type mismatch with previous implicit declaration".  The cure
is to prototype all functions at the top of the file, or in an
appropriate header.

Char vs unsigned char vs int
----------------------------

In C, unqualified 'char' may be either signed or unsigned; it is the
implementation's choice.  When you are processing 7-bit ASCII, it does
not matter.  But when your program must handle arbitrary binary data,
or fully 8-bit character sets, you have a problem.  The most obvious
issue is if you have a look-up table indexed by characters.

For instance, the character '\341' in ISO Latin 1 is SMALL LETTER A
WITH ACUTE ACCENT.  In the proper locale, isalpha('\341') will be
true.  But if you read '\341' from a file and store it in a plain
char, isalpha(c) may look up character 225, or it may look up
character -31.  And the ctype table has no entry at offset -31, so
your program will crash.  (If you're lucky.)

It is wise to use unsigned char everywhere you possibly can.  This
avoids all these problems.  Unfortunately, the routines in <string.h>
take plain char arguments, so you have to remember to cast them back
and forth - or avoid the use of strxxx() functions, which is probably
a good idea anyway.

Another common mistake is to use either char or unsigned char to
receive the result of getc() or related stdio functions.  They may
return EOF, which is outside the range of values representable by
char.  If you use char, some legal character value may be confused
with EOF, such as '\377' (SMALL LETTER Y WITH UMLAUT, in Latin-1).
The correct choice is int.

A more subtle version of the same mistake might look like this:

  unsigned char pushback[NPUSHBACK];
  int pbidx;
  #define unget(c) (assert(pbidx < NPUSHBACK), pushback[pbidx++] = (c))
  #define get(c) (pbidx ? pushback[--pbidx] : getchar())
  ...
  unget(EOF);

which will mysteriously turn a pushed-back EOF into a SMALL LETTER Y
WITH UMLAUT.


Other common pitfalls
---------------------

o Expecting 'plain' char to be either sign or unsigned extending.

o Shifting an item by a negative amount or by greater than or equal to
  the number of bits in a type (expecting shifts by 32 to be sensible
  has caused quite a number of bugs at least in the early days).

o Expecting ints shifted right to be sign extended.

o Modifying the same value twice within one sequence point.

o Host vs. target floating point representation, including emitting NaNs
  and Infinities in a form that the assembler handles.

o qsort being an unstable sort function (unstable in the sense that
  multiple items that sort the same may be sorted in different orders
  by different qsort functions).

o Passing incorrect types to fprintf and friends.

o Adding a function declaration for a module declared in another file to
  a .c file instead of to a .h file.