Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/hotspot/jtreg/vmTestbase/jit/t/t049/t049.java
40948 views
1
/*
2
* Copyright (c) 2008, 2020, 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
*/
23
24
/*
25
* @test
26
*
27
* @summary converted from VM Testbase jit/t/t049.
28
* VM Testbase keywords: [jit, quick]
29
*
30
* @library /vmTestbase
31
* /test/lib
32
* @run main/othervm jit.t.t049.t049
33
*/
34
35
package jit.t.t049;
36
37
import nsk.share.TestFailure;
38
import nsk.share.GoldChecker;
39
40
// Register jams and spills
41
42
public class t049
43
{
44
public static final GoldChecker goldChecker = new GoldChecker( "t049" );
45
46
static void intRems()
47
{
48
int a, b, c, d, e, f, g, h, i, j, k, l, z;
49
50
a=1; b=2; c=3; d=4; e=5; f=6; g=7; h=8; i=9; j=10; k=11; l=12;
51
z = (a%b) % ((c%d) % ((e%f) % ((g%h) % ((i%j) % (k%l)))));
52
t049.goldChecker.println("Int: " + z);
53
}
54
55
static void longRems()
56
{
57
long a, b, c, d, e, f, g, h, i, j, k, l, z;
58
59
a=1; b=2; c=3; d=4; e=5; f=6; g=7; h=8; i=9; j=10; k=11; l=12;
60
z = (a%b) % ((c%d) % ((e%f) % ((g%h) % ((i%j) % (k%l)))));
61
t049.goldChecker.println("Long: " + z);
62
}
63
64
static void floatRems()
65
{
66
float a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, z;
67
68
a=1; b=2; c=3; d=4; e=5; f=6; g=7; h=8; i=9; j=10; k=11; l=12;
69
m=13; n=14; o=15; p=16; q=17; r=18; s=19; t=20;
70
z = (a%b) % ((c%d) % ((e%f) % ((g%h) % ((i%j) % ((k%l) % ((m%n) %
71
((o%p) % ((q%r) % (s%t)))))))));
72
t049.goldChecker.println("Float: " + z);
73
}
74
75
static void doubleRems()
76
{
77
double a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, z;
78
79
a=1; b=2; c=3; d=4; e=5; f=6; g=7; h=8; i=9; j=10; k=11; l=12;
80
m=13; n=14; o=15; p=16; q=17; r=18; s=19; t=20;
81
z = (a%b) % ((c%d) % ((e%f) % ((g%h) % ((i%j) % ((k%l) % ((m%n) %
82
((o%p) % ((q%r) % (s%t)))))))));
83
t049.goldChecker.println("Double: " + z);
84
}
85
86
public static void main(String argv[])
87
{
88
intRems();
89
longRems();
90
floatRems();
91
doubleRems();
92
t049.goldChecker.check();
93
}
94
}
95
96