hotspot/agent/make/build-pkglist
author kvn
Mon, 25 Feb 2008 15:05:44 -0800
changeset 202 dc13bf0e5d5d
parent 1 489c9b5090e2
child 1073 3ca36e11142b
permissions -rw-r--r--
6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM Summary: T_ADDRESS size is defined as 'int' size (4 bytes) but C2 use it for raw pointers and as memory type for StoreP and LoadP nodes. Reviewed-by: jrose
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
#!/bin/sh -f
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
SH=`which sh`
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
MKS_HOME=`dirname $SH`
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
CD=cd
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
FIND=$MKS_HOME/find
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
SED=$MKS_HOME/sed
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
SORT=$MKS_HOME/sort
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
$CD ../src/share/classes; $FIND sun/jvm/hotspot \( -name SCCS -prune \) -o -type d -print | $SED -e 's/\//./g' | $SORT > ../../../make/pkglist.txt