summaryrefslogtreecommitdiffstats
path: root/libgo
diff options
context:
space:
mode:
authorian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>2012-04-20 20:11:28 +0000
committerian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>2012-04-20 20:11:28 +0000
commitb21c9c86c1804600a626c6071e474c998b4f7046 (patch)
tree008ea10059bb6030b63b115261d375197090725c /libgo
parent29a2d1d882d48402827e0cbe85b819c828921d09 (diff)
downloadppe42-gcc-b21c9c86c1804600a626c6071e474c998b4f7046.tar.gz
ppe42-gcc-b21c9c86c1804600a626c6071e474c998b4f7046.zip
net, syscall: Use native endianness for GNU/Linux netlink code.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@186640 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgo')
-rw-r--r--libgo/Makefile.am1
-rw-r--r--libgo/Makefile.in2
-rwxr-xr-xlibgo/configure11
-rw-r--r--libgo/configure.ac6
-rw-r--r--libgo/go/net/interface_linux.go17
-rw-r--r--libgo/go/syscall/netlink_linux.go43
-rw-r--r--libgo/testsuite/Makefile.in1
7 files changed, 14 insertions, 67 deletions
diff --git a/libgo/Makefile.am b/libgo/Makefile.am
index e19cdf0a36d..11a650be689 100644
--- a/libgo/Makefile.am
+++ b/libgo/Makefile.am
@@ -1559,7 +1559,6 @@ s-syscall_arch: Makefile
echo "package syscall" > syscall_arch.go.tmp
echo 'const ARCH = "'$(GOARCH)'"' >> syscall_arch.go.tmp
echo 'const OS = "'$(GOOS)'"' >> syscall_arch.go.tmp
- echo 'const BigEndian = $(GO_BIGENDIAN)' >> syscall_arch.go.tmp
$(SHELL) $(srcdir)/../move-if-change syscall_arch.go.tmp syscall_arch.go
$(STAMP) $@
diff --git a/libgo/Makefile.in b/libgo/Makefile.in
index c7740cf80e1..f790205bed4 100644
--- a/libgo/Makefile.in
+++ b/libgo/Makefile.in
@@ -369,7 +369,6 @@ GOARCH = @GOARCH@
GOC = @GOC@
GOCFLAGS = $(CFLAGS)
GOOS = @GOOS@
-GO_BIGENDIAN = @GO_BIGENDIAN@
GO_LIBCALL_OS_ARCH_FILE = @GO_LIBCALL_OS_ARCH_FILE@
GO_LIBCALL_OS_FILE = @GO_LIBCALL_OS_FILE@
GO_SYSCALL_OS_ARCH_FILE = @GO_SYSCALL_OS_ARCH_FILE@
@@ -4372,7 +4371,6 @@ s-syscall_arch: Makefile
echo "package syscall" > syscall_arch.go.tmp
echo 'const ARCH = "'$(GOARCH)'"' >> syscall_arch.go.tmp
echo 'const OS = "'$(GOOS)'"' >> syscall_arch.go.tmp
- echo 'const BigEndian = $(GO_BIGENDIAN)' >> syscall_arch.go.tmp
$(SHELL) $(srcdir)/../move-if-change syscall_arch.go.tmp syscall_arch.go
$(STAMP) $@
diff --git a/libgo/configure b/libgo/configure
index e58b238cd0f..937db19eeba 100755
--- a/libgo/configure
+++ b/libgo/configure
@@ -612,7 +612,6 @@ HAVE_STRERROR_R_FALSE
HAVE_STRERROR_R_TRUE
HAVE_SYS_MMAN_H_FALSE
HAVE_SYS_MMAN_H_TRUE
-GO_BIGENDIAN
PTHREAD_LIBS
PTHREAD_CFLAGS
NET_LIBS
@@ -11101,7 +11100,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11104 "configure"
+#line 11103 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11207,7 +11206,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11210 "configure"
+#line 11209 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -14409,12 +14408,6 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
presetting ac_cv_c_bigendian=no (or yes) will help" "$LINENO" 5 ;;
esac
-case $ac_cv_c_bigendian in
- yes) GO_BIGENDIAN=true ;;
- no) GO_BIGENDIAN=false ;;
- *) as_fn_error "unknown endianness" "$LINENO" 5 ;;
-esac
-
diff --git a/libgo/configure.ac b/libgo/configure.ac
index f1d0bfc8b32..84bf641a929 100644
--- a/libgo/configure.ac
+++ b/libgo/configure.ac
@@ -400,12 +400,6 @@ dnl Test if -lrt is required for sched_yield.
AC_SEARCH_LIBS([sched_yield], [rt])
AC_C_BIGENDIAN
-case $ac_cv_c_bigendian in
- yes) GO_BIGENDIAN=true ;;
- no) GO_BIGENDIAN=false ;;
- *) AC_MSG_ERROR([unknown endianness]) ;;
-esac
-AC_SUBST(GO_BIGENDIAN)
GCC_CHECK_UNWIND_GETIPINFO
diff --git a/libgo/go/net/interface_linux.go b/libgo/go/net/interface_linux.go
index 0d7017f301e..ce2e921e865 100644
--- a/libgo/go/net/interface_linux.go
+++ b/libgo/go/net/interface_linux.go
@@ -64,11 +64,7 @@ func newLink(ifim *syscall.IfInfomsg, attrs []syscall.NetlinkRouteAttr) Interfac
case syscall.IFLA_IFNAME:
ifi.Name = string(a.Value[:len(a.Value)-1])
case syscall.IFLA_MTU:
- if syscall.BigEndian {
- ifi.MTU = int(uint32(a.Value[0])<<24 | uint32(a.Value[1])<<16 | uint32(a.Value[2])<<8 | uint32(a.Value[3]))
- } else {
- ifi.MTU = int(uint32(a.Value[3])<<24 | uint32(a.Value[2])<<16 | uint32(a.Value[1])<<8 | uint32(a.Value[0]))
- }
+ ifi.MTU = int(*(*uint32)(unsafe.Pointer(&a.Value[:4][0])))
}
}
return ifi
@@ -197,15 +193,14 @@ func parseProcNetIGMP(path string, ifi *Interface) []Addr {
name = f[1]
case len(f[0]) == 8:
if ifi == nil || name == ifi.Name {
+ // The Linux kernel puts the IP
+ // address in /proc/net/igmp in native
+ // endianness.
for i := 0; i+1 < len(f[0]); i += 2 {
b[i/2], _ = xtoi2(f[0][i:i+2], 0)
}
- var ifma IPAddr
- if syscall.BigEndian {
- ifma = IPAddr{IP: IPv4(b[0], b[1], b[2], b[3])}
- } else {
- ifma = IPAddr{IP: IPv4(b[3], b[2], b[1], b[0])}
- }
+ i := *(*uint32)(unsafe.Pointer(&b[:4][0]))
+ ifma := IPAddr{IP: IPv4(byte(i>>24), byte(i>>16), byte(i>>8), byte(i))}
ifmat = append(ifmat, ifma.toAddr())
}
}
diff --git a/libgo/go/syscall/netlink_linux.go b/libgo/go/syscall/netlink_linux.go
index 1c99a81785f..d535713069b 100644
--- a/libgo/go/syscall/netlink_linux.go
+++ b/libgo/go/syscall/netlink_linux.go
@@ -30,43 +30,12 @@ type NetlinkRouteRequest struct {
func (rr *NetlinkRouteRequest) toWireFormat() []byte {
b := make([]byte, rr.Header.Len)
- if BigEndian {
- b[0] = byte(rr.Header.Len >> 24)
- b[1] = byte(rr.Header.Len >> 16)
- b[2] = byte(rr.Header.Len >> 8)
- b[3] = byte(rr.Header.Len)
- b[4] = byte(rr.Header.Type >> 8)
- b[5] = byte(rr.Header.Type)
- b[6] = byte(rr.Header.Flags >> 8)
- b[7] = byte(rr.Header.Flags)
- b[8] = byte(rr.Header.Seq >> 24)
- b[9] = byte(rr.Header.Seq >> 16)
- b[10] = byte(rr.Header.Seq >> 8)
- b[11] = byte(rr.Header.Seq)
- b[12] = byte(rr.Header.Pid >> 24)
- b[13] = byte(rr.Header.Pid >> 16)
- b[14] = byte(rr.Header.Pid >> 8)
- b[15] = byte(rr.Header.Pid)
- b[16] = byte(rr.Data.Family)
- } else {
- b[0] = byte(rr.Header.Len)
- b[1] = byte(rr.Header.Len >> 8)
- b[2] = byte(rr.Header.Len >> 16)
- b[3] = byte(rr.Header.Len >> 24)
- b[4] = byte(rr.Header.Type)
- b[5] = byte(rr.Header.Type >> 8)
- b[6] = byte(rr.Header.Flags)
- b[7] = byte(rr.Header.Flags >> 8)
- b[8] = byte(rr.Header.Seq)
- b[9] = byte(rr.Header.Seq >> 8)
- b[10] = byte(rr.Header.Seq >> 16)
- b[11] = byte(rr.Header.Seq >> 24)
- b[12] = byte(rr.Header.Pid)
- b[13] = byte(rr.Header.Pid >> 8)
- b[14] = byte(rr.Header.Pid >> 16)
- b[15] = byte(rr.Header.Pid >> 24)
- b[16] = byte(rr.Data.Family)
- }
+ *(*uint32)(unsafe.Pointer(&b[0:4][0])) = rr.Header.Len
+ *(*uint16)(unsafe.Pointer(&b[4:6][0])) = rr.Header.Type
+ *(*uint16)(unsafe.Pointer(&b[6:8][0])) = rr.Header.Flags
+ *(*uint32)(unsafe.Pointer(&b[8:12][0])) = rr.Header.Seq
+ *(*uint32)(unsafe.Pointer(&b[12:16][0])) = rr.Header.Pid
+ b[16] = byte(rr.Data.Family)
return b
}
diff --git a/libgo/testsuite/Makefile.in b/libgo/testsuite/Makefile.in
index 56808efd168..4628fdd919b 100644
--- a/libgo/testsuite/Makefile.in
+++ b/libgo/testsuite/Makefile.in
@@ -86,7 +86,6 @@ GOARCH = @GOARCH@
GOC = @GOC@
GOCFLAGS = @GOCFLAGS@
GOOS = @GOOS@
-GO_BIGENDIAN = @GO_BIGENDIAN@
GO_LIBCALL_OS_ARCH_FILE = @GO_LIBCALL_OS_ARCH_FILE@
GO_LIBCALL_OS_FILE = @GO_LIBCALL_OS_FILE@
GO_SYSCALL_OS_ARCH_FILE = @GO_SYSCALL_OS_ARCH_FILE@
OpenPOWER on IntegriCloud