hotspot/agent/make/build-pkglist
author roland
Wed, 14 Sep 2011 09:22:51 +0200
changeset 11196 a310a659c580
parent 1073 3ca36e11142b
permissions -rw-r--r--
7077312: Provide a CALL effect for instruct declaration in the ad file Summary: abstracted way to declare that the MachNode has the effect of a call (kills caller save registers, preserves callee save registers) Reviewed-by: twisti, never
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
1073
3ca36e11142b 6731958: Include all the SA classes into sa-jdi.jar
poonam
parents: 1
diff changeset
    11
$CD ../src/share/classes; $FIND sun/jvm/hotspot com/sun/java/swing -type d -print | $SED -e 's/\//./g' | $SORT > ../../../make/pkglist.txt