author | twisti |
Fri, 13 Feb 2009 09:09:35 -0800 | |
changeset 2031 | 24e034f56dcb |
child 5547 | f4b087cbb361 |
permissions | -rw-r--r-- |
2031
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
1 |
/* |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
2 |
* Copyright 2009 Sun Microsystems, Inc. All Rights Reserved. |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
4 |
* |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
8 |
* |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
13 |
* accompanied this code). |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
14 |
* |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
18 |
* |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
19 |
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
20 |
* CA 95054 USA or visit www.sun.com if you need additional information or |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
21 |
* have any questions. |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
22 |
*/ |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
23 |
|
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
24 |
/** |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
25 |
* @test |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
26 |
* @bug 6603011 |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
27 |
* @summary long/int division by constant |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
28 |
* |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
29 |
* @run main/othervm -Xcomp -Xbatch -XX:-Inline Test |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
30 |
*/ |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
31 |
|
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
32 |
// |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
33 |
// -XX:-Inline is essential to this test so that verification functions |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
34 |
// divi, modi, divl and modl generate "plain" divides. |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
35 |
// -Xcomp -Xbatch are also useful to ensure the full range of |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
36 |
// dividend and divisor combinations are tested |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
37 |
// |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
38 |
|
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
39 |
import java.net.*; |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
40 |
|
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
41 |
class s { |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
42 |
static int divi(int dividend, int divisor) { return dividend / divisor; } |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
43 |
static int modi(int dividend, int divisor) { return dividend % divisor; } |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
44 |
static long divl(long dividend, long divisor) { return dividend / divisor; } |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
45 |
static long modl(long dividend, long divisor) { return dividend % divisor; } |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
46 |
} |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
47 |
|
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
48 |
public class Test implements Runnable { |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
49 |
// Report verbose messages on failure; turn off to suppress |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
50 |
// too much output with gross numbers of failures. |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
51 |
static final boolean VERBOSE = true; |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
52 |
|
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
53 |
// Initailize DIVISOR so that it is final in this class. |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
54 |
static final int DIVISOR; |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
55 |
static { |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
56 |
int value = 0; |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
57 |
try { |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
58 |
value = Integer.decode(System.getProperty("divisor")); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
59 |
} catch (Throwable e) { |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
60 |
} |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
61 |
DIVISOR = value; |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
62 |
} |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
63 |
|
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
64 |
// The methods of interest. We want the JIT to compile these |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
65 |
// and convert the divide into a multiply. |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
66 |
public int divbyI (int dividend) { return dividend / DIVISOR; } |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
67 |
public int modbyI (int dividend) { return dividend % DIVISOR; } |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
68 |
public long divbyL (long dividend) { return dividend / DIVISOR; } |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
69 |
public long modbyL (long dividend) { return dividend % DIVISOR; } |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
70 |
|
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
71 |
public int divisor() { return DIVISOR; } |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
72 |
|
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
73 |
public boolean checkI (int dividend) { |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
74 |
int quo = divbyI(dividend); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
75 |
int rem = modbyI(dividend); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
76 |
int quo0 = s.divi(dividend, divisor()); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
77 |
int rem0 = s.modi(dividend, divisor()); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
78 |
|
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
79 |
if (quo != quo0 || rem != rem0) { |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
80 |
if (VERBOSE) { |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
81 |
System.out.println("Computed: " + dividend + " / " + divisor() + " = " + |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
82 |
quo + ", " + dividend + " % " + divisor() + " = " + rem ); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
83 |
System.out.println("expected: " + dividend + " / " + divisor() + " = " + |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
84 |
quo0 + ", " + dividend + " % " + divisor() + " = " + rem0); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
85 |
// Report sign of rem failure |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
86 |
if (rem != 0 && (rem ^ dividend) < 0) { |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
87 |
System.out.println(" rem & dividend have different signs"); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
88 |
} |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
89 |
// Report range of rem failure |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
90 |
if (java.lang.Math.abs(rem) >= java.lang.Math.abs(divisor())) { |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
91 |
System.out.println(" remainder out of range"); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
92 |
} |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
93 |
// Report quo/rem identity relationship failure |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
94 |
if ((quo * divisor()) + rem != dividend) { |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
95 |
System.out.println(" quotien/remainder invariant broken"); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
96 |
} |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
97 |
} |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
98 |
return false; |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
99 |
} |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
100 |
return true; |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
101 |
} |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
102 |
|
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
103 |
public boolean checkL (long dividend) { |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
104 |
long quo = divbyL(dividend); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
105 |
long rem = modbyL(dividend); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
106 |
long quo0 = s.divl(dividend, divisor()); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
107 |
long rem0 = s.modl(dividend, divisor()); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
108 |
|
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
109 |
if (quo != quo0 || rem != rem0) { |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
110 |
if (VERBOSE) { |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
111 |
System.out.println(" " + dividend + " / " + divisor() + " = " + |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
112 |
quo + ", " + dividend + " % " + divisor() + " = " + rem); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
113 |
// Report sign of rem failure |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
114 |
if (rem != 0 && (rem ^ dividend) < 0) { |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
115 |
System.out.println(" rem & dividend have different signs"); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
116 |
} |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
117 |
// Report range of rem failure |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
118 |
if (java.lang.Math.abs(rem) >= java.lang.Math.abs(divisor())) { |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
119 |
System.out.println(" remainder out of range"); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
120 |
} |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
121 |
// Report quo/rem identity relationship failure |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
122 |
if ((quo * divisor()) + rem != dividend) { |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
123 |
System.out.println(" (" + quo + " * " + divisor() + ") + " + rem + " != " |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
124 |
+ dividend); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
125 |
} |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
126 |
} |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
127 |
return false; |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
128 |
} |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
129 |
return true; |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
130 |
} |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
131 |
|
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
132 |
public void run() { |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
133 |
// Don't try to divide by zero |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
134 |
if (divisor() == 0) return; |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
135 |
|
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
136 |
// Range of dividends to check. Try dividends from start to end |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
137 |
// inclusive, as well as variations on those values as shifted |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
138 |
// left. |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
139 |
int start = -1024; |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
140 |
int end = 1024; |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
141 |
|
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
142 |
// Test int division using a variety of dividends. |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
143 |
int wrong = 0; |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
144 |
int total = 0; |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
145 |
|
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
146 |
outerloop: |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
147 |
for (int i = start; i <= end; i++) { |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
148 |
for (int s = 0; s < 32; s += 4) { |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
149 |
total++; |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
150 |
int dividend = i << s; |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
151 |
if (!checkI(dividend)) { |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
152 |
wrong++; |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
153 |
// Stop on the first failure |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
154 |
// break outerloop; |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
155 |
} |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
156 |
} |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
157 |
} |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
158 |
if (wrong > 0) { |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
159 |
System.out.println("divisor " + divisor() + ": " + |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
160 |
wrong + "/" + total + " wrong int divisions"); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
161 |
} |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
162 |
|
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
163 |
// Test long division using a variety of dividends. |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
164 |
wrong = 0; |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
165 |
total = 0; |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
166 |
|
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
167 |
outerloop: |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
168 |
for (int i = start; i <= end; i++) { |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
169 |
for (int s = 0; s < 64; s += 4) { |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
170 |
total++; |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
171 |
long dividend = i << s; |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
172 |
if (!checkL(dividend)) { |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
173 |
wrong++; |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
174 |
// Stop on the first failure |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
175 |
// break outerloop; |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
176 |
} |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
177 |
} |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
178 |
} |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
179 |
if (wrong > 0) { |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
180 |
System.out.println("divisor " + divisor() + ": " + |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
181 |
wrong + "/" + total + " wrong long divisions"); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
182 |
} |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
183 |
|
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
184 |
} |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
185 |
|
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
186 |
// Reload this class with the "divisor" property set to the input parameter. |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
187 |
// This allows the JIT to see q.DIVISOR as a final constant, and change |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
188 |
// any divisions or mod operations into multiplies. |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
189 |
public static void test_divisor(int divisor, |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
190 |
URLClassLoader apploader) throws Exception { |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
191 |
System.setProperty("divisor", "" + divisor); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
192 |
ClassLoader loader = new URLClassLoader(apploader.getURLs(), |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
193 |
apploader.getParent()); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
194 |
Class c = loader.loadClass("Test"); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
195 |
Runnable r = (Runnable)c.newInstance(); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
196 |
r.run(); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
197 |
} |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
198 |
|
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
199 |
public static void main(String[] args) throws Exception { |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
200 |
Class cl = Class.forName("Test"); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
201 |
URLClassLoader apploader = (URLClassLoader)cl.getClassLoader(); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
202 |
|
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
203 |
|
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
204 |
// Test every divisor between -100 and 100. |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
205 |
for (int i = -100; i <= 100; i++) { |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
206 |
test_divisor(i, apploader); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
207 |
} |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
208 |
|
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
209 |
// Try a few divisors outside the typical range. |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
210 |
// The values below have been observed in rt.jar. |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
211 |
test_divisor(101, apploader); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
212 |
test_divisor(400, apploader); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
213 |
test_divisor(1000, apploader); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
214 |
test_divisor(3600, apploader); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
215 |
test_divisor(9973, apploader); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
216 |
test_divisor(86400, apploader); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
217 |
test_divisor(1000000, apploader); |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
218 |
} |
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
219 |
|
24e034f56dcb
6800154: Add comments to long_by_long_mulhi() for better understandability
twisti
parents:
diff
changeset
|
220 |
} |