annotate make/bsd/makefiles/build_vm_def.sh @ 20627:e7b3d177adda

8057622: java/util/stream/test/org/openjdk/tests/java/util/stream/InfiniteStreamWithLimitOpTest: SEGV inside compiled code (sparc) Summary: In Parse::array_store_check(), add control edge FROM IfTrue branch of runtime type check of the destination array TO loading _element_klass from destination array. Reviewed-by: kvn, roland, anoll Contributed-by: Zoltan Majo <zoltan.majo@oracle.com>
author zmajo
date Mon, 10 Nov 2014 17:14:59 +0100
parents 91acb82a8b7a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
1 #!/bin/sh
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
2
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
3 # If we're cross compiling use that path for nm
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
4 if [ "$CROSS_COMPILE_ARCH" != "" ]; then
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
5 NM=$ALT_COMPILER_PATH/nm
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
6 else
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
7 NM=nm
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
8 fi
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
9
11026
91acb82a8b7a 8014326: [OSX] All libjvm symbols are exported
dholmes
parents: 3960
diff changeset
10 $NM -Uj $* | awk '
91acb82a8b7a 8014326: [OSX] All libjvm symbols are exported
dholmes
parents: 3960
diff changeset
11 { if ($3 ~ /^_ZTV/ || $3 ~ /^gHotSpotVM/) print "\t" $3 }
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
12 '