jdk/test/com/sun/jdi/DeoptimizeWalk.sh
author ihse
Tue, 09 May 2017 12:57:30 +0200
changeset 45028 b0ea3c0bfb81
parent 32018 91c91b3d50a0
permissions -rw-r--r--
8179889: Fix typographic errors in copyright headers Reviewed-by: erikj, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
#!/bin/sh
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
#
45028
b0ea3c0bfb81 8179889: Fix typographic errors in copyright headers
ihse
parents: 32018
diff changeset
     4
# Copyright (c) 2002, 2014, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
# This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
# under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
# published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
# accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
# questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
#  @test
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#  @bug 4525714
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#  @summary jtreg test PopAsynchronousTest fails in build 85 with -Xcomp
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
#  @author Jim Holmlund/Swamy Venkataramanappa
32018
91c91b3d50a0 8132094: Mark intermittently failuring core-svc tests
ykantser
parents: 31909
diff changeset
    30
#  @key intermittent
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
#  @run shell DeoptimizeWalk.sh
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
#  This is another test of the same bug.  The bug occurs when trying
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
#  to walk the stack of a deoptimized thread.  We can do this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
#  by running in -Xcomp mode and by doing a step which causes deopt,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
#  and then a 'where'.  This will cause not all the frames to be shown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
compileOptions=-g
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
echo "*********** This test only fails with -Xcomp ***************"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
createJavaFile()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    cat <<EOF > $1.java.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
public class $1 {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    static public void main(String[] args) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
       $1 mine = new $1();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
       mine.a1(89);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    public void a1(int p1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
      int v1 = 89;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
      System.out.println("a1" + v1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
      a2(89);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    public void a2(int pp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
      int v2 = 89;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
      System.out.println("a2" + v2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
      a3(89);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    public void a3(int pp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
      int v3 = 89;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
      System.out.println("a3");  //@ 1 breakpoint
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
      a4(22);                  // it passes if this line is commented out
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
      System.out.println("jj");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    }
23046
0b0407b1e2a5 6946101: ShellScaffold.sh based tests can issue "write error: Broken pipe" messages
iignatyev
parents: 5506
diff changeset
    70
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    public void a4(int pp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
      int v4 = 90;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
      System.out.println("a4: @1 breakpoint here");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
EOF
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
# This is called to feed cmds to jdb.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
dojdbCmds()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    setBkpts @1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    runToBkpt @1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    cmd where
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    #cmd next
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    cmd step
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    cmd where
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
mysetup()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    if [ -z "$TESTSRC" ] ; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        TESTSRC=.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    for ii in . $TESTSRC $TESTSRC/.. ; do
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        if [ -r "$ii/ShellScaffold.sh" ] ; then
45028
b0ea3c0bfb81 8179889: Fix typographic errors in copyright headers
ihse
parents: 32018
diff changeset
    99
            . $ii/ShellScaffold.sh
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
            break
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    done
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
# You could replace this next line with the contents
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
# of ShellScaffold.sh and this script will run just the same.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
mysetup
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
runit
23046
0b0407b1e2a5 6946101: ShellScaffold.sh based tests can issue "write error: Broken pipe" messages
iignatyev
parents: 5506
diff changeset
   110
jdbFailIfNotPresent "shtest\.main" 3
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
debuggeeFailIfPresent "Internal exception:"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
pass