f8d9fa9e80
This upgrades all of libgo other than the runtime package to the Go 1.4 release. In Go 1.4 much of the runtime was rewritten into Go. Merging that code will take more time and will not change the API, so I'm putting it off for now. There are a few runtime changes anyhow, to accomodate other packages that rely on minor modifications to the runtime support. The compiler changes slightly to add a one-bit flag to each type descriptor kind that is stored directly in an interface, which for gccgo is currently only pointer types. Another one-bit flag (gcprog) is reserved because it is used by the gc compiler, but gccgo does not currently use it. There is another error check in the compiler since I ran across it during testing. gotools/: * Makefile.am (go_cmd_go_files): Sort entries. Add generate.go. * Makefile.in: Rebuild. From-SVN: r219627
222 lines
5.7 KiB
Bash
Executable File
222 lines
5.7 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# Copyright 2009 The Go Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style
|
|
# license that can be found in the LICENSE file.
|
|
|
|
# This script merges changes from the master copy of the Go library
|
|
# into the libgo library. This does the easy stuff; the hard stuff is
|
|
# left to the user.
|
|
|
|
# The file MERGE should hold the Mercurial revision number of the last
|
|
# revision which was merged into these sources. Given that, and given
|
|
# the current sources, we can run the usual diff3 algorithm to merge
|
|
# all changes into our sources.
|
|
|
|
set -e
|
|
|
|
TMPDIR=${TMPDIR:-/tmp}
|
|
|
|
OLDDIR=${TMPDIR}/libgo-merge-old
|
|
NEWDIR=${TMPDIR}/libgo-merge-new
|
|
|
|
if ! test -f MERGE; then
|
|
echo 1>&2 "merge.sh: must be run in libgo source directory"
|
|
exit 1
|
|
fi
|
|
|
|
rev=weekly
|
|
case $# in
|
|
1) ;;
|
|
2) rev=$2 ;;
|
|
*)
|
|
echo 1>&2 "merge.sh: Usage: merge.sh mercurial-repository [revision]"
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
repository=$1
|
|
|
|
old_rev=`sed 1q MERGE`
|
|
|
|
rm -rf ${OLDDIR}
|
|
hg clone -r ${old_rev} ${repository} ${OLDDIR}
|
|
|
|
rm -rf ${NEWDIR}
|
|
hg clone -u ${rev} ${repository} ${NEWDIR}
|
|
|
|
new_rev=`cd ${NEWDIR} && hg log -r ${rev} | sed 1q | sed -e 's/.*://'`
|
|
|
|
merge() {
|
|
name=$1
|
|
old=$2
|
|
new=$3
|
|
libgo=$4
|
|
if ! test -f ${new}; then
|
|
# The file does not exist in the new version.
|
|
if ! test -f ${old}; then
|
|
echo 1>&2 "merge.sh internal error no files $old $new"
|
|
exit 1
|
|
fi
|
|
if ! test -f ${libgo}; then
|
|
# File removed in new version and libgo.
|
|
:;
|
|
else
|
|
echo "merge.sh: ${name}: REMOVED"
|
|
rm -f ${libgo}
|
|
hg rm ${libgo}
|
|
fi
|
|
elif test -f ${old}; then
|
|
# The file exists in the old version.
|
|
if ! test -f ${libgo}; then
|
|
echo "merge.sh: $name: skipping: exists in old and new hg, but not in libgo"
|
|
continue
|
|
fi
|
|
if cmp -s ${old} ${libgo}; then
|
|
# The libgo file is unchanged from the old version.
|
|
if cmp -s ${new} ${libgo}; then
|
|
# File is unchanged from old to new version.
|
|
continue
|
|
fi
|
|
# Update file in libgo.
|
|
echo "merge.sh: $name: updating"
|
|
cp ${new} ${libgo}
|
|
else
|
|
# The libgo file has local changes.
|
|
set +e
|
|
diff3 -m -E ${libgo} ${old} ${new} > ${libgo}.tmp
|
|
status=$?
|
|
set -e
|
|
case $status in
|
|
0)
|
|
echo "merge.sh: $name: updating"
|
|
mv ${libgo}.tmp ${libgo}
|
|
;;
|
|
1)
|
|
echo "merge.sh: $name: CONFLICTS"
|
|
mv ${libgo}.tmp ${libgo}
|
|
hg resolve -u ${libgo}
|
|
;;
|
|
*)
|
|
echo 1>&2 "merge.sh: $name: diff3 failure"
|
|
exit 1
|
|
;;
|
|
esac
|
|
fi
|
|
else
|
|
# The file does not exist in the old version.
|
|
if test -f ${libgo}; then
|
|
if ! cmp -s ${new} ${libgo}; then
|
|
echo 1>&2 "merge.sh: $name: IN NEW AND LIBGO BUT NOT OLD"
|
|
fi
|
|
else
|
|
echo "merge.sh: $name: NEW"
|
|
dir=`dirname ${libgo}`
|
|
if ! test -d ${dir}; then
|
|
mkdir -p ${dir}
|
|
fi
|
|
cp ${new} ${libgo}
|
|
hg add ${libgo}
|
|
fi
|
|
fi
|
|
}
|
|
|
|
merge_c() {
|
|
from=$1
|
|
to=$2
|
|
oldfile=${OLDDIR}/src/runtime/$from
|
|
if test -f ${oldfile}; then
|
|
sed -e 's/·/_/g' < ${oldfile} > ${oldfile}.tmp
|
|
oldfile=${oldfile}.tmp
|
|
newfile=${NEWDIR}/src/runtime/$from
|
|
sed -e 's/·/_/g' < ${newfile} > ${newfile}.tmp
|
|
newfile=${newfile}.tmp
|
|
libgofile=runtime/$to
|
|
merge $from ${oldfile} ${newfile} ${libgofile}
|
|
fi
|
|
}
|
|
|
|
(cd ${NEWDIR}/src && find . -name '*.go' -print) | while read f; do
|
|
oldfile=${OLDDIR}/src/$f
|
|
newfile=${NEWDIR}/src/$f
|
|
libgofile=go/$f
|
|
merge $f ${oldfile} ${newfile} ${libgofile}
|
|
done
|
|
|
|
(cd ${NEWDIR}/src && find . -name testdata -print) | while read d; do
|
|
oldtd=${OLDDIR}/src/$d
|
|
newtd=${NEWDIR}/src/$d
|
|
libgotd=go/$d
|
|
if ! test -d ${oldtd}; then
|
|
continue
|
|
fi
|
|
(cd ${oldtd} && hg status -A .) | while read f; do
|
|
if test "`basename $f`" = ".hgignore"; then
|
|
continue
|
|
fi
|
|
f=`echo $f | sed -e 's/^..//'`
|
|
name=$d/$f
|
|
oldfile=${oldtd}/$f
|
|
newfile=${newtd}/$f
|
|
libgofile=${libgotd}/$f
|
|
merge ${name} ${oldfile} ${newfile} ${libgofile}
|
|
done
|
|
done
|
|
|
|
cmdlist="cgo go gofmt"
|
|
for c in $cmdlist; do
|
|
(cd ${NEWDIR}/src/cmd/$c && find . -name '*.go' -print) | while read f; do
|
|
oldfile=${OLDDIR}/src/cmd/$c/$f
|
|
newfile=${NEWDIR}/src/cmd/$c/$f
|
|
libgofile=go/cmd/$c/$f
|
|
merge $f ${oldfile} ${newfile} ${libgofile}
|
|
done
|
|
|
|
(cd ${NEWDIR}/src/cmd/$c && find . -name testdata -print) | while read d; do
|
|
oldtd=${OLDDIR}/src/cmd/$c/$d
|
|
newtd=${NEWDIR}/src/cmd/$c/$d
|
|
libgotd=go/cmd/$c/$d
|
|
if ! test -d ${oldtd}; then
|
|
continue
|
|
fi
|
|
(cd ${oldtd} && hg status -A .) | while read f; do
|
|
if test "`basename $f`" = ".hgignore"; then
|
|
continue
|
|
fi
|
|
f=`echo $f | sed -e 's/^..//'`
|
|
name=$d/$f
|
|
oldfile=${oldtd}/$f
|
|
newfile=${newtd}/$f
|
|
libgofile=${libgotd}/$f
|
|
merge ${name} ${oldfile} ${newfile} ${libgofile}
|
|
done
|
|
done
|
|
done
|
|
|
|
runtime="chan.goc chan.h cpuprof.goc env_posix.c heapdump.c lock_futex.c lfstack.goc lock_sema.c mcache.c mcentral.c mfixalloc.c mgc0.c mgc0.h mheap.c msize.c netpoll.goc netpoll_epoll.c netpoll_kqueue.c netpoll_stub.c panic.c print.c proc.c race.h rdebug.goc runtime.c runtime.h signal_unix.c signal_unix.h malloc.h malloc.goc mprof.goc parfor.c runtime1.goc sema.goc sigqueue.goc string.goc time.goc"
|
|
for f in $runtime; do
|
|
# merge_c $f $f
|
|
true
|
|
done
|
|
|
|
# merge_c os_linux.c thread-linux.c
|
|
# merge_c mem_linux.c mem.c
|
|
|
|
(cd ${OLDDIR}/src && find . -name '*.go' -print) | while read f; do
|
|
oldfile=${OLDDIR}/src/$f
|
|
newfile=${NEWDIR}/src/$f
|
|
libgofile=go/$f
|
|
if test -f ${newfile}; then
|
|
continue
|
|
fi
|
|
if ! test -f ${libgofile}; then
|
|
continue
|
|
fi
|
|
echo "merge.sh: ${libgofile}: REMOVED"
|
|
rm -f ${libgofile}
|
|
hg rm ${libgofile}
|
|
done
|
|
|
|
(echo ${new_rev}; sed -ne '2,$p' MERGE) > MERGE.tmp
|
|
mv MERGE.tmp MERGE
|