freebsd-dev/sys/libkern
Tom Rhodes a122cca953 These are changes to allow to use the Intel C/C++ compiler (lang/icc)
to build the kernel. It doesn't affect the operation if gcc.

Most of the changes are just adding __INTEL_COMPILER to #ifdef's, as
icc v8 may define __GNUC__ some parts may look strange but are
necessary.

Additional changes:
 - in_cksum.[ch]:
   * use a generic C version instead of the assembly version in the !gcc
     case (ASM code breaks with the optimizations icc does)
     -> no bad checksums with an icc compiled kernel
     Help from:		andre, grehan, das
     Stolen from: 	alpha version via ppc version
     The entire checksum code should IMHO be replaced with the DragonFly
     version (because it isn't guaranteed future revisions of gcc will
     include similar optimizations) as in:
        ---snip---
          Revision  Changes    Path
          1.12      +1 -0      src/sys/conf/files.i386
          1.4       +142 -558  src/sys/i386/i386/in_cksum.c
          1.5       +33 -69    src/sys/i386/include/in_cksum.h
          1.5       +2 -0      src/sys/netinet/igmp.c
          1.6       +0 -1      src/sys/netinet/in.h
          1.6       +2 -0      src/sys/netinet/ip_icmp.c

          1.4       +3 -4      src/contrib/ipfilter/ip_compat.h
          1.3       +1 -2      src/sbin/natd/icmp.c
          1.4       +0 -1      src/sbin/natd/natd.c
          1.48      +1 -0      src/sys/conf/files
          1.2       +0 -1      src/sys/conf/files.amd64
          1.13      +0 -1      src/sys/conf/files.i386
          1.5       +0 -1      src/sys/conf/files.pc98
          1.7       +1 -1      src/sys/contrib/ipfilter/netinet/fil.c
          1.10      +2 -3      src/sys/contrib/ipfilter/netinet/ip_compat.h
          1.10      +1 -1      src/sys/contrib/ipfilter/netinet/ip_fil.c
          1.7       +1 -1      src/sys/dev/netif/txp/if_txp.c
          1.7       +1 -1      src/sys/net/ip_mroute/ip_mroute.c
          1.7       +1 -2      src/sys/net/ipfw/ip_fw2.c
          1.6       +1 -2      src/sys/netinet/igmp.c
          1.4       +158 -116  src/sys/netinet/in_cksum.c
          1.6       +1 -1      src/sys/netinet/ip_gre.c
          1.7       +1 -2      src/sys/netinet/ip_icmp.c
          1.10      +1 -1      src/sys/netinet/ip_input.c
          1.10      +1 -2      src/sys/netinet/ip_output.c
          1.13      +1 -2      src/sys/netinet/tcp_input.c
          1.9       +1 -2      src/sys/netinet/tcp_output.c
          1.10      +1 -1      src/sys/netinet/tcp_subr.c
          1.10      +1 -1      src/sys/netinet/tcp_syncache.c
          1.9       +1 -2      src/sys/netinet/udp_usrreq.c

          1.5       +1 -2      src/sys/netinet6/ipsec.c
          1.5       +1 -2      src/sys/netproto/ipsec/ipsec.c
          1.5       +1 -1      src/sys/netproto/ipsec/ipsec_input.c
          1.4       +1 -2      src/sys/netproto/ipsec/ipsec_output.c

          and finally remove
            sys/i386/i386        in_cksum.c
            sys/i386/include     in_cksum.h
        ---snip---
 - endian.h:
   * DTRT in C++ mode
 - quad.h:
   * we don't use gcc v1 anymore, remove support for it
   Suggested by:	bde (long ago)
 - assym.h:
   * avoid zero-length arrays (remove dependency on a gcc specific
     feature)
     This change changes the contents of the object file, but as it's
     only used to generate some values for a header, and the generator
     knows how to handle this, there's no impact in the gcc case.
   Explained by:	bde
   Submitted by:	Marius Strobl <marius@alchemy.franken.de>
 - aicasm.c:
   * minor change to teach it about the way icc spells "-nostdinc"
   Not approved by:	gibbs (no reply to my mail)
 - bump __FreeBSD_version (lang/icc needs to know about the changes)

Incarnations of this patch survive gcc compiles since a loooong time,
I use it on my desktop. An icc compiled kernel works since Nov. 2003
(exceptions: snd_* if used as modules), it survives a build of the
entire ports collection with icc.

Parts of this commit contains suggestions or submissions from
Marius Strobl <marius@alchemy.franken.de>.

Reviewed by:	-arch
Submitted by:	netchild
2004-03-12 21:45:33 +00:00
..
alpha
ia64 Improve a comment and undo a bogus s/a/an/ in a comment. An asm guru 2003-02-11 20:15:11 +00:00
arc4random.c Lock down arc4random so it can be safely called w/o Giant. 2003-08-15 06:34:47 +00:00
ashldi3.c Use __FBSDID(). 2003-06-11 05:37:42 +00:00
ashrdi3.c Use __FBSDID(). 2003-06-11 05:37:42 +00:00
bcd.c Use __FBSDID(). 2003-06-11 05:37:42 +00:00
bcmp.c Remove register keyword and constify tmp values. This fixes 2004-02-12 03:23:13 +00:00
bsearch.c Use __FBSDID(). 2003-06-11 05:37:42 +00:00
crc32.c Use __FBSDID(). 2003-06-11 05:37:42 +00:00
divdi3.c Use __FBSDID(). 2003-06-11 05:37:42 +00:00
ffs.c Translate from GNU C to ISO C. 2004-01-14 07:47:10 +00:00
ffsl.c Translate from GNU C to ISO C. 2004-01-14 07:47:10 +00:00
fls.c Translate from GNU C to ISO C. 2004-01-14 07:47:10 +00:00
flsl.c Translate from GNU C to ISO C. 2004-01-14 07:47:10 +00:00
fnmatch.c Use __FBSDID(). 2003-06-11 05:37:42 +00:00
iconv_converter_if.m - Support for multibyte charsets in LIBICONV. 2003-09-26 20:26:25 +00:00
iconv_xlat16.c Make msdosfs long filenames matching case insensitive again. 2003-12-08 08:32:20 +00:00
iconv_xlat.c - Support for multibyte charsets in LIBICONV. 2003-09-26 20:26:25 +00:00
iconv.c - Support for multibyte charsets in LIBICONV. 2003-09-26 20:26:25 +00:00
index.c Use __FBSDID(). 2003-06-11 05:37:42 +00:00
inet_ntoa.c Use __FBSDID(). 2003-06-11 05:37:42 +00:00
lshrdi3.c Use __FBSDID(). 2003-06-11 05:37:42 +00:00
mcount.c Use __FBSDID(). 2003-06-11 05:37:42 +00:00
moddi3.c Use __FBSDID(). 2003-06-11 05:37:42 +00:00
qdivrem.c Use __FBSDID(). 2003-06-11 05:37:42 +00:00
qsort.c Use __FBSDID(). 2003-06-11 05:37:42 +00:00
quad.h These are changes to allow to use the Intel C/C++ compiler (lang/icc) 2004-03-12 21:45:33 +00:00
random.c Lower initial drop value to 50, it is enough to hide linearity 2003-08-10 17:56:58 +00:00
rindex.c Use __FBSDID(). 2003-06-11 05:37:42 +00:00
scanc.c Backed out the micro-optimization in 1.4. It was to help gcc-2.6.3 2003-07-25 15:54:23 +00:00
skpc.c Use __FBSDID(). 2003-06-11 05:37:42 +00:00
strcat.c Use __FBSDID(). 2003-06-11 05:37:42 +00:00
strcmp.c Use __FBSDID(). 2003-06-11 05:37:42 +00:00
strcpy.c Use __FBSDID(). 2003-06-11 05:37:42 +00:00
strdup.c Use __FBSDID(). 2003-06-11 05:37:42 +00:00
strlcat.c Use sys/libkern.h not /usr/include/string.h 2002-09-06 06:04:36 +00:00
strlcpy.c Use sys/libkern.h not /usr/include/string.h 2002-09-06 06:04:36 +00:00
strlen.c Use __FBSDID(). 2003-06-11 05:37:42 +00:00
strncmp.c Use __FBSDID(). 2003-06-11 05:37:42 +00:00
strncpy.c Use __FBSDID(). 2003-06-11 05:37:42 +00:00
strsep.c Hook up strsep(3) to libkern following a repo-copy by Peter. This will 2002-10-10 17:02:11 +00:00
strtol.c Use __FBSDID(). 2003-06-11 05:37:42 +00:00
strtoq.c Use __FBSDID(). 2003-06-11 05:37:42 +00:00
strtoul.c Use __FBSDID(). 2003-06-11 05:37:42 +00:00
strtouq.c Use __FBSDID(). 2003-06-11 05:37:42 +00:00
strvalid.c Use __FBSDID(). 2003-06-11 05:37:42 +00:00
ucmpdi2.c Use __FBSDID(). 2003-06-11 05:37:42 +00:00
udivdi3.c Use __FBSDID(). 2003-06-11 05:37:42 +00:00
umoddi3.c Use __FBSDID(). 2003-06-11 05:37:42 +00:00