BC_lookupswitch02.java revision 12657:6ef01bd40ce2
1/*
2 * Copyright (c) 2007, 2012, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
23package org.graalvm.compiler.jtt.bytecode;
24
25import org.junit.Test;
26
27import org.graalvm.compiler.jtt.JTTTest;
28
29/*
30 */
31public class BC_lookupswitch02 extends JTTTest {
32
33    public static int test(int a) {
34        final int b = a;
35        switch (b) {
36            case 67:
37                return 0;
38            case 97:
39                return 1;
40            case 107:
41                return 2;
42            case 133:
43                return 3;
44            case 212:
45                return 4;
46            case -122:
47                return 5;
48        }
49        return 42;
50    }
51
52    @Test
53    public void run0() throws Throwable {
54        runTest("test", 0);
55    }
56
57    @Test
58    public void run1() throws Throwable {
59        runTest("test", 1);
60    }
61
62    @Test
63    public void run2() throws Throwable {
64        runTest("test", 66);
65    }
66
67    @Test
68    public void run3() throws Throwable {
69        runTest("test", 67);
70    }
71
72    @Test
73    public void run4() throws Throwable {
74        runTest("test", 68);
75    }
76
77    @Test
78    public void run5() throws Throwable {
79        runTest("test", 96);
80    }
81
82    @Test
83    public void run6() throws Throwable {
84        runTest("test", 97);
85    }
86
87    @Test
88    public void run7() throws Throwable {
89        runTest("test", 98);
90    }
91
92    @Test
93    public void run8() throws Throwable {
94        runTest("test", 106);
95    }
96
97    @Test
98    public void run9() throws Throwable {
99        runTest("test", 107);
100    }
101
102    @Test
103    public void run10() throws Throwable {
104        runTest("test", 108);
105    }
106
107    @Test
108    public void run11() throws Throwable {
109        runTest("test", 132);
110    }
111
112    @Test
113    public void run12() throws Throwable {
114        runTest("test", 133);
115    }
116
117    @Test
118    public void run13() throws Throwable {
119        runTest("test", 134);
120    }
121
122    @Test
123    public void run14() throws Throwable {
124        runTest("test", 211);
125    }
126
127    @Test
128    public void run15() throws Throwable {
129        runTest("test", 212);
130    }
131
132    @Test
133    public void run16() throws Throwable {
134        runTest("test", 213);
135    }
136
137    @Test
138    public void run17() throws Throwable {
139        runTest("test", -121);
140    }
141
142    @Test
143    public void run18() throws Throwable {
144        runTest("test", -122);
145    }
146
147    @Test
148    public void run19() throws Throwable {
149        runTest("test", -123);
150    }
151
152}
153