test/hotspot/jtreg/compiler/loopopts/Test6855164.java
author jiangli
Fri, 02 Nov 2018 19:30:31 -0400
changeset 52397 1322829d1501
parent 47216 71c04702a3d5
permissions -rw-r--r--
8209564: runtime/appcds/CDSandJFR.java timeout on tier6 on sparc Summary: Set timeout 500 in CDSandJFR.java Reviewed-by: dcubed
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3188
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
     1
/*
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3188
diff changeset
     2
 * Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved.
3188
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
     4
 *
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
     7
 * published by the Free Software Foundation.
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
     8
 *
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    13
 * accompanied this code).
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    14
 *
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3188
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3188
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3188
diff changeset
    21
 * questions.
3188
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    22
 */
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    23
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    24
/*
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    25
 * @test
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    26
 * @bug 6855164
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    27
 * @summary SIGSEGV during compilation of method involving loop over CharSequence
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 27699
diff changeset
    28
 *
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 27699
diff changeset
    29
 * @run main/othervm -Xbatch compiler.loopopts.Test6855164
3188
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    30
 */
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    31
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 27699
diff changeset
    32
package compiler.loopopts;
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 27699
diff changeset
    33
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 27699
diff changeset
    34
public class Test6855164 {
3188
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    35
    public static void main(String[] args) throws Exception {
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    36
        StringBuffer builder = new StringBuffer();
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    37
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    38
        for(int i = 0; i < 100; i++)
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    39
            builder.append("I am the very model of a modern major general\n");
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    40
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    41
        for(int j = 0; j < builder.length(); j++){
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    42
            previousSpaceIndex(builder, j);
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    43
        }
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    44
    }
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    45
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    46
    private static final int previousSpaceIndex(CharSequence sb, int seek) {
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    47
        seek--;
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    48
        while (seek > 0) {
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    49
            if (sb.charAt(seek) == ' ') {
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    50
                while (seek > 0 && sb.charAt(seek - 1) == ' ')
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    51
                    seek--;
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    52
                return seek;
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    53
            }
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    54
            seek--;
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    55
        }
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    56
        return 0;
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    57
    }
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    58
}