annotate src/share/vm/opto/parse2.cpp @ 196:d1605aabd0a1 jdk7-b30

6719955: Update copyright year Summary: Update copyright year for files that have been modified in 2008 Reviewed-by: ohair, tbell
author xdono
date Wed, 02 Jul 2008 12:55:16 -0700
parents c0939256690b
children 9c2ecc2ffb12
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
196
d1605aabd0a1 6719955: Update copyright year
xdono
parents: 129
diff changeset
2 * Copyright 1998-2008 Sun Microsystems, Inc. All Rights Reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 #include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 #include "incls/_parse2.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 extern int explicit_null_checks_inserted,
a61af66fc99e Initial load
duke
parents:
diff changeset
29 explicit_null_checks_elided;
a61af66fc99e Initial load
duke
parents:
diff changeset
30
a61af66fc99e Initial load
duke
parents:
diff changeset
31 //---------------------------------array_load----------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
32 void Parse::array_load(BasicType elem_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
33 const Type* elem = Type::TOP;
a61af66fc99e Initial load
duke
parents:
diff changeset
34 Node* adr = array_addressing(elem_type, 0, &elem);
a61af66fc99e Initial load
duke
parents:
diff changeset
35 if (stopped()) return; // guarenteed null or range check
a61af66fc99e Initial load
duke
parents:
diff changeset
36 _sp -= 2; // Pop array and index
a61af66fc99e Initial load
duke
parents:
diff changeset
37 const TypeAryPtr* adr_type = TypeAryPtr::get_array_body_type(elem_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
38 Node* ld = make_load(control(), adr, elem, elem_type, adr_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
39 push(ld);
a61af66fc99e Initial load
duke
parents:
diff changeset
40 }
a61af66fc99e Initial load
duke
parents:
diff changeset
41
a61af66fc99e Initial load
duke
parents:
diff changeset
42
a61af66fc99e Initial load
duke
parents:
diff changeset
43 //--------------------------------array_store----------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
44 void Parse::array_store(BasicType elem_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
45 Node* adr = array_addressing(elem_type, 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
46 if (stopped()) return; // guarenteed null or range check
a61af66fc99e Initial load
duke
parents:
diff changeset
47 Node* val = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
48 _sp -= 2; // Pop array and index
a61af66fc99e Initial load
duke
parents:
diff changeset
49 const TypeAryPtr* adr_type = TypeAryPtr::get_array_body_type(elem_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
50 store_to_memory(control(), adr, val, elem_type, adr_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
51 }
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 //------------------------------array_addressing-------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // Pull array and index from the stack. Compute pointer-to-element.
a61af66fc99e Initial load
duke
parents:
diff changeset
56 Node* Parse::array_addressing(BasicType type, int vals, const Type* *result2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
57 Node *idx = peek(0+vals); // Get from stack without popping
a61af66fc99e Initial load
duke
parents:
diff changeset
58 Node *ary = peek(1+vals); // in case of exception
a61af66fc99e Initial load
duke
parents:
diff changeset
59
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // Null check the array base, with correct stack contents
a61af66fc99e Initial load
duke
parents:
diff changeset
61 ary = do_null_check(ary, T_ARRAY);
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // Compile-time detect of null-exception?
a61af66fc99e Initial load
duke
parents:
diff changeset
63 if (stopped()) return top();
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 const TypeAryPtr* arytype = _gvn.type(ary)->is_aryptr();
a61af66fc99e Initial load
duke
parents:
diff changeset
66 const TypeInt* sizetype = arytype->size();
a61af66fc99e Initial load
duke
parents:
diff changeset
67 const Type* elemtype = arytype->elem();
a61af66fc99e Initial load
duke
parents:
diff changeset
68
a61af66fc99e Initial load
duke
parents:
diff changeset
69 if (UseUniqueSubclasses && result2 != NULL) {
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 37
diff changeset
70 const Type* el = elemtype;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 37
diff changeset
71 if (elemtype->isa_narrowoop()) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 37
diff changeset
72 el = elemtype->is_narrowoop()->make_oopptr();
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 37
diff changeset
73 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 37
diff changeset
74 const TypeInstPtr* toop = el->isa_instptr();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
75 if (toop) {
a61af66fc99e Initial load
duke
parents:
diff changeset
76 if (toop->klass()->as_instance_klass()->unique_concrete_subklass()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // If we load from "AbstractClass[]" we must see "ConcreteSubClass".
a61af66fc99e Initial load
duke
parents:
diff changeset
78 const Type* subklass = Type::get_const_type(toop->klass());
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 37
diff changeset
79 elemtype = subklass->join(el);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
80 }
a61af66fc99e Initial load
duke
parents:
diff changeset
81 }
a61af66fc99e Initial load
duke
parents:
diff changeset
82 }
a61af66fc99e Initial load
duke
parents:
diff changeset
83
a61af66fc99e Initial load
duke
parents:
diff changeset
84 // Check for big class initializers with all constant offsets
a61af66fc99e Initial load
duke
parents:
diff changeset
85 // feeding into a known-size array.
a61af66fc99e Initial load
duke
parents:
diff changeset
86 const TypeInt* idxtype = _gvn.type(idx)->is_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
87 // See if the highest idx value is less than the lowest array bound,
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // and if the idx value cannot be negative:
a61af66fc99e Initial load
duke
parents:
diff changeset
89 bool need_range_check = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
90 if (idxtype->_hi < sizetype->_lo && idxtype->_lo >= 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
91 need_range_check = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
92 if (C->log() != NULL) C->log()->elem("observe that='!need_range_check'");
a61af66fc99e Initial load
duke
parents:
diff changeset
93 }
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 if (!arytype->klass()->is_loaded()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // Only fails for some -Xcomp runs
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // The class is unloaded. We have to run this bytecode in the interpreter.
a61af66fc99e Initial load
duke
parents:
diff changeset
98 uncommon_trap(Deoptimization::Reason_unloaded,
a61af66fc99e Initial load
duke
parents:
diff changeset
99 Deoptimization::Action_reinterpret,
a61af66fc99e Initial load
duke
parents:
diff changeset
100 arytype->klass(), "!loaded array");
a61af66fc99e Initial load
duke
parents:
diff changeset
101 return top();
a61af66fc99e Initial load
duke
parents:
diff changeset
102 }
a61af66fc99e Initial load
duke
parents:
diff changeset
103
a61af66fc99e Initial load
duke
parents:
diff changeset
104 // Do the range check
a61af66fc99e Initial load
duke
parents:
diff changeset
105 if (GenerateRangeChecks && need_range_check) {
a61af66fc99e Initial load
duke
parents:
diff changeset
106 // Range is constant in array-oop, so we can use the original state of mem
a61af66fc99e Initial load
duke
parents:
diff changeset
107 Node* len = load_array_length(ary);
129
c0939256690b 6646019: array subscript expressions become top() with -d64
rasbold
parents: 113
diff changeset
108 Node* tst;
c0939256690b 6646019: array subscript expressions become top() with -d64
rasbold
parents: 113
diff changeset
109 if (sizetype->_hi <= 0) {
c0939256690b 6646019: array subscript expressions become top() with -d64
rasbold
parents: 113
diff changeset
110 // If the greatest array bound is negative, we can conclude that we're
c0939256690b 6646019: array subscript expressions become top() with -d64
rasbold
parents: 113
diff changeset
111 // compiling unreachable code, but the unsigned compare trick used below
c0939256690b 6646019: array subscript expressions become top() with -d64
rasbold
parents: 113
diff changeset
112 // only works with non-negative lengths. Instead, hack "tst" to be zero so
c0939256690b 6646019: array subscript expressions become top() with -d64
rasbold
parents: 113
diff changeset
113 // the uncommon_trap path will always be taken.
c0939256690b 6646019: array subscript expressions become top() with -d64
rasbold
parents: 113
diff changeset
114 tst = _gvn.intcon(0);
c0939256690b 6646019: array subscript expressions become top() with -d64
rasbold
parents: 113
diff changeset
115 } else {
c0939256690b 6646019: array subscript expressions become top() with -d64
rasbold
parents: 113
diff changeset
116 // Test length vs index (standard trick using unsigned compare)
c0939256690b 6646019: array subscript expressions become top() with -d64
rasbold
parents: 113
diff changeset
117 Node* chk = _gvn.transform( new (C, 3) CmpUNode(idx, len) );
c0939256690b 6646019: array subscript expressions become top() with -d64
rasbold
parents: 113
diff changeset
118 BoolTest::mask btest = BoolTest::lt;
c0939256690b 6646019: array subscript expressions become top() with -d64
rasbold
parents: 113
diff changeset
119 tst = _gvn.transform( new (C, 2) BoolNode(chk, btest) );
c0939256690b 6646019: array subscript expressions become top() with -d64
rasbold
parents: 113
diff changeset
120 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
121 // Branch to failure if out of bounds
a61af66fc99e Initial load
duke
parents:
diff changeset
122 { BuildCutout unless(this, tst, PROB_MAX);
a61af66fc99e Initial load
duke
parents:
diff changeset
123 if (C->allow_range_check_smearing()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
124 // Do not use builtin_throw, since range checks are sometimes
a61af66fc99e Initial load
duke
parents:
diff changeset
125 // made more stringent by an optimistic transformation.
a61af66fc99e Initial load
duke
parents:
diff changeset
126 // This creates "tentative" range checks at this point,
a61af66fc99e Initial load
duke
parents:
diff changeset
127 // which are not guaranteed to throw exceptions.
a61af66fc99e Initial load
duke
parents:
diff changeset
128 // See IfNode::Ideal, is_range_check, adjust_check.
a61af66fc99e Initial load
duke
parents:
diff changeset
129 uncommon_trap(Deoptimization::Reason_range_check,
a61af66fc99e Initial load
duke
parents:
diff changeset
130 Deoptimization::Action_make_not_entrant,
a61af66fc99e Initial load
duke
parents:
diff changeset
131 NULL, "range_check");
a61af66fc99e Initial load
duke
parents:
diff changeset
132 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
133 // If we have already recompiled with the range-check-widening
a61af66fc99e Initial load
duke
parents:
diff changeset
134 // heroic optimization turned off, then we must really be throwing
a61af66fc99e Initial load
duke
parents:
diff changeset
135 // range check exceptions.
a61af66fc99e Initial load
duke
parents:
diff changeset
136 builtin_throw(Deoptimization::Reason_range_check, idx);
a61af66fc99e Initial load
duke
parents:
diff changeset
137 }
a61af66fc99e Initial load
duke
parents:
diff changeset
138 }
a61af66fc99e Initial load
duke
parents:
diff changeset
139 }
a61af66fc99e Initial load
duke
parents:
diff changeset
140 // Check for always knowing you are throwing a range-check exception
a61af66fc99e Initial load
duke
parents:
diff changeset
141 if (stopped()) return top();
a61af66fc99e Initial load
duke
parents:
diff changeset
142
a61af66fc99e Initial load
duke
parents:
diff changeset
143 Node* ptr = array_element_address( ary, idx, type, sizetype);
a61af66fc99e Initial load
duke
parents:
diff changeset
144
a61af66fc99e Initial load
duke
parents:
diff changeset
145 if (result2 != NULL) *result2 = elemtype;
a61af66fc99e Initial load
duke
parents:
diff changeset
146 return ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
147 }
a61af66fc99e Initial load
duke
parents:
diff changeset
148
a61af66fc99e Initial load
duke
parents:
diff changeset
149
a61af66fc99e Initial load
duke
parents:
diff changeset
150 // returns IfNode
a61af66fc99e Initial load
duke
parents:
diff changeset
151 IfNode* Parse::jump_if_fork_int(Node* a, Node* b, BoolTest::mask mask) {
a61af66fc99e Initial load
duke
parents:
diff changeset
152 Node *cmp = _gvn.transform( new (C, 3) CmpINode( a, b)); // two cases: shiftcount > 32 and shiftcount <= 32
a61af66fc99e Initial load
duke
parents:
diff changeset
153 Node *tst = _gvn.transform( new (C, 2) BoolNode( cmp, mask));
a61af66fc99e Initial load
duke
parents:
diff changeset
154 IfNode *iff = create_and_map_if( control(), tst, ((mask == BoolTest::eq) ? PROB_STATIC_INFREQUENT : PROB_FAIR), COUNT_UNKNOWN );
a61af66fc99e Initial load
duke
parents:
diff changeset
155 return iff;
a61af66fc99e Initial load
duke
parents:
diff changeset
156 }
a61af66fc99e Initial load
duke
parents:
diff changeset
157
a61af66fc99e Initial load
duke
parents:
diff changeset
158 // return Region node
a61af66fc99e Initial load
duke
parents:
diff changeset
159 Node* Parse::jump_if_join(Node* iffalse, Node* iftrue) {
a61af66fc99e Initial load
duke
parents:
diff changeset
160 Node *region = new (C, 3) RegionNode(3); // 2 results
a61af66fc99e Initial load
duke
parents:
diff changeset
161 record_for_igvn(region);
a61af66fc99e Initial load
duke
parents:
diff changeset
162 region->init_req(1, iffalse);
a61af66fc99e Initial load
duke
parents:
diff changeset
163 region->init_req(2, iftrue );
a61af66fc99e Initial load
duke
parents:
diff changeset
164 _gvn.set_type(region, Type::CONTROL);
a61af66fc99e Initial load
duke
parents:
diff changeset
165 region = _gvn.transform(region);
a61af66fc99e Initial load
duke
parents:
diff changeset
166 set_control (region);
a61af66fc99e Initial load
duke
parents:
diff changeset
167 return region;
a61af66fc99e Initial load
duke
parents:
diff changeset
168 }
a61af66fc99e Initial load
duke
parents:
diff changeset
169
a61af66fc99e Initial load
duke
parents:
diff changeset
170
a61af66fc99e Initial load
duke
parents:
diff changeset
171 //------------------------------helper for tableswitch-------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
172 void Parse::jump_if_true_fork(IfNode *iff, int dest_bci_if_true, int prof_table_index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
173 // True branch, use existing map info
a61af66fc99e Initial load
duke
parents:
diff changeset
174 { PreserveJVMState pjvms(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
175 Node *iftrue = _gvn.transform( new (C, 1) IfTrueNode (iff) );
a61af66fc99e Initial load
duke
parents:
diff changeset
176 set_control( iftrue );
a61af66fc99e Initial load
duke
parents:
diff changeset
177 profile_switch_case(prof_table_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
178 merge_new_path(dest_bci_if_true);
a61af66fc99e Initial load
duke
parents:
diff changeset
179 }
a61af66fc99e Initial load
duke
parents:
diff changeset
180
a61af66fc99e Initial load
duke
parents:
diff changeset
181 // False branch
a61af66fc99e Initial load
duke
parents:
diff changeset
182 Node *iffalse = _gvn.transform( new (C, 1) IfFalseNode(iff) );
a61af66fc99e Initial load
duke
parents:
diff changeset
183 set_control( iffalse );
a61af66fc99e Initial load
duke
parents:
diff changeset
184 }
a61af66fc99e Initial load
duke
parents:
diff changeset
185
a61af66fc99e Initial load
duke
parents:
diff changeset
186 void Parse::jump_if_false_fork(IfNode *iff, int dest_bci_if_true, int prof_table_index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
187 // True branch, use existing map info
a61af66fc99e Initial load
duke
parents:
diff changeset
188 { PreserveJVMState pjvms(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
189 Node *iffalse = _gvn.transform( new (C, 1) IfFalseNode (iff) );
a61af66fc99e Initial load
duke
parents:
diff changeset
190 set_control( iffalse );
a61af66fc99e Initial load
duke
parents:
diff changeset
191 profile_switch_case(prof_table_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
192 merge_new_path(dest_bci_if_true);
a61af66fc99e Initial load
duke
parents:
diff changeset
193 }
a61af66fc99e Initial load
duke
parents:
diff changeset
194
a61af66fc99e Initial load
duke
parents:
diff changeset
195 // False branch
a61af66fc99e Initial load
duke
parents:
diff changeset
196 Node *iftrue = _gvn.transform( new (C, 1) IfTrueNode(iff) );
a61af66fc99e Initial load
duke
parents:
diff changeset
197 set_control( iftrue );
a61af66fc99e Initial load
duke
parents:
diff changeset
198 }
a61af66fc99e Initial load
duke
parents:
diff changeset
199
a61af66fc99e Initial load
duke
parents:
diff changeset
200 void Parse::jump_if_always_fork(int dest_bci, int prof_table_index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
201 // False branch, use existing map and control()
a61af66fc99e Initial load
duke
parents:
diff changeset
202 profile_switch_case(prof_table_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
203 merge_new_path(dest_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
204 }
a61af66fc99e Initial load
duke
parents:
diff changeset
205
a61af66fc99e Initial load
duke
parents:
diff changeset
206
a61af66fc99e Initial load
duke
parents:
diff changeset
207 extern "C" {
a61af66fc99e Initial load
duke
parents:
diff changeset
208 static int jint_cmp(const void *i, const void *j) {
a61af66fc99e Initial load
duke
parents:
diff changeset
209 int a = *(jint *)i;
a61af66fc99e Initial load
duke
parents:
diff changeset
210 int b = *(jint *)j;
a61af66fc99e Initial load
duke
parents:
diff changeset
211 return a > b ? 1 : a < b ? -1 : 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
212 }
a61af66fc99e Initial load
duke
parents:
diff changeset
213 }
a61af66fc99e Initial load
duke
parents:
diff changeset
214
a61af66fc99e Initial load
duke
parents:
diff changeset
215
a61af66fc99e Initial load
duke
parents:
diff changeset
216 // Default value for methodData switch indexing. Must be a negative value to avoid
a61af66fc99e Initial load
duke
parents:
diff changeset
217 // conflict with any legal switch index.
a61af66fc99e Initial load
duke
parents:
diff changeset
218 #define NullTableIndex -1
a61af66fc99e Initial load
duke
parents:
diff changeset
219
a61af66fc99e Initial load
duke
parents:
diff changeset
220 class SwitchRange : public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
221 // a range of integers coupled with a bci destination
a61af66fc99e Initial load
duke
parents:
diff changeset
222 jint _lo; // inclusive lower limit
a61af66fc99e Initial load
duke
parents:
diff changeset
223 jint _hi; // inclusive upper limit
a61af66fc99e Initial load
duke
parents:
diff changeset
224 int _dest;
a61af66fc99e Initial load
duke
parents:
diff changeset
225 int _table_index; // index into method data table
a61af66fc99e Initial load
duke
parents:
diff changeset
226
a61af66fc99e Initial load
duke
parents:
diff changeset
227 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
228 jint lo() const { return _lo; }
a61af66fc99e Initial load
duke
parents:
diff changeset
229 jint hi() const { return _hi; }
a61af66fc99e Initial load
duke
parents:
diff changeset
230 int dest() const { return _dest; }
a61af66fc99e Initial load
duke
parents:
diff changeset
231 int table_index() const { return _table_index; }
a61af66fc99e Initial load
duke
parents:
diff changeset
232 bool is_singleton() const { return _lo == _hi; }
a61af66fc99e Initial load
duke
parents:
diff changeset
233
a61af66fc99e Initial load
duke
parents:
diff changeset
234 void setRange(jint lo, jint hi, int dest, int table_index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
235 assert(lo <= hi, "must be a non-empty range");
a61af66fc99e Initial load
duke
parents:
diff changeset
236 _lo = lo, _hi = hi; _dest = dest; _table_index = table_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
237 }
a61af66fc99e Initial load
duke
parents:
diff changeset
238 bool adjoinRange(jint lo, jint hi, int dest, int table_index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
239 assert(lo <= hi, "must be a non-empty range");
a61af66fc99e Initial load
duke
parents:
diff changeset
240 if (lo == _hi+1 && dest == _dest && table_index == _table_index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
241 _hi = hi;
a61af66fc99e Initial load
duke
parents:
diff changeset
242 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
243 }
a61af66fc99e Initial load
duke
parents:
diff changeset
244 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
245 }
a61af66fc99e Initial load
duke
parents:
diff changeset
246
a61af66fc99e Initial load
duke
parents:
diff changeset
247 void set (jint value, int dest, int table_index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
248 setRange(value, value, dest, table_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
249 }
a61af66fc99e Initial load
duke
parents:
diff changeset
250 bool adjoin(jint value, int dest, int table_index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
251 return adjoinRange(value, value, dest, table_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
252 }
a61af66fc99e Initial load
duke
parents:
diff changeset
253
a61af66fc99e Initial load
duke
parents:
diff changeset
254 void print(ciEnv* env) {
a61af66fc99e Initial load
duke
parents:
diff changeset
255 if (is_singleton())
a61af66fc99e Initial load
duke
parents:
diff changeset
256 tty->print(" {%d}=>%d", lo(), dest());
a61af66fc99e Initial load
duke
parents:
diff changeset
257 else if (lo() == min_jint)
a61af66fc99e Initial load
duke
parents:
diff changeset
258 tty->print(" {..%d}=>%d", hi(), dest());
a61af66fc99e Initial load
duke
parents:
diff changeset
259 else if (hi() == max_jint)
a61af66fc99e Initial load
duke
parents:
diff changeset
260 tty->print(" {%d..}=>%d", lo(), dest());
a61af66fc99e Initial load
duke
parents:
diff changeset
261 else
a61af66fc99e Initial load
duke
parents:
diff changeset
262 tty->print(" {%d..%d}=>%d", lo(), hi(), dest());
a61af66fc99e Initial load
duke
parents:
diff changeset
263 }
a61af66fc99e Initial load
duke
parents:
diff changeset
264 };
a61af66fc99e Initial load
duke
parents:
diff changeset
265
a61af66fc99e Initial load
duke
parents:
diff changeset
266
a61af66fc99e Initial load
duke
parents:
diff changeset
267 //-------------------------------do_tableswitch--------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
268 void Parse::do_tableswitch() {
a61af66fc99e Initial load
duke
parents:
diff changeset
269 Node* lookup = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
270
a61af66fc99e Initial load
duke
parents:
diff changeset
271 // Get information about tableswitch
a61af66fc99e Initial load
duke
parents:
diff changeset
272 int default_dest = iter().get_dest_table(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
273 int lo_index = iter().get_int_table(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
274 int hi_index = iter().get_int_table(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
275 int len = hi_index - lo_index + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
276
a61af66fc99e Initial load
duke
parents:
diff changeset
277 if (len < 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
278 // If this is a backward branch, add safepoint
a61af66fc99e Initial load
duke
parents:
diff changeset
279 maybe_add_safepoint(default_dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
280 merge(default_dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
281 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
282 }
a61af66fc99e Initial load
duke
parents:
diff changeset
283
a61af66fc99e Initial load
duke
parents:
diff changeset
284 // generate decision tree, using trichotomy when possible
a61af66fc99e Initial load
duke
parents:
diff changeset
285 int rnum = len+2;
a61af66fc99e Initial load
duke
parents:
diff changeset
286 bool makes_backward_branch = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
287 SwitchRange* ranges = NEW_RESOURCE_ARRAY(SwitchRange, rnum);
a61af66fc99e Initial load
duke
parents:
diff changeset
288 int rp = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
289 if (lo_index != min_jint) {
a61af66fc99e Initial load
duke
parents:
diff changeset
290 ranges[++rp].setRange(min_jint, lo_index-1, default_dest, NullTableIndex);
a61af66fc99e Initial load
duke
parents:
diff changeset
291 }
a61af66fc99e Initial load
duke
parents:
diff changeset
292 for (int j = 0; j < len; j++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
293 jint match_int = lo_index+j;
a61af66fc99e Initial load
duke
parents:
diff changeset
294 int dest = iter().get_dest_table(j+3);
a61af66fc99e Initial load
duke
parents:
diff changeset
295 makes_backward_branch |= (dest <= bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
296 int table_index = method_data_update() ? j : NullTableIndex;
a61af66fc99e Initial load
duke
parents:
diff changeset
297 if (rp < 0 || !ranges[rp].adjoin(match_int, dest, table_index)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
298 ranges[++rp].set(match_int, dest, table_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
299 }
a61af66fc99e Initial load
duke
parents:
diff changeset
300 }
a61af66fc99e Initial load
duke
parents:
diff changeset
301 jint highest = lo_index+(len-1);
a61af66fc99e Initial load
duke
parents:
diff changeset
302 assert(ranges[rp].hi() == highest, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
303 if (highest != max_jint
a61af66fc99e Initial load
duke
parents:
diff changeset
304 && !ranges[rp].adjoinRange(highest+1, max_jint, default_dest, NullTableIndex)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
305 ranges[++rp].setRange(highest+1, max_jint, default_dest, NullTableIndex);
a61af66fc99e Initial load
duke
parents:
diff changeset
306 }
a61af66fc99e Initial load
duke
parents:
diff changeset
307 assert(rp < len+2, "not too many ranges");
a61af66fc99e Initial load
duke
parents:
diff changeset
308
a61af66fc99e Initial load
duke
parents:
diff changeset
309 // Safepoint in case if backward branch observed
a61af66fc99e Initial load
duke
parents:
diff changeset
310 if( makes_backward_branch && UseLoopSafepoints )
a61af66fc99e Initial load
duke
parents:
diff changeset
311 add_safepoint();
a61af66fc99e Initial load
duke
parents:
diff changeset
312
a61af66fc99e Initial load
duke
parents:
diff changeset
313 jump_switch_ranges(lookup, &ranges[0], &ranges[rp]);
a61af66fc99e Initial load
duke
parents:
diff changeset
314 }
a61af66fc99e Initial load
duke
parents:
diff changeset
315
a61af66fc99e Initial load
duke
parents:
diff changeset
316
a61af66fc99e Initial load
duke
parents:
diff changeset
317 //------------------------------do_lookupswitch--------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
318 void Parse::do_lookupswitch() {
a61af66fc99e Initial load
duke
parents:
diff changeset
319 Node *lookup = pop(); // lookup value
a61af66fc99e Initial load
duke
parents:
diff changeset
320 // Get information about lookupswitch
a61af66fc99e Initial load
duke
parents:
diff changeset
321 int default_dest = iter().get_dest_table(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
322 int len = iter().get_int_table(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
323
a61af66fc99e Initial load
duke
parents:
diff changeset
324 if (len < 1) { // If this is a backward branch, add safepoint
a61af66fc99e Initial load
duke
parents:
diff changeset
325 maybe_add_safepoint(default_dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
326 merge(default_dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
327 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
328 }
a61af66fc99e Initial load
duke
parents:
diff changeset
329
a61af66fc99e Initial load
duke
parents:
diff changeset
330 // generate decision tree, using trichotomy when possible
a61af66fc99e Initial load
duke
parents:
diff changeset
331 jint* table = NEW_RESOURCE_ARRAY(jint, len*2);
a61af66fc99e Initial load
duke
parents:
diff changeset
332 {
a61af66fc99e Initial load
duke
parents:
diff changeset
333 for( int j = 0; j < len; j++ ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
334 table[j+j+0] = iter().get_int_table(2+j+j);
a61af66fc99e Initial load
duke
parents:
diff changeset
335 table[j+j+1] = iter().get_dest_table(2+j+j+1);
a61af66fc99e Initial load
duke
parents:
diff changeset
336 }
a61af66fc99e Initial load
duke
parents:
diff changeset
337 qsort( table, len, 2*sizeof(table[0]), jint_cmp );
a61af66fc99e Initial load
duke
parents:
diff changeset
338 }
a61af66fc99e Initial load
duke
parents:
diff changeset
339
a61af66fc99e Initial load
duke
parents:
diff changeset
340 int rnum = len*2+1;
a61af66fc99e Initial load
duke
parents:
diff changeset
341 bool makes_backward_branch = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
342 SwitchRange* ranges = NEW_RESOURCE_ARRAY(SwitchRange, rnum);
a61af66fc99e Initial load
duke
parents:
diff changeset
343 int rp = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
344 for( int j = 0; j < len; j++ ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
345 jint match_int = table[j+j+0];
a61af66fc99e Initial load
duke
parents:
diff changeset
346 int dest = table[j+j+1];
a61af66fc99e Initial load
duke
parents:
diff changeset
347 int next_lo = rp < 0 ? min_jint : ranges[rp].hi()+1;
a61af66fc99e Initial load
duke
parents:
diff changeset
348 int table_index = method_data_update() ? j : NullTableIndex;
a61af66fc99e Initial load
duke
parents:
diff changeset
349 makes_backward_branch |= (dest <= bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
350 if( match_int != next_lo ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
351 ranges[++rp].setRange(next_lo, match_int-1, default_dest, NullTableIndex);
a61af66fc99e Initial load
duke
parents:
diff changeset
352 }
a61af66fc99e Initial load
duke
parents:
diff changeset
353 if( rp < 0 || !ranges[rp].adjoin(match_int, dest, table_index) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
354 ranges[++rp].set(match_int, dest, table_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
355 }
a61af66fc99e Initial load
duke
parents:
diff changeset
356 }
a61af66fc99e Initial load
duke
parents:
diff changeset
357 jint highest = table[2*(len-1)];
a61af66fc99e Initial load
duke
parents:
diff changeset
358 assert(ranges[rp].hi() == highest, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
359 if( highest != max_jint
a61af66fc99e Initial load
duke
parents:
diff changeset
360 && !ranges[rp].adjoinRange(highest+1, max_jint, default_dest, NullTableIndex) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
361 ranges[++rp].setRange(highest+1, max_jint, default_dest, NullTableIndex);
a61af66fc99e Initial load
duke
parents:
diff changeset
362 }
a61af66fc99e Initial load
duke
parents:
diff changeset
363 assert(rp < rnum, "not too many ranges");
a61af66fc99e Initial load
duke
parents:
diff changeset
364
a61af66fc99e Initial load
duke
parents:
diff changeset
365 // Safepoint in case backward branch observed
a61af66fc99e Initial load
duke
parents:
diff changeset
366 if( makes_backward_branch && UseLoopSafepoints )
a61af66fc99e Initial load
duke
parents:
diff changeset
367 add_safepoint();
a61af66fc99e Initial load
duke
parents:
diff changeset
368
a61af66fc99e Initial load
duke
parents:
diff changeset
369 jump_switch_ranges(lookup, &ranges[0], &ranges[rp]);
a61af66fc99e Initial load
duke
parents:
diff changeset
370 }
a61af66fc99e Initial load
duke
parents:
diff changeset
371
a61af66fc99e Initial load
duke
parents:
diff changeset
372 //----------------------------create_jump_tables-------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
373 bool Parse::create_jump_tables(Node* key_val, SwitchRange* lo, SwitchRange* hi) {
a61af66fc99e Initial load
duke
parents:
diff changeset
374 // Are jumptables enabled
a61af66fc99e Initial load
duke
parents:
diff changeset
375 if (!UseJumpTables) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
376
a61af66fc99e Initial load
duke
parents:
diff changeset
377 // Are jumptables supported
a61af66fc99e Initial load
duke
parents:
diff changeset
378 if (!Matcher::has_match_rule(Op_Jump)) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
379
a61af66fc99e Initial load
duke
parents:
diff changeset
380 // Don't make jump table if profiling
a61af66fc99e Initial load
duke
parents:
diff changeset
381 if (method_data_update()) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
382
a61af66fc99e Initial load
duke
parents:
diff changeset
383 // Decide if a guard is needed to lop off big ranges at either (or
a61af66fc99e Initial load
duke
parents:
diff changeset
384 // both) end(s) of the input set. We'll call this the default target
a61af66fc99e Initial load
duke
parents:
diff changeset
385 // even though we can't be sure that it is the true "default".
a61af66fc99e Initial load
duke
parents:
diff changeset
386
a61af66fc99e Initial load
duke
parents:
diff changeset
387 bool needs_guard = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
388 int default_dest;
a61af66fc99e Initial load
duke
parents:
diff changeset
389 int64 total_outlier_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
390 int64 hi_size = ((int64)hi->hi()) - ((int64)hi->lo()) + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
391 int64 lo_size = ((int64)lo->hi()) - ((int64)lo->lo()) + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
392
a61af66fc99e Initial load
duke
parents:
diff changeset
393 if (lo->dest() == hi->dest()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
394 total_outlier_size = hi_size + lo_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
395 default_dest = lo->dest();
a61af66fc99e Initial load
duke
parents:
diff changeset
396 } else if (lo_size > hi_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
397 total_outlier_size = lo_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
398 default_dest = lo->dest();
a61af66fc99e Initial load
duke
parents:
diff changeset
399 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
400 total_outlier_size = hi_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
401 default_dest = hi->dest();
a61af66fc99e Initial load
duke
parents:
diff changeset
402 }
a61af66fc99e Initial load
duke
parents:
diff changeset
403
a61af66fc99e Initial load
duke
parents:
diff changeset
404 // If a guard test will eliminate very sparse end ranges, then
a61af66fc99e Initial load
duke
parents:
diff changeset
405 // it is worth the cost of an extra jump.
a61af66fc99e Initial load
duke
parents:
diff changeset
406 if (total_outlier_size > (MaxJumpTableSparseness * 4)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
407 needs_guard = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
408 if (default_dest == lo->dest()) lo++;
a61af66fc99e Initial load
duke
parents:
diff changeset
409 if (default_dest == hi->dest()) hi--;
a61af66fc99e Initial load
duke
parents:
diff changeset
410 }
a61af66fc99e Initial load
duke
parents:
diff changeset
411
a61af66fc99e Initial load
duke
parents:
diff changeset
412 // Find the total number of cases and ranges
a61af66fc99e Initial load
duke
parents:
diff changeset
413 int64 num_cases = ((int64)hi->hi()) - ((int64)lo->lo()) + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
414 int num_range = hi - lo + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
415
a61af66fc99e Initial load
duke
parents:
diff changeset
416 // Don't create table if: too large, too small, or too sparse.
a61af66fc99e Initial load
duke
parents:
diff changeset
417 if (num_cases < MinJumpTableSize || num_cases > MaxJumpTableSize)
a61af66fc99e Initial load
duke
parents:
diff changeset
418 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
419 if (num_cases > (MaxJumpTableSparseness * num_range))
a61af66fc99e Initial load
duke
parents:
diff changeset
420 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
421
a61af66fc99e Initial load
duke
parents:
diff changeset
422 // Normalize table lookups to zero
a61af66fc99e Initial load
duke
parents:
diff changeset
423 int lowval = lo->lo();
a61af66fc99e Initial load
duke
parents:
diff changeset
424 key_val = _gvn.transform( new (C, 3) SubINode(key_val, _gvn.intcon(lowval)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
425
a61af66fc99e Initial load
duke
parents:
diff changeset
426 // Generate a guard to protect against input keyvals that aren't
a61af66fc99e Initial load
duke
parents:
diff changeset
427 // in the switch domain.
a61af66fc99e Initial load
duke
parents:
diff changeset
428 if (needs_guard) {
a61af66fc99e Initial load
duke
parents:
diff changeset
429 Node* size = _gvn.intcon(num_cases);
a61af66fc99e Initial load
duke
parents:
diff changeset
430 Node* cmp = _gvn.transform( new (C, 3) CmpUNode(key_val, size) );
a61af66fc99e Initial load
duke
parents:
diff changeset
431 Node* tst = _gvn.transform( new (C, 2) BoolNode(cmp, BoolTest::ge) );
a61af66fc99e Initial load
duke
parents:
diff changeset
432 IfNode* iff = create_and_map_if( control(), tst, PROB_FAIR, COUNT_UNKNOWN);
a61af66fc99e Initial load
duke
parents:
diff changeset
433 jump_if_true_fork(iff, default_dest, NullTableIndex);
a61af66fc99e Initial load
duke
parents:
diff changeset
434 }
a61af66fc99e Initial load
duke
parents:
diff changeset
435
a61af66fc99e Initial load
duke
parents:
diff changeset
436 // Create an ideal node JumpTable that has projections
a61af66fc99e Initial load
duke
parents:
diff changeset
437 // of all possible ranges for a switch statement
a61af66fc99e Initial load
duke
parents:
diff changeset
438 // The key_val input must be converted to a pointer offset and scaled.
a61af66fc99e Initial load
duke
parents:
diff changeset
439 // Compare Parse::array_addressing above.
a61af66fc99e Initial load
duke
parents:
diff changeset
440 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
441 // Clean the 32-bit int into a real 64-bit offset.
a61af66fc99e Initial load
duke
parents:
diff changeset
442 // Otherwise, the jint value 0 might turn into an offset of 0x0800000000.
a61af66fc99e Initial load
duke
parents:
diff changeset
443 const TypeLong* lkeytype = TypeLong::make(CONST64(0), num_cases-1, Type::WidenMin);
a61af66fc99e Initial load
duke
parents:
diff changeset
444 key_val = _gvn.transform( new (C, 2) ConvI2LNode(key_val, lkeytype) );
a61af66fc99e Initial load
duke
parents:
diff changeset
445 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
446 // Shift the value by wordsize so we have an index into the table, rather
a61af66fc99e Initial load
duke
parents:
diff changeset
447 // than a switch value
a61af66fc99e Initial load
duke
parents:
diff changeset
448 Node *shiftWord = _gvn.MakeConX(wordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
449 key_val = _gvn.transform( new (C, 3) MulXNode( key_val, shiftWord));
a61af66fc99e Initial load
duke
parents:
diff changeset
450
a61af66fc99e Initial load
duke
parents:
diff changeset
451 // Create the JumpNode
a61af66fc99e Initial load
duke
parents:
diff changeset
452 Node* jtn = _gvn.transform( new (C, 2) JumpNode(control(), key_val, num_cases) );
a61af66fc99e Initial load
duke
parents:
diff changeset
453
a61af66fc99e Initial load
duke
parents:
diff changeset
454 // These are the switch destinations hanging off the jumpnode
a61af66fc99e Initial load
duke
parents:
diff changeset
455 int i = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
456 for (SwitchRange* r = lo; r <= hi; r++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
457 for (int j = r->lo(); j <= r->hi(); j++, i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
458 Node* input = _gvn.transform(new (C, 1) JumpProjNode(jtn, i, r->dest(), j - lowval));
a61af66fc99e Initial load
duke
parents:
diff changeset
459 {
a61af66fc99e Initial load
duke
parents:
diff changeset
460 PreserveJVMState pjvms(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
461 set_control(input);
a61af66fc99e Initial load
duke
parents:
diff changeset
462 jump_if_always_fork(r->dest(), r->table_index());
a61af66fc99e Initial load
duke
parents:
diff changeset
463 }
a61af66fc99e Initial load
duke
parents:
diff changeset
464 }
a61af66fc99e Initial load
duke
parents:
diff changeset
465 }
a61af66fc99e Initial load
duke
parents:
diff changeset
466 assert(i == num_cases, "miscount of cases");
a61af66fc99e Initial load
duke
parents:
diff changeset
467 stop_and_kill_map(); // no more uses for this JVMS
a61af66fc99e Initial load
duke
parents:
diff changeset
468 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
469 }
a61af66fc99e Initial load
duke
parents:
diff changeset
470
a61af66fc99e Initial load
duke
parents:
diff changeset
471 //----------------------------jump_switch_ranges-------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
472 void Parse::jump_switch_ranges(Node* key_val, SwitchRange *lo, SwitchRange *hi, int switch_depth) {
a61af66fc99e Initial load
duke
parents:
diff changeset
473 Block* switch_block = block();
a61af66fc99e Initial load
duke
parents:
diff changeset
474
a61af66fc99e Initial load
duke
parents:
diff changeset
475 if (switch_depth == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
476 // Do special processing for the top-level call.
a61af66fc99e Initial load
duke
parents:
diff changeset
477 assert(lo->lo() == min_jint, "initial range must exhaust Type::INT");
a61af66fc99e Initial load
duke
parents:
diff changeset
478 assert(hi->hi() == max_jint, "initial range must exhaust Type::INT");
a61af66fc99e Initial load
duke
parents:
diff changeset
479
a61af66fc99e Initial load
duke
parents:
diff changeset
480 // Decrement pred-numbers for the unique set of nodes.
a61af66fc99e Initial load
duke
parents:
diff changeset
481 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
482 // Ensure that the block's successors are a (duplicate-free) set.
a61af66fc99e Initial load
duke
parents:
diff changeset
483 int successors_counted = 0; // block occurrences in [hi..lo]
a61af66fc99e Initial load
duke
parents:
diff changeset
484 int unique_successors = switch_block->num_successors();
a61af66fc99e Initial load
duke
parents:
diff changeset
485 for (int i = 0; i < unique_successors; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
486 Block* target = switch_block->successor_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
487
a61af66fc99e Initial load
duke
parents:
diff changeset
488 // Check that the set of successors is the same in both places.
a61af66fc99e Initial load
duke
parents:
diff changeset
489 int successors_found = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
490 for (SwitchRange* p = lo; p <= hi; p++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
491 if (p->dest() == target->start()) successors_found++;
a61af66fc99e Initial load
duke
parents:
diff changeset
492 }
a61af66fc99e Initial load
duke
parents:
diff changeset
493 assert(successors_found > 0, "successor must be known");
a61af66fc99e Initial load
duke
parents:
diff changeset
494 successors_counted += successors_found;
a61af66fc99e Initial load
duke
parents:
diff changeset
495 }
a61af66fc99e Initial load
duke
parents:
diff changeset
496 assert(successors_counted == (hi-lo)+1, "no unexpected successors");
a61af66fc99e Initial load
duke
parents:
diff changeset
497 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
498
a61af66fc99e Initial load
duke
parents:
diff changeset
499 // Maybe prune the inputs, based on the type of key_val.
a61af66fc99e Initial load
duke
parents:
diff changeset
500 jint min_val = min_jint;
a61af66fc99e Initial load
duke
parents:
diff changeset
501 jint max_val = max_jint;
a61af66fc99e Initial load
duke
parents:
diff changeset
502 const TypeInt* ti = key_val->bottom_type()->isa_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
503 if (ti != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
504 min_val = ti->_lo;
a61af66fc99e Initial load
duke
parents:
diff changeset
505 max_val = ti->_hi;
a61af66fc99e Initial load
duke
parents:
diff changeset
506 assert(min_val <= max_val, "invalid int type");
a61af66fc99e Initial load
duke
parents:
diff changeset
507 }
a61af66fc99e Initial load
duke
parents:
diff changeset
508 while (lo->hi() < min_val) lo++;
a61af66fc99e Initial load
duke
parents:
diff changeset
509 if (lo->lo() < min_val) lo->setRange(min_val, lo->hi(), lo->dest(), lo->table_index());
a61af66fc99e Initial load
duke
parents:
diff changeset
510 while (hi->lo() > max_val) hi--;
a61af66fc99e Initial load
duke
parents:
diff changeset
511 if (hi->hi() > max_val) hi->setRange(hi->lo(), max_val, hi->dest(), hi->table_index());
a61af66fc99e Initial load
duke
parents:
diff changeset
512 }
a61af66fc99e Initial load
duke
parents:
diff changeset
513
a61af66fc99e Initial load
duke
parents:
diff changeset
514 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
515 if (switch_depth == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
516 _max_switch_depth = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
517 _est_switch_depth = log2_intptr((hi-lo+1)-1)+1;
a61af66fc99e Initial load
duke
parents:
diff changeset
518 }
a61af66fc99e Initial load
duke
parents:
diff changeset
519 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
520
a61af66fc99e Initial load
duke
parents:
diff changeset
521 assert(lo <= hi, "must be a non-empty set of ranges");
a61af66fc99e Initial load
duke
parents:
diff changeset
522 if (lo == hi) {
a61af66fc99e Initial load
duke
parents:
diff changeset
523 jump_if_always_fork(lo->dest(), lo->table_index());
a61af66fc99e Initial load
duke
parents:
diff changeset
524 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
525 assert(lo->hi() == (lo+1)->lo()-1, "contiguous ranges");
a61af66fc99e Initial load
duke
parents:
diff changeset
526 assert(hi->lo() == (hi-1)->hi()+1, "contiguous ranges");
a61af66fc99e Initial load
duke
parents:
diff changeset
527
a61af66fc99e Initial load
duke
parents:
diff changeset
528 if (create_jump_tables(key_val, lo, hi)) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
529
a61af66fc99e Initial load
duke
parents:
diff changeset
530 int nr = hi - lo + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
531
a61af66fc99e Initial load
duke
parents:
diff changeset
532 SwitchRange* mid = lo + nr/2;
a61af66fc99e Initial load
duke
parents:
diff changeset
533 // if there is an easy choice, pivot at a singleton:
a61af66fc99e Initial load
duke
parents:
diff changeset
534 if (nr > 3 && !mid->is_singleton() && (mid-1)->is_singleton()) mid--;
a61af66fc99e Initial load
duke
parents:
diff changeset
535
a61af66fc99e Initial load
duke
parents:
diff changeset
536 assert(lo < mid && mid <= hi, "good pivot choice");
a61af66fc99e Initial load
duke
parents:
diff changeset
537 assert(nr != 2 || mid == hi, "should pick higher of 2");
a61af66fc99e Initial load
duke
parents:
diff changeset
538 assert(nr != 3 || mid == hi-1, "should pick middle of 3");
a61af66fc99e Initial load
duke
parents:
diff changeset
539
a61af66fc99e Initial load
duke
parents:
diff changeset
540 Node *test_val = _gvn.intcon(mid->lo());
a61af66fc99e Initial load
duke
parents:
diff changeset
541
a61af66fc99e Initial load
duke
parents:
diff changeset
542 if (mid->is_singleton()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
543 IfNode *iff_ne = jump_if_fork_int(key_val, test_val, BoolTest::ne);
a61af66fc99e Initial load
duke
parents:
diff changeset
544 jump_if_false_fork(iff_ne, mid->dest(), mid->table_index());
a61af66fc99e Initial load
duke
parents:
diff changeset
545
a61af66fc99e Initial load
duke
parents:
diff changeset
546 // Special Case: If there are exactly three ranges, and the high
a61af66fc99e Initial load
duke
parents:
diff changeset
547 // and low range each go to the same place, omit the "gt" test,
a61af66fc99e Initial load
duke
parents:
diff changeset
548 // since it will not discriminate anything.
a61af66fc99e Initial load
duke
parents:
diff changeset
549 bool eq_test_only = (hi == lo+2 && hi->dest() == lo->dest());
a61af66fc99e Initial load
duke
parents:
diff changeset
550 if (eq_test_only) {
a61af66fc99e Initial load
duke
parents:
diff changeset
551 assert(mid == hi-1, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
552 }
a61af66fc99e Initial load
duke
parents:
diff changeset
553
a61af66fc99e Initial load
duke
parents:
diff changeset
554 // if there is a higher range, test for it and process it:
a61af66fc99e Initial load
duke
parents:
diff changeset
555 if (mid < hi && !eq_test_only) {
a61af66fc99e Initial load
duke
parents:
diff changeset
556 // two comparisons of same values--should enable 1 test for 2 branches
a61af66fc99e Initial load
duke
parents:
diff changeset
557 // Use BoolTest::le instead of BoolTest::gt
a61af66fc99e Initial load
duke
parents:
diff changeset
558 IfNode *iff_le = jump_if_fork_int(key_val, test_val, BoolTest::le);
a61af66fc99e Initial load
duke
parents:
diff changeset
559 Node *iftrue = _gvn.transform( new (C, 1) IfTrueNode(iff_le) );
a61af66fc99e Initial load
duke
parents:
diff changeset
560 Node *iffalse = _gvn.transform( new (C, 1) IfFalseNode(iff_le) );
a61af66fc99e Initial load
duke
parents:
diff changeset
561 { PreserveJVMState pjvms(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
562 set_control(iffalse);
a61af66fc99e Initial load
duke
parents:
diff changeset
563 jump_switch_ranges(key_val, mid+1, hi, switch_depth+1);
a61af66fc99e Initial load
duke
parents:
diff changeset
564 }
a61af66fc99e Initial load
duke
parents:
diff changeset
565 set_control(iftrue);
a61af66fc99e Initial load
duke
parents:
diff changeset
566 }
a61af66fc99e Initial load
duke
parents:
diff changeset
567
a61af66fc99e Initial load
duke
parents:
diff changeset
568 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
569 // mid is a range, not a singleton, so treat mid..hi as a unit
a61af66fc99e Initial load
duke
parents:
diff changeset
570 IfNode *iff_ge = jump_if_fork_int(key_val, test_val, BoolTest::ge);
a61af66fc99e Initial load
duke
parents:
diff changeset
571
a61af66fc99e Initial load
duke
parents:
diff changeset
572 // if there is a higher range, test for it and process it:
a61af66fc99e Initial load
duke
parents:
diff changeset
573 if (mid == hi) {
a61af66fc99e Initial load
duke
parents:
diff changeset
574 jump_if_true_fork(iff_ge, mid->dest(), mid->table_index());
a61af66fc99e Initial load
duke
parents:
diff changeset
575 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
576 Node *iftrue = _gvn.transform( new (C, 1) IfTrueNode(iff_ge) );
a61af66fc99e Initial load
duke
parents:
diff changeset
577 Node *iffalse = _gvn.transform( new (C, 1) IfFalseNode(iff_ge) );
a61af66fc99e Initial load
duke
parents:
diff changeset
578 { PreserveJVMState pjvms(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
579 set_control(iftrue);
a61af66fc99e Initial load
duke
parents:
diff changeset
580 jump_switch_ranges(key_val, mid, hi, switch_depth+1);
a61af66fc99e Initial load
duke
parents:
diff changeset
581 }
a61af66fc99e Initial load
duke
parents:
diff changeset
582 set_control(iffalse);
a61af66fc99e Initial load
duke
parents:
diff changeset
583 }
a61af66fc99e Initial load
duke
parents:
diff changeset
584 }
a61af66fc99e Initial load
duke
parents:
diff changeset
585
a61af66fc99e Initial load
duke
parents:
diff changeset
586 // in any case, process the lower range
a61af66fc99e Initial load
duke
parents:
diff changeset
587 jump_switch_ranges(key_val, lo, mid-1, switch_depth+1);
a61af66fc99e Initial load
duke
parents:
diff changeset
588 }
a61af66fc99e Initial load
duke
parents:
diff changeset
589
a61af66fc99e Initial load
duke
parents:
diff changeset
590 // Decrease pred_count for each successor after all is done.
a61af66fc99e Initial load
duke
parents:
diff changeset
591 if (switch_depth == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
592 int unique_successors = switch_block->num_successors();
a61af66fc99e Initial load
duke
parents:
diff changeset
593 for (int i = 0; i < unique_successors; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
594 Block* target = switch_block->successor_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
595 // Throw away the pre-allocated path for each unique successor.
a61af66fc99e Initial load
duke
parents:
diff changeset
596 target->next_path_num();
a61af66fc99e Initial load
duke
parents:
diff changeset
597 }
a61af66fc99e Initial load
duke
parents:
diff changeset
598 }
a61af66fc99e Initial load
duke
parents:
diff changeset
599
a61af66fc99e Initial load
duke
parents:
diff changeset
600 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
601 _max_switch_depth = MAX2(switch_depth, _max_switch_depth);
a61af66fc99e Initial load
duke
parents:
diff changeset
602 if (TraceOptoParse && Verbose && WizardMode && switch_depth == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
603 SwitchRange* r;
a61af66fc99e Initial load
duke
parents:
diff changeset
604 int nsing = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
605 for( r = lo; r <= hi; r++ ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
606 if( r->is_singleton() ) nsing++;
a61af66fc99e Initial load
duke
parents:
diff changeset
607 }
a61af66fc99e Initial load
duke
parents:
diff changeset
608 tty->print(">>> ");
a61af66fc99e Initial load
duke
parents:
diff changeset
609 _method->print_short_name();
a61af66fc99e Initial load
duke
parents:
diff changeset
610 tty->print_cr(" switch decision tree");
a61af66fc99e Initial load
duke
parents:
diff changeset
611 tty->print_cr(" %d ranges (%d singletons), max_depth=%d, est_depth=%d",
a61af66fc99e Initial load
duke
parents:
diff changeset
612 hi-lo+1, nsing, _max_switch_depth, _est_switch_depth);
a61af66fc99e Initial load
duke
parents:
diff changeset
613 if (_max_switch_depth > _est_switch_depth) {
a61af66fc99e Initial load
duke
parents:
diff changeset
614 tty->print_cr("******** BAD SWITCH DEPTH ********");
a61af66fc99e Initial load
duke
parents:
diff changeset
615 }
a61af66fc99e Initial load
duke
parents:
diff changeset
616 tty->print(" ");
a61af66fc99e Initial load
duke
parents:
diff changeset
617 for( r = lo; r <= hi; r++ ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
618 r->print(env());
a61af66fc99e Initial load
duke
parents:
diff changeset
619 }
a61af66fc99e Initial load
duke
parents:
diff changeset
620 tty->print_cr("");
a61af66fc99e Initial load
duke
parents:
diff changeset
621 }
a61af66fc99e Initial load
duke
parents:
diff changeset
622 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
623 }
a61af66fc99e Initial load
duke
parents:
diff changeset
624
a61af66fc99e Initial load
duke
parents:
diff changeset
625 void Parse::modf() {
a61af66fc99e Initial load
duke
parents:
diff changeset
626 Node *f2 = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
627 Node *f1 = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
628 Node* c = make_runtime_call(RC_LEAF, OptoRuntime::modf_Type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
629 CAST_FROM_FN_PTR(address, SharedRuntime::frem),
a61af66fc99e Initial load
duke
parents:
diff changeset
630 "frem", NULL, //no memory effects
a61af66fc99e Initial load
duke
parents:
diff changeset
631 f1, f2);
a61af66fc99e Initial load
duke
parents:
diff changeset
632 Node* res = _gvn.transform(new (C, 1) ProjNode(c, TypeFunc::Parms + 0));
a61af66fc99e Initial load
duke
parents:
diff changeset
633
a61af66fc99e Initial load
duke
parents:
diff changeset
634 push(res);
a61af66fc99e Initial load
duke
parents:
diff changeset
635 }
a61af66fc99e Initial load
duke
parents:
diff changeset
636
a61af66fc99e Initial load
duke
parents:
diff changeset
637 void Parse::modd() {
a61af66fc99e Initial load
duke
parents:
diff changeset
638 Node *d2 = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
639 Node *d1 = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
640 Node* c = make_runtime_call(RC_LEAF, OptoRuntime::Math_DD_D_Type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
641 CAST_FROM_FN_PTR(address, SharedRuntime::drem),
a61af66fc99e Initial load
duke
parents:
diff changeset
642 "drem", NULL, //no memory effects
a61af66fc99e Initial load
duke
parents:
diff changeset
643 d1, top(), d2, top());
a61af66fc99e Initial load
duke
parents:
diff changeset
644 Node* res_d = _gvn.transform(new (C, 1) ProjNode(c, TypeFunc::Parms + 0));
a61af66fc99e Initial load
duke
parents:
diff changeset
645
a61af66fc99e Initial load
duke
parents:
diff changeset
646 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
647 Node* res_top = _gvn.transform(new (C, 1) ProjNode(c, TypeFunc::Parms + 1));
a61af66fc99e Initial load
duke
parents:
diff changeset
648 assert(res_top == top(), "second value must be top");
a61af66fc99e Initial load
duke
parents:
diff changeset
649 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
650
a61af66fc99e Initial load
duke
parents:
diff changeset
651 push_pair(res_d);
a61af66fc99e Initial load
duke
parents:
diff changeset
652 }
a61af66fc99e Initial load
duke
parents:
diff changeset
653
a61af66fc99e Initial load
duke
parents:
diff changeset
654 void Parse::l2f() {
a61af66fc99e Initial load
duke
parents:
diff changeset
655 Node* f2 = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
656 Node* f1 = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
657 Node* c = make_runtime_call(RC_LEAF, OptoRuntime::l2f_Type(),
a61af66fc99e Initial load
duke
parents:
diff changeset
658 CAST_FROM_FN_PTR(address, SharedRuntime::l2f),
a61af66fc99e Initial load
duke
parents:
diff changeset
659 "l2f", NULL, //no memory effects
a61af66fc99e Initial load
duke
parents:
diff changeset
660 f1, f2);
a61af66fc99e Initial load
duke
parents:
diff changeset
661 Node* res = _gvn.transform(new (C, 1) ProjNode(c, TypeFunc::Parms + 0));
a61af66fc99e Initial load
duke
parents:
diff changeset
662
a61af66fc99e Initial load
duke
parents:
diff changeset
663 push(res);
a61af66fc99e Initial load
duke
parents:
diff changeset
664 }
a61af66fc99e Initial load
duke
parents:
diff changeset
665
a61af66fc99e Initial load
duke
parents:
diff changeset
666 void Parse::do_irem() {
a61af66fc99e Initial load
duke
parents:
diff changeset
667 // Must keep both values on the expression-stack during null-check
a61af66fc99e Initial load
duke
parents:
diff changeset
668 do_null_check(peek(), T_INT);
a61af66fc99e Initial load
duke
parents:
diff changeset
669 // Compile-time detect of null-exception?
a61af66fc99e Initial load
duke
parents:
diff changeset
670 if (stopped()) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
671
a61af66fc99e Initial load
duke
parents:
diff changeset
672 Node* b = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
673 Node* a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
674
a61af66fc99e Initial load
duke
parents:
diff changeset
675 const Type *t = _gvn.type(b);
a61af66fc99e Initial load
duke
parents:
diff changeset
676 if (t != Type::TOP) {
a61af66fc99e Initial load
duke
parents:
diff changeset
677 const TypeInt *ti = t->is_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
678 if (ti->is_con()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
679 int divisor = ti->get_con();
a61af66fc99e Initial load
duke
parents:
diff changeset
680 // check for positive power of 2
a61af66fc99e Initial load
duke
parents:
diff changeset
681 if (divisor > 0 &&
a61af66fc99e Initial load
duke
parents:
diff changeset
682 (divisor & ~(divisor-1)) == divisor) {
a61af66fc99e Initial load
duke
parents:
diff changeset
683 // yes !
a61af66fc99e Initial load
duke
parents:
diff changeset
684 Node *mask = _gvn.intcon((divisor - 1));
a61af66fc99e Initial load
duke
parents:
diff changeset
685 // Sigh, must handle negative dividends
a61af66fc99e Initial load
duke
parents:
diff changeset
686 Node *zero = _gvn.intcon(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
687 IfNode *ifff = jump_if_fork_int(a, zero, BoolTest::lt);
a61af66fc99e Initial load
duke
parents:
diff changeset
688 Node *iff = _gvn.transform( new (C, 1) IfFalseNode(ifff) );
a61af66fc99e Initial load
duke
parents:
diff changeset
689 Node *ift = _gvn.transform( new (C, 1) IfTrueNode (ifff) );
a61af66fc99e Initial load
duke
parents:
diff changeset
690 Node *reg = jump_if_join(ift, iff);
a61af66fc99e Initial load
duke
parents:
diff changeset
691 Node *phi = PhiNode::make(reg, NULL, TypeInt::INT);
a61af66fc99e Initial load
duke
parents:
diff changeset
692 // Negative path; negate/and/negate
a61af66fc99e Initial load
duke
parents:
diff changeset
693 Node *neg = _gvn.transform( new (C, 3) SubINode(zero, a) );
a61af66fc99e Initial load
duke
parents:
diff changeset
694 Node *andn= _gvn.transform( new (C, 3) AndINode(neg, mask) );
a61af66fc99e Initial load
duke
parents:
diff changeset
695 Node *negn= _gvn.transform( new (C, 3) SubINode(zero, andn) );
a61af66fc99e Initial load
duke
parents:
diff changeset
696 phi->init_req(1, negn);
a61af66fc99e Initial load
duke
parents:
diff changeset
697 // Fast positive case
a61af66fc99e Initial load
duke
parents:
diff changeset
698 Node *andx = _gvn.transform( new (C, 3) AndINode(a, mask) );
a61af66fc99e Initial load
duke
parents:
diff changeset
699 phi->init_req(2, andx);
a61af66fc99e Initial load
duke
parents:
diff changeset
700 // Push the merge
a61af66fc99e Initial load
duke
parents:
diff changeset
701 push( _gvn.transform(phi) );
a61af66fc99e Initial load
duke
parents:
diff changeset
702 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
703 }
a61af66fc99e Initial load
duke
parents:
diff changeset
704 }
a61af66fc99e Initial load
duke
parents:
diff changeset
705 }
a61af66fc99e Initial load
duke
parents:
diff changeset
706 // Default case
a61af66fc99e Initial load
duke
parents:
diff changeset
707 push( _gvn.transform( new (C, 3) ModINode(control(),a,b) ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
708 }
a61af66fc99e Initial load
duke
parents:
diff changeset
709
a61af66fc99e Initial load
duke
parents:
diff changeset
710 // Handle jsr and jsr_w bytecode
a61af66fc99e Initial load
duke
parents:
diff changeset
711 void Parse::do_jsr() {
a61af66fc99e Initial load
duke
parents:
diff changeset
712 assert(bc() == Bytecodes::_jsr || bc() == Bytecodes::_jsr_w, "wrong bytecode");
a61af66fc99e Initial load
duke
parents:
diff changeset
713
a61af66fc99e Initial load
duke
parents:
diff changeset
714 // Store information about current state, tagged with new _jsr_bci
a61af66fc99e Initial load
duke
parents:
diff changeset
715 int return_bci = iter().next_bci();
a61af66fc99e Initial load
duke
parents:
diff changeset
716 int jsr_bci = (bc() == Bytecodes::_jsr) ? iter().get_dest() : iter().get_far_dest();
a61af66fc99e Initial load
duke
parents:
diff changeset
717
a61af66fc99e Initial load
duke
parents:
diff changeset
718 // Update method data
a61af66fc99e Initial load
duke
parents:
diff changeset
719 profile_taken_branch(jsr_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
720
a61af66fc99e Initial load
duke
parents:
diff changeset
721 // The way we do things now, there is only one successor block
a61af66fc99e Initial load
duke
parents:
diff changeset
722 // for the jsr, because the target code is cloned by ciTypeFlow.
a61af66fc99e Initial load
duke
parents:
diff changeset
723 Block* target = successor_for_bci(jsr_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
724
a61af66fc99e Initial load
duke
parents:
diff changeset
725 // What got pushed?
a61af66fc99e Initial load
duke
parents:
diff changeset
726 const Type* ret_addr = target->peek();
a61af66fc99e Initial load
duke
parents:
diff changeset
727 assert(ret_addr->singleton(), "must be a constant (cloned jsr body)");
a61af66fc99e Initial load
duke
parents:
diff changeset
728
a61af66fc99e Initial load
duke
parents:
diff changeset
729 // Effect on jsr on stack
a61af66fc99e Initial load
duke
parents:
diff changeset
730 push(_gvn.makecon(ret_addr));
a61af66fc99e Initial load
duke
parents:
diff changeset
731
a61af66fc99e Initial load
duke
parents:
diff changeset
732 // Flow to the jsr.
a61af66fc99e Initial load
duke
parents:
diff changeset
733 merge(jsr_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
734 }
a61af66fc99e Initial load
duke
parents:
diff changeset
735
a61af66fc99e Initial load
duke
parents:
diff changeset
736 // Handle ret bytecode
a61af66fc99e Initial load
duke
parents:
diff changeset
737 void Parse::do_ret() {
a61af66fc99e Initial load
duke
parents:
diff changeset
738 // Find to whom we return.
a61af66fc99e Initial load
duke
parents:
diff changeset
739 #if 0 // %%%% MAKE THIS WORK
a61af66fc99e Initial load
duke
parents:
diff changeset
740 Node* con = local();
a61af66fc99e Initial load
duke
parents:
diff changeset
741 const TypePtr* tp = con->bottom_type()->isa_ptr();
a61af66fc99e Initial load
duke
parents:
diff changeset
742 assert(tp && tp->singleton(), "");
a61af66fc99e Initial load
duke
parents:
diff changeset
743 int return_bci = (int) tp->get_con();
a61af66fc99e Initial load
duke
parents:
diff changeset
744 merge(return_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
745 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
746 assert(block()->num_successors() == 1, "a ret can only go one place now");
a61af66fc99e Initial load
duke
parents:
diff changeset
747 Block* target = block()->successor_at(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
748 assert(!target->is_ready(), "our arrival must be expected");
a61af66fc99e Initial load
duke
parents:
diff changeset
749 profile_ret(target->flow()->start());
a61af66fc99e Initial load
duke
parents:
diff changeset
750 int pnum = target->next_path_num();
a61af66fc99e Initial load
duke
parents:
diff changeset
751 merge_common(target, pnum);
a61af66fc99e Initial load
duke
parents:
diff changeset
752 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
753 }
a61af66fc99e Initial load
duke
parents:
diff changeset
754
a61af66fc99e Initial load
duke
parents:
diff changeset
755 //--------------------------dynamic_branch_prediction--------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
756 // Try to gather dynamic branch prediction behavior. Return a probability
a61af66fc99e Initial load
duke
parents:
diff changeset
757 // of the branch being taken and set the "cnt" field. Returns a -1.0
a61af66fc99e Initial load
duke
parents:
diff changeset
758 // if we need to use static prediction for some reason.
a61af66fc99e Initial load
duke
parents:
diff changeset
759 float Parse::dynamic_branch_prediction(float &cnt) {
a61af66fc99e Initial load
duke
parents:
diff changeset
760 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
761
a61af66fc99e Initial load
duke
parents:
diff changeset
762 cnt = COUNT_UNKNOWN;
a61af66fc99e Initial load
duke
parents:
diff changeset
763
a61af66fc99e Initial load
duke
parents:
diff changeset
764 // Use MethodData information if it is available
a61af66fc99e Initial load
duke
parents:
diff changeset
765 // FIXME: free the ProfileData structure
a61af66fc99e Initial load
duke
parents:
diff changeset
766 ciMethodData* methodData = method()->method_data();
a61af66fc99e Initial load
duke
parents:
diff changeset
767 if (!methodData->is_mature()) return PROB_UNKNOWN;
a61af66fc99e Initial load
duke
parents:
diff changeset
768 ciProfileData* data = methodData->bci_to_data(bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
769 if (!data->is_JumpData()) return PROB_UNKNOWN;
a61af66fc99e Initial load
duke
parents:
diff changeset
770
a61af66fc99e Initial load
duke
parents:
diff changeset
771 // get taken and not taken values
a61af66fc99e Initial load
duke
parents:
diff changeset
772 int taken = data->as_JumpData()->taken();
a61af66fc99e Initial load
duke
parents:
diff changeset
773 int not_taken = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
774 if (data->is_BranchData()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
775 not_taken = data->as_BranchData()->not_taken();
a61af66fc99e Initial load
duke
parents:
diff changeset
776 }
a61af66fc99e Initial load
duke
parents:
diff changeset
777
a61af66fc99e Initial load
duke
parents:
diff changeset
778 // scale the counts to be commensurate with invocation counts:
a61af66fc99e Initial load
duke
parents:
diff changeset
779 taken = method()->scale_count(taken);
a61af66fc99e Initial load
duke
parents:
diff changeset
780 not_taken = method()->scale_count(not_taken);
a61af66fc99e Initial load
duke
parents:
diff changeset
781
a61af66fc99e Initial load
duke
parents:
diff changeset
782 // Give up if too few counts to be meaningful
a61af66fc99e Initial load
duke
parents:
diff changeset
783 if (taken + not_taken < 40) {
a61af66fc99e Initial load
duke
parents:
diff changeset
784 if (C->log() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
785 C->log()->elem("branch target_bci='%d' taken='%d' not_taken='%d'", iter().get_dest(), taken, not_taken);
a61af66fc99e Initial load
duke
parents:
diff changeset
786 }
a61af66fc99e Initial load
duke
parents:
diff changeset
787 return PROB_UNKNOWN;
a61af66fc99e Initial load
duke
parents:
diff changeset
788 }
a61af66fc99e Initial load
duke
parents:
diff changeset
789
a61af66fc99e Initial load
duke
parents:
diff changeset
790 // Compute frequency that we arrive here
a61af66fc99e Initial load
duke
parents:
diff changeset
791 int sum = taken + not_taken;
a61af66fc99e Initial load
duke
parents:
diff changeset
792 // Adjust, if this block is a cloned private block but the
a61af66fc99e Initial load
duke
parents:
diff changeset
793 // Jump counts are shared. Taken the private counts for
a61af66fc99e Initial load
duke
parents:
diff changeset
794 // just this path instead of the shared counts.
a61af66fc99e Initial load
duke
parents:
diff changeset
795 if( block()->count() > 0 )
a61af66fc99e Initial load
duke
parents:
diff changeset
796 sum = block()->count();
a61af66fc99e Initial load
duke
parents:
diff changeset
797 cnt = (float)sum / (float)FreqCountInvocations;
a61af66fc99e Initial load
duke
parents:
diff changeset
798
a61af66fc99e Initial load
duke
parents:
diff changeset
799 // Pin probability to sane limits
a61af66fc99e Initial load
duke
parents:
diff changeset
800 float prob;
a61af66fc99e Initial load
duke
parents:
diff changeset
801 if( !taken )
a61af66fc99e Initial load
duke
parents:
diff changeset
802 prob = (0+PROB_MIN) / 2;
a61af66fc99e Initial load
duke
parents:
diff changeset
803 else if( !not_taken )
a61af66fc99e Initial load
duke
parents:
diff changeset
804 prob = (1+PROB_MAX) / 2;
a61af66fc99e Initial load
duke
parents:
diff changeset
805 else { // Compute probability of true path
a61af66fc99e Initial load
duke
parents:
diff changeset
806 prob = (float)taken / (float)(taken + not_taken);
a61af66fc99e Initial load
duke
parents:
diff changeset
807 if (prob > PROB_MAX) prob = PROB_MAX;
a61af66fc99e Initial load
duke
parents:
diff changeset
808 if (prob < PROB_MIN) prob = PROB_MIN;
a61af66fc99e Initial load
duke
parents:
diff changeset
809 }
a61af66fc99e Initial load
duke
parents:
diff changeset
810
a61af66fc99e Initial load
duke
parents:
diff changeset
811 assert((cnt > 0.0f) && (prob > 0.0f),
a61af66fc99e Initial load
duke
parents:
diff changeset
812 "Bad frequency assignment in if");
a61af66fc99e Initial load
duke
parents:
diff changeset
813
a61af66fc99e Initial load
duke
parents:
diff changeset
814 if (C->log() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
815 const char* prob_str = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
816 if (prob >= PROB_MAX) prob_str = (prob == PROB_MAX) ? "max" : "always";
a61af66fc99e Initial load
duke
parents:
diff changeset
817 if (prob <= PROB_MIN) prob_str = (prob == PROB_MIN) ? "min" : "never";
a61af66fc99e Initial load
duke
parents:
diff changeset
818 char prob_str_buf[30];
a61af66fc99e Initial load
duke
parents:
diff changeset
819 if (prob_str == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
820 sprintf(prob_str_buf, "%g", prob);
a61af66fc99e Initial load
duke
parents:
diff changeset
821 prob_str = prob_str_buf;
a61af66fc99e Initial load
duke
parents:
diff changeset
822 }
a61af66fc99e Initial load
duke
parents:
diff changeset
823 C->log()->elem("branch target_bci='%d' taken='%d' not_taken='%d' cnt='%g' prob='%s'",
a61af66fc99e Initial load
duke
parents:
diff changeset
824 iter().get_dest(), taken, not_taken, cnt, prob_str);
a61af66fc99e Initial load
duke
parents:
diff changeset
825 }
a61af66fc99e Initial load
duke
parents:
diff changeset
826 return prob;
a61af66fc99e Initial load
duke
parents:
diff changeset
827 }
a61af66fc99e Initial load
duke
parents:
diff changeset
828
a61af66fc99e Initial load
duke
parents:
diff changeset
829 //-----------------------------branch_prediction-------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
830 float Parse::branch_prediction(float& cnt,
a61af66fc99e Initial load
duke
parents:
diff changeset
831 BoolTest::mask btest,
a61af66fc99e Initial load
duke
parents:
diff changeset
832 int target_bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
833 float prob = dynamic_branch_prediction(cnt);
a61af66fc99e Initial load
duke
parents:
diff changeset
834 // If prob is unknown, switch to static prediction
a61af66fc99e Initial load
duke
parents:
diff changeset
835 if (prob != PROB_UNKNOWN) return prob;
a61af66fc99e Initial load
duke
parents:
diff changeset
836
a61af66fc99e Initial load
duke
parents:
diff changeset
837 prob = PROB_FAIR; // Set default value
a61af66fc99e Initial load
duke
parents:
diff changeset
838 if (btest == BoolTest::eq) // Exactly equal test?
a61af66fc99e Initial load
duke
parents:
diff changeset
839 prob = PROB_STATIC_INFREQUENT; // Assume its relatively infrequent
a61af66fc99e Initial load
duke
parents:
diff changeset
840 else if (btest == BoolTest::ne)
a61af66fc99e Initial load
duke
parents:
diff changeset
841 prob = PROB_STATIC_FREQUENT; // Assume its relatively frequent
a61af66fc99e Initial load
duke
parents:
diff changeset
842
a61af66fc99e Initial load
duke
parents:
diff changeset
843 // If this is a conditional test guarding a backwards branch,
a61af66fc99e Initial load
duke
parents:
diff changeset
844 // assume its a loop-back edge. Make it a likely taken branch.
a61af66fc99e Initial load
duke
parents:
diff changeset
845 if (target_bci < bci()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
846 if (is_osr_parse()) { // Could be a hot OSR'd loop; force deopt
a61af66fc99e Initial load
duke
parents:
diff changeset
847 // Since it's an OSR, we probably have profile data, but since
a61af66fc99e Initial load
duke
parents:
diff changeset
848 // branch_prediction returned PROB_UNKNOWN, the counts are too small.
a61af66fc99e Initial load
duke
parents:
diff changeset
849 // Let's make a special check here for completely zero counts.
a61af66fc99e Initial load
duke
parents:
diff changeset
850 ciMethodData* methodData = method()->method_data();
a61af66fc99e Initial load
duke
parents:
diff changeset
851 if (!methodData->is_empty()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
852 ciProfileData* data = methodData->bci_to_data(bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
853 // Only stop for truly zero counts, which mean an unknown part
a61af66fc99e Initial load
duke
parents:
diff changeset
854 // of the OSR-ed method, and we want to deopt to gather more stats.
a61af66fc99e Initial load
duke
parents:
diff changeset
855 // If you have ANY counts, then this loop is simply 'cold' relative
a61af66fc99e Initial load
duke
parents:
diff changeset
856 // to the OSR loop.
a61af66fc99e Initial load
duke
parents:
diff changeset
857 if (data->as_BranchData()->taken() +
a61af66fc99e Initial load
duke
parents:
diff changeset
858 data->as_BranchData()->not_taken() == 0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
859 // This is the only way to return PROB_UNKNOWN:
a61af66fc99e Initial load
duke
parents:
diff changeset
860 return PROB_UNKNOWN;
a61af66fc99e Initial load
duke
parents:
diff changeset
861 }
a61af66fc99e Initial load
duke
parents:
diff changeset
862 }
a61af66fc99e Initial load
duke
parents:
diff changeset
863 }
a61af66fc99e Initial load
duke
parents:
diff changeset
864 prob = PROB_STATIC_FREQUENT; // Likely to take backwards branch
a61af66fc99e Initial load
duke
parents:
diff changeset
865 }
a61af66fc99e Initial load
duke
parents:
diff changeset
866
a61af66fc99e Initial load
duke
parents:
diff changeset
867 assert(prob != PROB_UNKNOWN, "must have some guess at this point");
a61af66fc99e Initial load
duke
parents:
diff changeset
868 return prob;
a61af66fc99e Initial load
duke
parents:
diff changeset
869 }
a61af66fc99e Initial load
duke
parents:
diff changeset
870
a61af66fc99e Initial load
duke
parents:
diff changeset
871 // The magic constants are chosen so as to match the output of
a61af66fc99e Initial load
duke
parents:
diff changeset
872 // branch_prediction() when the profile reports a zero taken count.
a61af66fc99e Initial load
duke
parents:
diff changeset
873 // It is important to distinguish zero counts unambiguously, because
a61af66fc99e Initial load
duke
parents:
diff changeset
874 // some branches (e.g., _213_javac.Assembler.eliminate) validly produce
a61af66fc99e Initial load
duke
parents:
diff changeset
875 // very small but nonzero probabilities, which if confused with zero
a61af66fc99e Initial load
duke
parents:
diff changeset
876 // counts would keep the program recompiling indefinitely.
a61af66fc99e Initial load
duke
parents:
diff changeset
877 bool Parse::seems_never_taken(float prob) {
a61af66fc99e Initial load
duke
parents:
diff changeset
878 return prob < PROB_MIN;
a61af66fc99e Initial load
duke
parents:
diff changeset
879 }
a61af66fc99e Initial load
duke
parents:
diff changeset
880
a61af66fc99e Initial load
duke
parents:
diff changeset
881 inline void Parse::repush_if_args() {
a61af66fc99e Initial load
duke
parents:
diff changeset
882 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
883 if (PrintOpto && WizardMode) {
a61af66fc99e Initial load
duke
parents:
diff changeset
884 tty->print("defending against excessive implicit null exceptions on %s @%d in ",
a61af66fc99e Initial load
duke
parents:
diff changeset
885 Bytecodes::name(iter().cur_bc()), iter().cur_bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
886 method()->print_name(); tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
887 }
a61af66fc99e Initial load
duke
parents:
diff changeset
888 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
889 int bc_depth = - Bytecodes::depth(iter().cur_bc());
a61af66fc99e Initial load
duke
parents:
diff changeset
890 assert(bc_depth == 1 || bc_depth == 2, "only two kinds of branches");
a61af66fc99e Initial load
duke
parents:
diff changeset
891 DEBUG_ONLY(sync_jvms()); // argument(n) requires a synced jvms
a61af66fc99e Initial load
duke
parents:
diff changeset
892 assert(argument(0) != NULL, "must exist");
a61af66fc99e Initial load
duke
parents:
diff changeset
893 assert(bc_depth == 1 || argument(1) != NULL, "two must exist");
a61af66fc99e Initial load
duke
parents:
diff changeset
894 _sp += bc_depth;
a61af66fc99e Initial load
duke
parents:
diff changeset
895 }
a61af66fc99e Initial load
duke
parents:
diff changeset
896
a61af66fc99e Initial load
duke
parents:
diff changeset
897 //----------------------------------do_ifnull----------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
898 void Parse::do_ifnull(BoolTest::mask btest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
899 int target_bci = iter().get_dest();
a61af66fc99e Initial load
duke
parents:
diff changeset
900
17
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
901 Block* branch_block = successor_for_bci(target_bci);
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
902 Block* next_block = successor_for_bci(iter().next_bci());
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
903
0
a61af66fc99e Initial load
duke
parents:
diff changeset
904 float cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
905 float prob = branch_prediction(cnt, btest, target_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
906 if (prob == PROB_UNKNOWN) {
a61af66fc99e Initial load
duke
parents:
diff changeset
907 // (An earlier version of do_ifnull omitted this trap for OSR methods.)
a61af66fc99e Initial load
duke
parents:
diff changeset
908 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
909 if (PrintOpto && Verbose)
a61af66fc99e Initial load
duke
parents:
diff changeset
910 tty->print_cr("Never-taken backedge stops compilation at bci %d",bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
911 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
912 repush_if_args(); // to gather stats on loop
a61af66fc99e Initial load
duke
parents:
diff changeset
913 // We need to mark this branch as taken so that if we recompile we will
a61af66fc99e Initial load
duke
parents:
diff changeset
914 // see that it is possible. In the tiered system the interpreter doesn't
a61af66fc99e Initial load
duke
parents:
diff changeset
915 // do profiling and by the time we get to the lower tier from the interpreter
a61af66fc99e Initial load
duke
parents:
diff changeset
916 // the path may be cold again. Make sure it doesn't look untaken
a61af66fc99e Initial load
duke
parents:
diff changeset
917 profile_taken_branch(target_bci, !ProfileInterpreter);
a61af66fc99e Initial load
duke
parents:
diff changeset
918 uncommon_trap(Deoptimization::Reason_unreached,
a61af66fc99e Initial load
duke
parents:
diff changeset
919 Deoptimization::Action_reinterpret,
a61af66fc99e Initial load
duke
parents:
diff changeset
920 NULL, "cold");
17
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
921 if (EliminateAutoBox) {
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
922 // Mark the successor blocks as parsed
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
923 branch_block->next_path_num();
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
924 next_block->next_path_num();
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
925 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
926 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
927 }
a61af66fc99e Initial load
duke
parents:
diff changeset
928
a61af66fc99e Initial load
duke
parents:
diff changeset
929 // If this is a backwards branch in the bytecodes, add Safepoint
a61af66fc99e Initial load
duke
parents:
diff changeset
930 maybe_add_safepoint(target_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
931
a61af66fc99e Initial load
duke
parents:
diff changeset
932 explicit_null_checks_inserted++;
a61af66fc99e Initial load
duke
parents:
diff changeset
933 Node* a = null();
a61af66fc99e Initial load
duke
parents:
diff changeset
934 Node* b = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
935 Node* c = _gvn.transform( new (C, 3) CmpPNode(b, a) );
a61af66fc99e Initial load
duke
parents:
diff changeset
936
a61af66fc99e Initial load
duke
parents:
diff changeset
937 // Make a cast-away-nullness that is control dependent on the test
a61af66fc99e Initial load
duke
parents:
diff changeset
938 const Type *t = _gvn.type(b);
a61af66fc99e Initial load
duke
parents:
diff changeset
939 const Type *t_not_null = t->join(TypePtr::NOTNULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
940 Node *cast = new (C, 2) CastPPNode(b,t_not_null);
a61af66fc99e Initial load
duke
parents:
diff changeset
941
a61af66fc99e Initial load
duke
parents:
diff changeset
942 // Generate real control flow
a61af66fc99e Initial load
duke
parents:
diff changeset
943 Node *tst = _gvn.transform( new (C, 2) BoolNode( c, btest ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
944
a61af66fc99e Initial load
duke
parents:
diff changeset
945 // Sanity check the probability value
a61af66fc99e Initial load
duke
parents:
diff changeset
946 assert(prob > 0.0f,"Bad probability in Parser");
a61af66fc99e Initial load
duke
parents:
diff changeset
947 // Need xform to put node in hash table
a61af66fc99e Initial load
duke
parents:
diff changeset
948 IfNode *iff = create_and_xform_if( control(), tst, prob, cnt );
a61af66fc99e Initial load
duke
parents:
diff changeset
949 assert(iff->_prob > 0.0f,"Optimizer made bad probability in parser");
a61af66fc99e Initial load
duke
parents:
diff changeset
950 // True branch
a61af66fc99e Initial load
duke
parents:
diff changeset
951 { PreserveJVMState pjvms(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
952 Node* iftrue = _gvn.transform( new (C, 1) IfTrueNode (iff) );
a61af66fc99e Initial load
duke
parents:
diff changeset
953 set_control(iftrue);
a61af66fc99e Initial load
duke
parents:
diff changeset
954
a61af66fc99e Initial load
duke
parents:
diff changeset
955 if (stopped()) { // Path is dead?
a61af66fc99e Initial load
duke
parents:
diff changeset
956 explicit_null_checks_elided++;
17
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
957 if (EliminateAutoBox) {
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
958 // Mark the successor block as parsed
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
959 branch_block->next_path_num();
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
960 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
961 } else { // Path is live.
a61af66fc99e Initial load
duke
parents:
diff changeset
962 // Update method data
a61af66fc99e Initial load
duke
parents:
diff changeset
963 profile_taken_branch(target_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
964 adjust_map_after_if(btest, c, prob, branch_block, next_block);
a61af66fc99e Initial load
duke
parents:
diff changeset
965 if (!stopped())
a61af66fc99e Initial load
duke
parents:
diff changeset
966 merge(target_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
967 }
a61af66fc99e Initial load
duke
parents:
diff changeset
968 }
a61af66fc99e Initial load
duke
parents:
diff changeset
969
a61af66fc99e Initial load
duke
parents:
diff changeset
970 // False branch
a61af66fc99e Initial load
duke
parents:
diff changeset
971 Node* iffalse = _gvn.transform( new (C, 1) IfFalseNode(iff) );
a61af66fc99e Initial load
duke
parents:
diff changeset
972 set_control(iffalse);
a61af66fc99e Initial load
duke
parents:
diff changeset
973
a61af66fc99e Initial load
duke
parents:
diff changeset
974 if (stopped()) { // Path is dead?
a61af66fc99e Initial load
duke
parents:
diff changeset
975 explicit_null_checks_elided++;
17
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
976 if (EliminateAutoBox) {
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
977 // Mark the successor block as parsed
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
978 next_block->next_path_num();
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
979 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
980 } else { // Path is live.
a61af66fc99e Initial load
duke
parents:
diff changeset
981 // Update method data
a61af66fc99e Initial load
duke
parents:
diff changeset
982 profile_not_taken_branch();
a61af66fc99e Initial load
duke
parents:
diff changeset
983 adjust_map_after_if(BoolTest(btest).negate(), c, 1.0-prob,
a61af66fc99e Initial load
duke
parents:
diff changeset
984 next_block, branch_block);
a61af66fc99e Initial load
duke
parents:
diff changeset
985 }
a61af66fc99e Initial load
duke
parents:
diff changeset
986 }
a61af66fc99e Initial load
duke
parents:
diff changeset
987
a61af66fc99e Initial load
duke
parents:
diff changeset
988 //------------------------------------do_if------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
989 void Parse::do_if(BoolTest::mask btest, Node* c) {
a61af66fc99e Initial load
duke
parents:
diff changeset
990 int target_bci = iter().get_dest();
a61af66fc99e Initial load
duke
parents:
diff changeset
991
17
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
992 Block* branch_block = successor_for_bci(target_bci);
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
993 Block* next_block = successor_for_bci(iter().next_bci());
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
994
0
a61af66fc99e Initial load
duke
parents:
diff changeset
995 float cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
996 float prob = branch_prediction(cnt, btest, target_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
997 float untaken_prob = 1.0 - prob;
a61af66fc99e Initial load
duke
parents:
diff changeset
998
a61af66fc99e Initial load
duke
parents:
diff changeset
999 if (prob == PROB_UNKNOWN) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1000 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1001 if (PrintOpto && Verbose)
a61af66fc99e Initial load
duke
parents:
diff changeset
1002 tty->print_cr("Never-taken backedge stops compilation at bci %d",bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
1003 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1004 repush_if_args(); // to gather stats on loop
a61af66fc99e Initial load
duke
parents:
diff changeset
1005 // We need to mark this branch as taken so that if we recompile we will
a61af66fc99e Initial load
duke
parents:
diff changeset
1006 // see that it is possible. In the tiered system the interpreter doesn't
a61af66fc99e Initial load
duke
parents:
diff changeset
1007 // do profiling and by the time we get to the lower tier from the interpreter
a61af66fc99e Initial load
duke
parents:
diff changeset
1008 // the path may be cold again. Make sure it doesn't look untaken
a61af66fc99e Initial load
duke
parents:
diff changeset
1009 profile_taken_branch(target_bci, !ProfileInterpreter);
a61af66fc99e Initial load
duke
parents:
diff changeset
1010 uncommon_trap(Deoptimization::Reason_unreached,
a61af66fc99e Initial load
duke
parents:
diff changeset
1011 Deoptimization::Action_reinterpret,
a61af66fc99e Initial load
duke
parents:
diff changeset
1012 NULL, "cold");
17
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
1013 if (EliminateAutoBox) {
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
1014 // Mark the successor blocks as parsed
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
1015 branch_block->next_path_num();
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
1016 next_block->next_path_num();
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
1017 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1018 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1019 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1020
a61af66fc99e Initial load
duke
parents:
diff changeset
1021 // Sanity check the probability value
a61af66fc99e Initial load
duke
parents:
diff changeset
1022 assert(0.0f < prob && prob < 1.0f,"Bad probability in Parser");
a61af66fc99e Initial load
duke
parents:
diff changeset
1023
a61af66fc99e Initial load
duke
parents:
diff changeset
1024 bool taken_if_true = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1025 // Convert BoolTest to canonical form:
a61af66fc99e Initial load
duke
parents:
diff changeset
1026 if (!BoolTest(btest).is_canonical()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1027 btest = BoolTest(btest).negate();
a61af66fc99e Initial load
duke
parents:
diff changeset
1028 taken_if_true = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1029 // prob is NOT updated here; it remains the probability of the taken
a61af66fc99e Initial load
duke
parents:
diff changeset
1030 // path (as opposed to the prob of the path guarded by an 'IfTrueNode').
a61af66fc99e Initial load
duke
parents:
diff changeset
1031 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1032 assert(btest != BoolTest::eq, "!= is the only canonical exact test");
a61af66fc99e Initial load
duke
parents:
diff changeset
1033
a61af66fc99e Initial load
duke
parents:
diff changeset
1034 Node* tst0 = new (C, 2) BoolNode(c, btest);
a61af66fc99e Initial load
duke
parents:
diff changeset
1035 Node* tst = _gvn.transform(tst0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1036 BoolTest::mask taken_btest = BoolTest::illegal;
a61af66fc99e Initial load
duke
parents:
diff changeset
1037 BoolTest::mask untaken_btest = BoolTest::illegal;
37
73970d8c0b27 6671250: In Parse::do_if() old Cmp node 'c' should be replaced with new one after BoolNode transformation
kvn
parents: 17
diff changeset
1038
73970d8c0b27 6671250: In Parse::do_if() old Cmp node 'c' should be replaced with new one after BoolNode transformation
kvn
parents: 17
diff changeset
1039 if (tst->is_Bool()) {
73970d8c0b27 6671250: In Parse::do_if() old Cmp node 'c' should be replaced with new one after BoolNode transformation
kvn
parents: 17
diff changeset
1040 // Refresh c from the transformed bool node, since it may be
73970d8c0b27 6671250: In Parse::do_if() old Cmp node 'c' should be replaced with new one after BoolNode transformation
kvn
parents: 17
diff changeset
1041 // simpler than the original c. Also re-canonicalize btest.
73970d8c0b27 6671250: In Parse::do_if() old Cmp node 'c' should be replaced with new one after BoolNode transformation
kvn
parents: 17
diff changeset
1042 // This wins when (Bool ne (Conv2B p) 0) => (Bool ne (CmpP p NULL)).
73970d8c0b27 6671250: In Parse::do_if() old Cmp node 'c' should be replaced with new one after BoolNode transformation
kvn
parents: 17
diff changeset
1043 // That can arise from statements like: if (x instanceof C) ...
73970d8c0b27 6671250: In Parse::do_if() old Cmp node 'c' should be replaced with new one after BoolNode transformation
kvn
parents: 17
diff changeset
1044 if (tst != tst0) {
73970d8c0b27 6671250: In Parse::do_if() old Cmp node 'c' should be replaced with new one after BoolNode transformation
kvn
parents: 17
diff changeset
1045 // Canonicalize one more time since transform can change it.
73970d8c0b27 6671250: In Parse::do_if() old Cmp node 'c' should be replaced with new one after BoolNode transformation
kvn
parents: 17
diff changeset
1046 btest = tst->as_Bool()->_test._test;
73970d8c0b27 6671250: In Parse::do_if() old Cmp node 'c' should be replaced with new one after BoolNode transformation
kvn
parents: 17
diff changeset
1047 if (!BoolTest(btest).is_canonical()) {
73970d8c0b27 6671250: In Parse::do_if() old Cmp node 'c' should be replaced with new one after BoolNode transformation
kvn
parents: 17
diff changeset
1048 // Reverse edges one more time...
73970d8c0b27 6671250: In Parse::do_if() old Cmp node 'c' should be replaced with new one after BoolNode transformation
kvn
parents: 17
diff changeset
1049 tst = _gvn.transform( tst->as_Bool()->negate(&_gvn) );
73970d8c0b27 6671250: In Parse::do_if() old Cmp node 'c' should be replaced with new one after BoolNode transformation
kvn
parents: 17
diff changeset
1050 btest = tst->as_Bool()->_test._test;
73970d8c0b27 6671250: In Parse::do_if() old Cmp node 'c' should be replaced with new one after BoolNode transformation
kvn
parents: 17
diff changeset
1051 assert(BoolTest(btest).is_canonical(), "sanity");
73970d8c0b27 6671250: In Parse::do_if() old Cmp node 'c' should be replaced with new one after BoolNode transformation
kvn
parents: 17
diff changeset
1052 taken_if_true = !taken_if_true;
73970d8c0b27 6671250: In Parse::do_if() old Cmp node 'c' should be replaced with new one after BoolNode transformation
kvn
parents: 17
diff changeset
1053 }
73970d8c0b27 6671250: In Parse::do_if() old Cmp node 'c' should be replaced with new one after BoolNode transformation
kvn
parents: 17
diff changeset
1054 c = tst->in(1);
73970d8c0b27 6671250: In Parse::do_if() old Cmp node 'c' should be replaced with new one after BoolNode transformation
kvn
parents: 17
diff changeset
1055 }
73970d8c0b27 6671250: In Parse::do_if() old Cmp node 'c' should be replaced with new one after BoolNode transformation
kvn
parents: 17
diff changeset
1056 BoolTest::mask neg_btest = BoolTest(btest).negate();
73970d8c0b27 6671250: In Parse::do_if() old Cmp node 'c' should be replaced with new one after BoolNode transformation
kvn
parents: 17
diff changeset
1057 taken_btest = taken_if_true ? btest : neg_btest;
73970d8c0b27 6671250: In Parse::do_if() old Cmp node 'c' should be replaced with new one after BoolNode transformation
kvn
parents: 17
diff changeset
1058 untaken_btest = taken_if_true ? neg_btest : btest;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1059 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1060
a61af66fc99e Initial load
duke
parents:
diff changeset
1061 // Generate real control flow
a61af66fc99e Initial load
duke
parents:
diff changeset
1062 float true_prob = (taken_if_true ? prob : untaken_prob);
a61af66fc99e Initial load
duke
parents:
diff changeset
1063 IfNode* iff = create_and_map_if(control(), tst, true_prob, cnt);
a61af66fc99e Initial load
duke
parents:
diff changeset
1064 assert(iff->_prob > 0.0f,"Optimizer made bad probability in parser");
a61af66fc99e Initial load
duke
parents:
diff changeset
1065 Node* taken_branch = new (C, 1) IfTrueNode(iff);
a61af66fc99e Initial load
duke
parents:
diff changeset
1066 Node* untaken_branch = new (C, 1) IfFalseNode(iff);
a61af66fc99e Initial load
duke
parents:
diff changeset
1067 if (!taken_if_true) { // Finish conversion to canonical form
a61af66fc99e Initial load
duke
parents:
diff changeset
1068 Node* tmp = taken_branch;
a61af66fc99e Initial load
duke
parents:
diff changeset
1069 taken_branch = untaken_branch;
a61af66fc99e Initial load
duke
parents:
diff changeset
1070 untaken_branch = tmp;
a61af66fc99e Initial load
duke
parents:
diff changeset
1071 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1072
a61af66fc99e Initial load
duke
parents:
diff changeset
1073 // Branch is taken:
a61af66fc99e Initial load
duke
parents:
diff changeset
1074 { PreserveJVMState pjvms(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
1075 taken_branch = _gvn.transform(taken_branch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1076 set_control(taken_branch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1077
17
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
1078 if (stopped()) {
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
1079 if (EliminateAutoBox) {
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
1080 // Mark the successor block as parsed
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
1081 branch_block->next_path_num();
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
1082 }
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
1083 } else {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1084 // Update method data
a61af66fc99e Initial load
duke
parents:
diff changeset
1085 profile_taken_branch(target_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
1086 adjust_map_after_if(taken_btest, c, prob, branch_block, next_block);
a61af66fc99e Initial load
duke
parents:
diff changeset
1087 if (!stopped())
a61af66fc99e Initial load
duke
parents:
diff changeset
1088 merge(target_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
1089 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1090 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1091
a61af66fc99e Initial load
duke
parents:
diff changeset
1092 untaken_branch = _gvn.transform(untaken_branch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1093 set_control(untaken_branch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1094
a61af66fc99e Initial load
duke
parents:
diff changeset
1095 // Branch not taken.
17
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
1096 if (stopped()) {
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
1097 if (EliminateAutoBox) {
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
1098 // Mark the successor block as parsed
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
1099 next_block->next_path_num();
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
1100 }
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
1101 } else {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1102 // Update method data
a61af66fc99e Initial load
duke
parents:
diff changeset
1103 profile_not_taken_branch();
a61af66fc99e Initial load
duke
parents:
diff changeset
1104 adjust_map_after_if(untaken_btest, c, untaken_prob,
a61af66fc99e Initial load
duke
parents:
diff changeset
1105 next_block, branch_block);
a61af66fc99e Initial load
duke
parents:
diff changeset
1106 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1107 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1108
a61af66fc99e Initial load
duke
parents:
diff changeset
1109 //----------------------------adjust_map_after_if------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1110 // Adjust the JVM state to reflect the result of taking this path.
a61af66fc99e Initial load
duke
parents:
diff changeset
1111 // Basically, it means inspecting the CmpNode controlling this
a61af66fc99e Initial load
duke
parents:
diff changeset
1112 // branch, seeing how it constrains a tested value, and then
a61af66fc99e Initial load
duke
parents:
diff changeset
1113 // deciding if it's worth our while to encode this constraint
a61af66fc99e Initial load
duke
parents:
diff changeset
1114 // as graph nodes in the current abstract interpretation map.
a61af66fc99e Initial load
duke
parents:
diff changeset
1115 void Parse::adjust_map_after_if(BoolTest::mask btest, Node* c, float prob,
a61af66fc99e Initial load
duke
parents:
diff changeset
1116 Block* path, Block* other_path) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1117 if (stopped() || !c->is_Cmp() || btest == BoolTest::illegal)
a61af66fc99e Initial load
duke
parents:
diff changeset
1118 return; // nothing to do
a61af66fc99e Initial load
duke
parents:
diff changeset
1119
a61af66fc99e Initial load
duke
parents:
diff changeset
1120 bool is_fallthrough = (path == successor_for_bci(iter().next_bci()));
a61af66fc99e Initial load
duke
parents:
diff changeset
1121
a61af66fc99e Initial load
duke
parents:
diff changeset
1122 int cop = c->Opcode();
a61af66fc99e Initial load
duke
parents:
diff changeset
1123 if (seems_never_taken(prob) && cop == Op_CmpP && btest == BoolTest::eq) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1124 // (An earlier version of do_if omitted '&& btest == BoolTest::eq'.)
a61af66fc99e Initial load
duke
parents:
diff changeset
1125 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1126 // If this might possibly turn into an implicit null check,
a61af66fc99e Initial load
duke
parents:
diff changeset
1127 // and the null has never yet been seen, we need to generate
a61af66fc99e Initial load
duke
parents:
diff changeset
1128 // an uncommon trap, so as to recompile instead of suffering
a61af66fc99e Initial load
duke
parents:
diff changeset
1129 // with very slow branches. (We'll get the slow branches if
a61af66fc99e Initial load
duke
parents:
diff changeset
1130 // the program ever changes phase and starts seeing nulls here.)
a61af66fc99e Initial load
duke
parents:
diff changeset
1131 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1132 // The tests we worry about are of the form (p == null).
a61af66fc99e Initial load
duke
parents:
diff changeset
1133 // We do not simply inspect for a null constant, since a node may
a61af66fc99e Initial load
duke
parents:
diff changeset
1134 // optimize to 'null' later on.
a61af66fc99e Initial load
duke
parents:
diff changeset
1135 repush_if_args();
a61af66fc99e Initial load
duke
parents:
diff changeset
1136 // We need to mark this branch as taken so that if we recompile we will
a61af66fc99e Initial load
duke
parents:
diff changeset
1137 // see that it is possible. In the tiered system the interpreter doesn't
a61af66fc99e Initial load
duke
parents:
diff changeset
1138 // do profiling and by the time we get to the lower tier from the interpreter
a61af66fc99e Initial load
duke
parents:
diff changeset
1139 // the path may be cold again. Make sure it doesn't look untaken
a61af66fc99e Initial load
duke
parents:
diff changeset
1140 if (is_fallthrough) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1141 profile_not_taken_branch(!ProfileInterpreter);
a61af66fc99e Initial load
duke
parents:
diff changeset
1142 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1143 profile_taken_branch(iter().get_dest(), !ProfileInterpreter);
a61af66fc99e Initial load
duke
parents:
diff changeset
1144 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1145 uncommon_trap(Deoptimization::Reason_unreached,
a61af66fc99e Initial load
duke
parents:
diff changeset
1146 Deoptimization::Action_reinterpret,
a61af66fc99e Initial load
duke
parents:
diff changeset
1147 NULL,
a61af66fc99e Initial load
duke
parents:
diff changeset
1148 (is_fallthrough ? "taken always" : "taken never"));
a61af66fc99e Initial load
duke
parents:
diff changeset
1149 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1150 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1151
a61af66fc99e Initial load
duke
parents:
diff changeset
1152 Node* val = c->in(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1153 Node* con = c->in(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1154 const Type* tcon = _gvn.type(con);
a61af66fc99e Initial load
duke
parents:
diff changeset
1155 const Type* tval = _gvn.type(val);
a61af66fc99e Initial load
duke
parents:
diff changeset
1156 bool have_con = tcon->singleton();
a61af66fc99e Initial load
duke
parents:
diff changeset
1157 if (tval->singleton()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1158 if (!have_con) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1159 // Swap, so constant is in con.
a61af66fc99e Initial load
duke
parents:
diff changeset
1160 con = val;
a61af66fc99e Initial load
duke
parents:
diff changeset
1161 tcon = tval;
a61af66fc99e Initial load
duke
parents:
diff changeset
1162 val = c->in(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1163 tval = _gvn.type(val);
a61af66fc99e Initial load
duke
parents:
diff changeset
1164 btest = BoolTest(btest).commute();
a61af66fc99e Initial load
duke
parents:
diff changeset
1165 have_con = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1166 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1167 // Do we have two constants? Then leave well enough alone.
a61af66fc99e Initial load
duke
parents:
diff changeset
1168 have_con = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1169 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1170 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1171 if (!have_con) // remaining adjustments need a con
a61af66fc99e Initial load
duke
parents:
diff changeset
1172 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1173
a61af66fc99e Initial load
duke
parents:
diff changeset
1174
a61af66fc99e Initial load
duke
parents:
diff changeset
1175 int val_in_map = map()->find_edge(val);
a61af66fc99e Initial load
duke
parents:
diff changeset
1176 if (val_in_map < 0) return; // replace_in_map would be useless
a61af66fc99e Initial load
duke
parents:
diff changeset
1177 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1178 JVMState* jvms = this->jvms();
a61af66fc99e Initial load
duke
parents:
diff changeset
1179 if (!(jvms->is_loc(val_in_map) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
1180 jvms->is_stk(val_in_map)))
a61af66fc99e Initial load
duke
parents:
diff changeset
1181 return; // again, it would be useless
a61af66fc99e Initial load
duke
parents:
diff changeset
1182 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1183
a61af66fc99e Initial load
duke
parents:
diff changeset
1184 // Check for a comparison to a constant, and "know" that the compared
a61af66fc99e Initial load
duke
parents:
diff changeset
1185 // value is constrained on this path.
a61af66fc99e Initial load
duke
parents:
diff changeset
1186 assert(tcon->singleton(), "");
a61af66fc99e Initial load
duke
parents:
diff changeset
1187 ConstraintCastNode* ccast = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1188 Node* cast = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1189
a61af66fc99e Initial load
duke
parents:
diff changeset
1190 switch (btest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1191 case BoolTest::eq: // Constant test?
a61af66fc99e Initial load
duke
parents:
diff changeset
1192 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1193 const Type* tboth = tcon->join(tval);
a61af66fc99e Initial load
duke
parents:
diff changeset
1194 if (tboth == tval) break; // Nothing to gain.
a61af66fc99e Initial load
duke
parents:
diff changeset
1195 if (tcon->isa_int()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1196 ccast = new (C, 2) CastIINode(val, tboth);
a61af66fc99e Initial load
duke
parents:
diff changeset
1197 } else if (tcon == TypePtr::NULL_PTR) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1198 // Cast to null, but keep the pointer identity temporarily live.
a61af66fc99e Initial load
duke
parents:
diff changeset
1199 ccast = new (C, 2) CastPPNode(val, tboth);
a61af66fc99e Initial load
duke
parents:
diff changeset
1200 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1201 const TypeF* tf = tcon->isa_float_constant();
a61af66fc99e Initial load
duke
parents:
diff changeset
1202 const TypeD* td = tcon->isa_double_constant();
a61af66fc99e Initial load
duke
parents:
diff changeset
1203 // Exclude tests vs float/double 0 as these could be
a61af66fc99e Initial load
duke
parents:
diff changeset
1204 // either +0 or -0. Just because you are equal to +0
a61af66fc99e Initial load
duke
parents:
diff changeset
1205 // doesn't mean you ARE +0!
a61af66fc99e Initial load
duke
parents:
diff changeset
1206 if ((!tf || tf->_f != 0.0) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
1207 (!td || td->_d != 0.0))
a61af66fc99e Initial load
duke
parents:
diff changeset
1208 cast = con; // Replace non-constant val by con.
a61af66fc99e Initial load
duke
parents:
diff changeset
1209 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1210 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1211 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1212
a61af66fc99e Initial load
duke
parents:
diff changeset
1213 case BoolTest::ne:
a61af66fc99e Initial load
duke
parents:
diff changeset
1214 if (tcon == TypePtr::NULL_PTR) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1215 cast = cast_not_null(val, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
1216 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1217 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1218
a61af66fc99e Initial load
duke
parents:
diff changeset
1219 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
1220 // (At this point we could record int range types with CastII.)
a61af66fc99e Initial load
duke
parents:
diff changeset
1221 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1222 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1223
a61af66fc99e Initial load
duke
parents:
diff changeset
1224 if (ccast != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1225 const Type* tcc = ccast->as_Type()->type();
a61af66fc99e Initial load
duke
parents:
diff changeset
1226 assert(tcc != tval && tcc->higher_equal(tval), "must improve");
a61af66fc99e Initial load
duke
parents:
diff changeset
1227 // Delay transform() call to allow recovery of pre-cast value
a61af66fc99e Initial load
duke
parents:
diff changeset
1228 // at the control merge.
a61af66fc99e Initial load
duke
parents:
diff changeset
1229 ccast->set_req(0, control());
a61af66fc99e Initial load
duke
parents:
diff changeset
1230 _gvn.set_type_bottom(ccast);
a61af66fc99e Initial load
duke
parents:
diff changeset
1231 record_for_igvn(ccast);
a61af66fc99e Initial load
duke
parents:
diff changeset
1232 cast = ccast;
a61af66fc99e Initial load
duke
parents:
diff changeset
1233 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1234
a61af66fc99e Initial load
duke
parents:
diff changeset
1235 if (cast != NULL) { // Here's the payoff.
a61af66fc99e Initial load
duke
parents:
diff changeset
1236 replace_in_map(val, cast);
a61af66fc99e Initial load
duke
parents:
diff changeset
1237 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1238 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1239
a61af66fc99e Initial load
duke
parents:
diff changeset
1240
a61af66fc99e Initial load
duke
parents:
diff changeset
1241 //------------------------------do_one_bytecode--------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1242 // Parse this bytecode, and alter the Parsers JVM->Node mapping
a61af66fc99e Initial load
duke
parents:
diff changeset
1243 void Parse::do_one_bytecode() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1244 Node *a, *b, *c, *d; // Handy temps
a61af66fc99e Initial load
duke
parents:
diff changeset
1245 BoolTest::mask btest;
a61af66fc99e Initial load
duke
parents:
diff changeset
1246 int i;
a61af66fc99e Initial load
duke
parents:
diff changeset
1247
a61af66fc99e Initial load
duke
parents:
diff changeset
1248 assert(!has_exceptions(), "bytecode entry state must be clear of throws");
a61af66fc99e Initial load
duke
parents:
diff changeset
1249
a61af66fc99e Initial load
duke
parents:
diff changeset
1250 if (C->check_node_count(NodeLimitFudgeFactor * 5,
a61af66fc99e Initial load
duke
parents:
diff changeset
1251 "out of nodes parsing method")) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1252 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1253 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1254
a61af66fc99e Initial load
duke
parents:
diff changeset
1255 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
1256 // for setting breakpoints
a61af66fc99e Initial load
duke
parents:
diff changeset
1257 if (TraceOptoParse) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1258 tty->print(" @");
a61af66fc99e Initial load
duke
parents:
diff changeset
1259 dump_bci(bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
1260 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1261 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1262
a61af66fc99e Initial load
duke
parents:
diff changeset
1263 switch (bc()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1264 case Bytecodes::_nop:
a61af66fc99e Initial load
duke
parents:
diff changeset
1265 // do nothing
a61af66fc99e Initial load
duke
parents:
diff changeset
1266 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1267 case Bytecodes::_lconst_0:
a61af66fc99e Initial load
duke
parents:
diff changeset
1268 push_pair(longcon(0));
a61af66fc99e Initial load
duke
parents:
diff changeset
1269 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1270
a61af66fc99e Initial load
duke
parents:
diff changeset
1271 case Bytecodes::_lconst_1:
a61af66fc99e Initial load
duke
parents:
diff changeset
1272 push_pair(longcon(1));
a61af66fc99e Initial load
duke
parents:
diff changeset
1273 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1274
a61af66fc99e Initial load
duke
parents:
diff changeset
1275 case Bytecodes::_fconst_0:
a61af66fc99e Initial load
duke
parents:
diff changeset
1276 push(zerocon(T_FLOAT));
a61af66fc99e Initial load
duke
parents:
diff changeset
1277 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1278
a61af66fc99e Initial load
duke
parents:
diff changeset
1279 case Bytecodes::_fconst_1:
a61af66fc99e Initial load
duke
parents:
diff changeset
1280 push(makecon(TypeF::ONE));
a61af66fc99e Initial load
duke
parents:
diff changeset
1281 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1282
a61af66fc99e Initial load
duke
parents:
diff changeset
1283 case Bytecodes::_fconst_2:
a61af66fc99e Initial load
duke
parents:
diff changeset
1284 push(makecon(TypeF::make(2.0f)));
a61af66fc99e Initial load
duke
parents:
diff changeset
1285 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1286
a61af66fc99e Initial load
duke
parents:
diff changeset
1287 case Bytecodes::_dconst_0:
a61af66fc99e Initial load
duke
parents:
diff changeset
1288 push_pair(zerocon(T_DOUBLE));
a61af66fc99e Initial load
duke
parents:
diff changeset
1289 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1290
a61af66fc99e Initial load
duke
parents:
diff changeset
1291 case Bytecodes::_dconst_1:
a61af66fc99e Initial load
duke
parents:
diff changeset
1292 push_pair(makecon(TypeD::ONE));
a61af66fc99e Initial load
duke
parents:
diff changeset
1293 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1294
a61af66fc99e Initial load
duke
parents:
diff changeset
1295 case Bytecodes::_iconst_m1:push(intcon(-1)); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1296 case Bytecodes::_iconst_0: push(intcon( 0)); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1297 case Bytecodes::_iconst_1: push(intcon( 1)); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1298 case Bytecodes::_iconst_2: push(intcon( 2)); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1299 case Bytecodes::_iconst_3: push(intcon( 3)); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1300 case Bytecodes::_iconst_4: push(intcon( 4)); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1301 case Bytecodes::_iconst_5: push(intcon( 5)); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1302 case Bytecodes::_bipush: push(intcon( iter().get_byte())); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1303 case Bytecodes::_sipush: push(intcon( iter().get_short())); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1304 case Bytecodes::_aconst_null: push(null()); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1305 case Bytecodes::_ldc:
a61af66fc99e Initial load
duke
parents:
diff changeset
1306 case Bytecodes::_ldc_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
1307 case Bytecodes::_ldc2_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
1308 // If the constant is unresolved, run this BC once in the interpreter.
a61af66fc99e Initial load
duke
parents:
diff changeset
1309 if (iter().is_unresolved_string()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1310 uncommon_trap(Deoptimization::make_trap_request
a61af66fc99e Initial load
duke
parents:
diff changeset
1311 (Deoptimization::Reason_unloaded,
a61af66fc99e Initial load
duke
parents:
diff changeset
1312 Deoptimization::Action_reinterpret,
a61af66fc99e Initial load
duke
parents:
diff changeset
1313 iter().get_constant_index()),
a61af66fc99e Initial load
duke
parents:
diff changeset
1314 NULL, "unresolved_string");
a61af66fc99e Initial load
duke
parents:
diff changeset
1315 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1316 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1317 ciConstant constant = iter().get_constant();
a61af66fc99e Initial load
duke
parents:
diff changeset
1318 if (constant.basic_type() == T_OBJECT) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1319 ciObject* c = constant.as_object();
a61af66fc99e Initial load
duke
parents:
diff changeset
1320 if (c->is_klass()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1321 // The constant returned for a klass is the ciKlass for the
a61af66fc99e Initial load
duke
parents:
diff changeset
1322 // entry. We want the java_mirror so get it.
a61af66fc99e Initial load
duke
parents:
diff changeset
1323 ciKlass* klass = c->as_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
1324 if (klass->is_loaded()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1325 constant = ciConstant(T_OBJECT, klass->java_mirror());
a61af66fc99e Initial load
duke
parents:
diff changeset
1326 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1327 uncommon_trap(Deoptimization::make_trap_request
a61af66fc99e Initial load
duke
parents:
diff changeset
1328 (Deoptimization::Reason_unloaded,
a61af66fc99e Initial load
duke
parents:
diff changeset
1329 Deoptimization::Action_reinterpret,
a61af66fc99e Initial load
duke
parents:
diff changeset
1330 iter().get_constant_index()),
a61af66fc99e Initial load
duke
parents:
diff changeset
1331 NULL, "unresolved_klass");
a61af66fc99e Initial load
duke
parents:
diff changeset
1332 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1333 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1334 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1335 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1336 push_constant(constant);
a61af66fc99e Initial load
duke
parents:
diff changeset
1337 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1338
a61af66fc99e Initial load
duke
parents:
diff changeset
1339 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1340
a61af66fc99e Initial load
duke
parents:
diff changeset
1341 case Bytecodes::_aload_0:
a61af66fc99e Initial load
duke
parents:
diff changeset
1342 push( local(0) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1343 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1344 case Bytecodes::_aload_1:
a61af66fc99e Initial load
duke
parents:
diff changeset
1345 push( local(1) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1346 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1347 case Bytecodes::_aload_2:
a61af66fc99e Initial load
duke
parents:
diff changeset
1348 push( local(2) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1349 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1350 case Bytecodes::_aload_3:
a61af66fc99e Initial load
duke
parents:
diff changeset
1351 push( local(3) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1352 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1353 case Bytecodes::_aload:
a61af66fc99e Initial load
duke
parents:
diff changeset
1354 push( local(iter().get_index()) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1355 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1356
a61af66fc99e Initial load
duke
parents:
diff changeset
1357 case Bytecodes::_fload_0:
a61af66fc99e Initial load
duke
parents:
diff changeset
1358 case Bytecodes::_iload_0:
a61af66fc99e Initial load
duke
parents:
diff changeset
1359 push( local(0) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1360 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1361 case Bytecodes::_fload_1:
a61af66fc99e Initial load
duke
parents:
diff changeset
1362 case Bytecodes::_iload_1:
a61af66fc99e Initial load
duke
parents:
diff changeset
1363 push( local(1) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1364 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1365 case Bytecodes::_fload_2:
a61af66fc99e Initial load
duke
parents:
diff changeset
1366 case Bytecodes::_iload_2:
a61af66fc99e Initial load
duke
parents:
diff changeset
1367 push( local(2) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1368 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1369 case Bytecodes::_fload_3:
a61af66fc99e Initial load
duke
parents:
diff changeset
1370 case Bytecodes::_iload_3:
a61af66fc99e Initial load
duke
parents:
diff changeset
1371 push( local(3) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1372 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1373 case Bytecodes::_fload:
a61af66fc99e Initial load
duke
parents:
diff changeset
1374 case Bytecodes::_iload:
a61af66fc99e Initial load
duke
parents:
diff changeset
1375 push( local(iter().get_index()) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1376 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1377 case Bytecodes::_lload_0:
a61af66fc99e Initial load
duke
parents:
diff changeset
1378 push_pair_local( 0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
1379 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1380 case Bytecodes::_lload_1:
a61af66fc99e Initial load
duke
parents:
diff changeset
1381 push_pair_local( 1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
1382 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1383 case Bytecodes::_lload_2:
a61af66fc99e Initial load
duke
parents:
diff changeset
1384 push_pair_local( 2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
1385 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1386 case Bytecodes::_lload_3:
a61af66fc99e Initial load
duke
parents:
diff changeset
1387 push_pair_local( 3 );
a61af66fc99e Initial load
duke
parents:
diff changeset
1388 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1389 case Bytecodes::_lload:
a61af66fc99e Initial load
duke
parents:
diff changeset
1390 push_pair_local( iter().get_index() );
a61af66fc99e Initial load
duke
parents:
diff changeset
1391 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1392
a61af66fc99e Initial load
duke
parents:
diff changeset
1393 case Bytecodes::_dload_0:
a61af66fc99e Initial load
duke
parents:
diff changeset
1394 push_pair_local(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1395 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1396 case Bytecodes::_dload_1:
a61af66fc99e Initial load
duke
parents:
diff changeset
1397 push_pair_local(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1398 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1399 case Bytecodes::_dload_2:
a61af66fc99e Initial load
duke
parents:
diff changeset
1400 push_pair_local(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1401 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1402 case Bytecodes::_dload_3:
a61af66fc99e Initial load
duke
parents:
diff changeset
1403 push_pair_local(3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1404 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1405 case Bytecodes::_dload:
a61af66fc99e Initial load
duke
parents:
diff changeset
1406 push_pair_local(iter().get_index());
a61af66fc99e Initial load
duke
parents:
diff changeset
1407 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1408 case Bytecodes::_fstore_0:
a61af66fc99e Initial load
duke
parents:
diff changeset
1409 case Bytecodes::_istore_0:
a61af66fc99e Initial load
duke
parents:
diff changeset
1410 case Bytecodes::_astore_0:
a61af66fc99e Initial load
duke
parents:
diff changeset
1411 set_local( 0, pop() );
a61af66fc99e Initial load
duke
parents:
diff changeset
1412 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1413 case Bytecodes::_fstore_1:
a61af66fc99e Initial load
duke
parents:
diff changeset
1414 case Bytecodes::_istore_1:
a61af66fc99e Initial load
duke
parents:
diff changeset
1415 case Bytecodes::_astore_1:
a61af66fc99e Initial load
duke
parents:
diff changeset
1416 set_local( 1, pop() );
a61af66fc99e Initial load
duke
parents:
diff changeset
1417 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1418 case Bytecodes::_fstore_2:
a61af66fc99e Initial load
duke
parents:
diff changeset
1419 case Bytecodes::_istore_2:
a61af66fc99e Initial load
duke
parents:
diff changeset
1420 case Bytecodes::_astore_2:
a61af66fc99e Initial load
duke
parents:
diff changeset
1421 set_local( 2, pop() );
a61af66fc99e Initial load
duke
parents:
diff changeset
1422 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1423 case Bytecodes::_fstore_3:
a61af66fc99e Initial load
duke
parents:
diff changeset
1424 case Bytecodes::_istore_3:
a61af66fc99e Initial load
duke
parents:
diff changeset
1425 case Bytecodes::_astore_3:
a61af66fc99e Initial load
duke
parents:
diff changeset
1426 set_local( 3, pop() );
a61af66fc99e Initial load
duke
parents:
diff changeset
1427 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1428 case Bytecodes::_fstore:
a61af66fc99e Initial load
duke
parents:
diff changeset
1429 case Bytecodes::_istore:
a61af66fc99e Initial load
duke
parents:
diff changeset
1430 case Bytecodes::_astore:
a61af66fc99e Initial load
duke
parents:
diff changeset
1431 set_local( iter().get_index(), pop() );
a61af66fc99e Initial load
duke
parents:
diff changeset
1432 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1433 // long stores
a61af66fc99e Initial load
duke
parents:
diff changeset
1434 case Bytecodes::_lstore_0:
a61af66fc99e Initial load
duke
parents:
diff changeset
1435 set_pair_local( 0, pop_pair() );
a61af66fc99e Initial load
duke
parents:
diff changeset
1436 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1437 case Bytecodes::_lstore_1:
a61af66fc99e Initial load
duke
parents:
diff changeset
1438 set_pair_local( 1, pop_pair() );
a61af66fc99e Initial load
duke
parents:
diff changeset
1439 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1440 case Bytecodes::_lstore_2:
a61af66fc99e Initial load
duke
parents:
diff changeset
1441 set_pair_local( 2, pop_pair() );
a61af66fc99e Initial load
duke
parents:
diff changeset
1442 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1443 case Bytecodes::_lstore_3:
a61af66fc99e Initial load
duke
parents:
diff changeset
1444 set_pair_local( 3, pop_pair() );
a61af66fc99e Initial load
duke
parents:
diff changeset
1445 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1446 case Bytecodes::_lstore:
a61af66fc99e Initial load
duke
parents:
diff changeset
1447 set_pair_local( iter().get_index(), pop_pair() );
a61af66fc99e Initial load
duke
parents:
diff changeset
1448 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1449
a61af66fc99e Initial load
duke
parents:
diff changeset
1450 // double stores
a61af66fc99e Initial load
duke
parents:
diff changeset
1451 case Bytecodes::_dstore_0:
a61af66fc99e Initial load
duke
parents:
diff changeset
1452 set_pair_local( 0, dstore_rounding(pop_pair()) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1453 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1454 case Bytecodes::_dstore_1:
a61af66fc99e Initial load
duke
parents:
diff changeset
1455 set_pair_local( 1, dstore_rounding(pop_pair()) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1456 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1457 case Bytecodes::_dstore_2:
a61af66fc99e Initial load
duke
parents:
diff changeset
1458 set_pair_local( 2, dstore_rounding(pop_pair()) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1459 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1460 case Bytecodes::_dstore_3:
a61af66fc99e Initial load
duke
parents:
diff changeset
1461 set_pair_local( 3, dstore_rounding(pop_pair()) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1462 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1463 case Bytecodes::_dstore:
a61af66fc99e Initial load
duke
parents:
diff changeset
1464 set_pair_local( iter().get_index(), dstore_rounding(pop_pair()) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1465 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1466
a61af66fc99e Initial load
duke
parents:
diff changeset
1467 case Bytecodes::_pop: _sp -= 1; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1468 case Bytecodes::_pop2: _sp -= 2; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1469 case Bytecodes::_swap:
a61af66fc99e Initial load
duke
parents:
diff changeset
1470 a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1471 b = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1472 push(a);
a61af66fc99e Initial load
duke
parents:
diff changeset
1473 push(b);
a61af66fc99e Initial load
duke
parents:
diff changeset
1474 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1475 case Bytecodes::_dup:
a61af66fc99e Initial load
duke
parents:
diff changeset
1476 a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1477 push(a);
a61af66fc99e Initial load
duke
parents:
diff changeset
1478 push(a);
a61af66fc99e Initial load
duke
parents:
diff changeset
1479 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1480 case Bytecodes::_dup_x1:
a61af66fc99e Initial load
duke
parents:
diff changeset
1481 a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1482 b = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1483 push( a );
a61af66fc99e Initial load
duke
parents:
diff changeset
1484 push( b );
a61af66fc99e Initial load
duke
parents:
diff changeset
1485 push( a );
a61af66fc99e Initial load
duke
parents:
diff changeset
1486 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1487 case Bytecodes::_dup_x2:
a61af66fc99e Initial load
duke
parents:
diff changeset
1488 a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1489 b = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1490 c = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1491 push( a );
a61af66fc99e Initial load
duke
parents:
diff changeset
1492 push( c );
a61af66fc99e Initial load
duke
parents:
diff changeset
1493 push( b );
a61af66fc99e Initial load
duke
parents:
diff changeset
1494 push( a );
a61af66fc99e Initial load
duke
parents:
diff changeset
1495 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1496 case Bytecodes::_dup2:
a61af66fc99e Initial load
duke
parents:
diff changeset
1497 a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1498 b = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1499 push( b );
a61af66fc99e Initial load
duke
parents:
diff changeset
1500 push( a );
a61af66fc99e Initial load
duke
parents:
diff changeset
1501 push( b );
a61af66fc99e Initial load
duke
parents:
diff changeset
1502 push( a );
a61af66fc99e Initial load
duke
parents:
diff changeset
1503 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1504
a61af66fc99e Initial load
duke
parents:
diff changeset
1505 case Bytecodes::_dup2_x1:
a61af66fc99e Initial load
duke
parents:
diff changeset
1506 // before: .. c, b, a
a61af66fc99e Initial load
duke
parents:
diff changeset
1507 // after: .. b, a, c, b, a
a61af66fc99e Initial load
duke
parents:
diff changeset
1508 // not tested
a61af66fc99e Initial load
duke
parents:
diff changeset
1509 a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1510 b = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1511 c = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1512 push( b );
a61af66fc99e Initial load
duke
parents:
diff changeset
1513 push( a );
a61af66fc99e Initial load
duke
parents:
diff changeset
1514 push( c );
a61af66fc99e Initial load
duke
parents:
diff changeset
1515 push( b );
a61af66fc99e Initial load
duke
parents:
diff changeset
1516 push( a );
a61af66fc99e Initial load
duke
parents:
diff changeset
1517 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1518 case Bytecodes::_dup2_x2:
a61af66fc99e Initial load
duke
parents:
diff changeset
1519 // before: .. d, c, b, a
a61af66fc99e Initial load
duke
parents:
diff changeset
1520 // after: .. b, a, d, c, b, a
a61af66fc99e Initial load
duke
parents:
diff changeset
1521 // not tested
a61af66fc99e Initial load
duke
parents:
diff changeset
1522 a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1523 b = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1524 c = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1525 d = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1526 push( b );
a61af66fc99e Initial load
duke
parents:
diff changeset
1527 push( a );
a61af66fc99e Initial load
duke
parents:
diff changeset
1528 push( d );
a61af66fc99e Initial load
duke
parents:
diff changeset
1529 push( c );
a61af66fc99e Initial load
duke
parents:
diff changeset
1530 push( b );
a61af66fc99e Initial load
duke
parents:
diff changeset
1531 push( a );
a61af66fc99e Initial load
duke
parents:
diff changeset
1532 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1533
a61af66fc99e Initial load
duke
parents:
diff changeset
1534 case Bytecodes::_arraylength: {
a61af66fc99e Initial load
duke
parents:
diff changeset
1535 // Must do null-check with value on expression stack
a61af66fc99e Initial load
duke
parents:
diff changeset
1536 Node *ary = do_null_check(peek(), T_ARRAY);
a61af66fc99e Initial load
duke
parents:
diff changeset
1537 // Compile-time detect of null-exception?
a61af66fc99e Initial load
duke
parents:
diff changeset
1538 if (stopped()) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1539 a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1540 push(load_array_length(a));
a61af66fc99e Initial load
duke
parents:
diff changeset
1541 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1542 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1543
a61af66fc99e Initial load
duke
parents:
diff changeset
1544 case Bytecodes::_baload: array_load(T_BYTE); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1545 case Bytecodes::_caload: array_load(T_CHAR); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1546 case Bytecodes::_iaload: array_load(T_INT); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1547 case Bytecodes::_saload: array_load(T_SHORT); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1548 case Bytecodes::_faload: array_load(T_FLOAT); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1549 case Bytecodes::_aaload: array_load(T_OBJECT); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1550 case Bytecodes::_laload: {
a61af66fc99e Initial load
duke
parents:
diff changeset
1551 a = array_addressing(T_LONG, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1552 if (stopped()) return; // guarenteed null or range check
a61af66fc99e Initial load
duke
parents:
diff changeset
1553 _sp -= 2; // Pop array and index
a61af66fc99e Initial load
duke
parents:
diff changeset
1554 push_pair( make_load(control(), a, TypeLong::LONG, T_LONG, TypeAryPtr::LONGS));
a61af66fc99e Initial load
duke
parents:
diff changeset
1555 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1556 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1557 case Bytecodes::_daload: {
a61af66fc99e Initial load
duke
parents:
diff changeset
1558 a = array_addressing(T_DOUBLE, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1559 if (stopped()) return; // guarenteed null or range check
a61af66fc99e Initial load
duke
parents:
diff changeset
1560 _sp -= 2; // Pop array and index
a61af66fc99e Initial load
duke
parents:
diff changeset
1561 push_pair( make_load(control(), a, Type::DOUBLE, T_DOUBLE, TypeAryPtr::DOUBLES));
a61af66fc99e Initial load
duke
parents:
diff changeset
1562 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1563 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1564 case Bytecodes::_bastore: array_store(T_BYTE); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1565 case Bytecodes::_castore: array_store(T_CHAR); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1566 case Bytecodes::_iastore: array_store(T_INT); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1567 case Bytecodes::_sastore: array_store(T_SHORT); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1568 case Bytecodes::_fastore: array_store(T_FLOAT); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1569 case Bytecodes::_aastore: {
a61af66fc99e Initial load
duke
parents:
diff changeset
1570 d = array_addressing(T_OBJECT, 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1571 if (stopped()) return; // guarenteed null or range check
a61af66fc99e Initial load
duke
parents:
diff changeset
1572 array_store_check();
a61af66fc99e Initial load
duke
parents:
diff changeset
1573 c = pop(); // Oop to store
a61af66fc99e Initial load
duke
parents:
diff changeset
1574 b = pop(); // index (already used)
a61af66fc99e Initial load
duke
parents:
diff changeset
1575 a = pop(); // the array itself
a61af66fc99e Initial load
duke
parents:
diff changeset
1576 const Type* elemtype = _gvn.type(a)->is_aryptr()->elem();
a61af66fc99e Initial load
duke
parents:
diff changeset
1577 const TypeAryPtr* adr_type = TypeAryPtr::OOPS;
a61af66fc99e Initial load
duke
parents:
diff changeset
1578 Node* store = store_oop_to_array(control(), a, d, adr_type, c, elemtype, T_OBJECT);
a61af66fc99e Initial load
duke
parents:
diff changeset
1579 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1580 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1581 case Bytecodes::_lastore: {
a61af66fc99e Initial load
duke
parents:
diff changeset
1582 a = array_addressing(T_LONG, 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1583 if (stopped()) return; // guarenteed null or range check
a61af66fc99e Initial load
duke
parents:
diff changeset
1584 c = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1585 _sp -= 2; // Pop array and index
a61af66fc99e Initial load
duke
parents:
diff changeset
1586 store_to_memory(control(), a, c, T_LONG, TypeAryPtr::LONGS);
a61af66fc99e Initial load
duke
parents:
diff changeset
1587 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1588 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1589 case Bytecodes::_dastore: {
a61af66fc99e Initial load
duke
parents:
diff changeset
1590 a = array_addressing(T_DOUBLE, 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1591 if (stopped()) return; // guarenteed null or range check
a61af66fc99e Initial load
duke
parents:
diff changeset
1592 c = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1593 _sp -= 2; // Pop array and index
a61af66fc99e Initial load
duke
parents:
diff changeset
1594 c = dstore_rounding(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
1595 store_to_memory(control(), a, c, T_DOUBLE, TypeAryPtr::DOUBLES);
a61af66fc99e Initial load
duke
parents:
diff changeset
1596 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1597 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1598 case Bytecodes::_getfield:
a61af66fc99e Initial load
duke
parents:
diff changeset
1599 do_getfield();
a61af66fc99e Initial load
duke
parents:
diff changeset
1600 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1601
a61af66fc99e Initial load
duke
parents:
diff changeset
1602 case Bytecodes::_getstatic:
a61af66fc99e Initial load
duke
parents:
diff changeset
1603 do_getstatic();
a61af66fc99e Initial load
duke
parents:
diff changeset
1604 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1605
a61af66fc99e Initial load
duke
parents:
diff changeset
1606 case Bytecodes::_putfield:
a61af66fc99e Initial load
duke
parents:
diff changeset
1607 do_putfield();
a61af66fc99e Initial load
duke
parents:
diff changeset
1608 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1609
a61af66fc99e Initial load
duke
parents:
diff changeset
1610 case Bytecodes::_putstatic:
a61af66fc99e Initial load
duke
parents:
diff changeset
1611 do_putstatic();
a61af66fc99e Initial load
duke
parents:
diff changeset
1612 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1613
a61af66fc99e Initial load
duke
parents:
diff changeset
1614 case Bytecodes::_irem:
a61af66fc99e Initial load
duke
parents:
diff changeset
1615 do_irem();
a61af66fc99e Initial load
duke
parents:
diff changeset
1616 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1617 case Bytecodes::_idiv:
a61af66fc99e Initial load
duke
parents:
diff changeset
1618 // Must keep both values on the expression-stack during null-check
a61af66fc99e Initial load
duke
parents:
diff changeset
1619 do_null_check(peek(), T_INT);
a61af66fc99e Initial load
duke
parents:
diff changeset
1620 // Compile-time detect of null-exception?
a61af66fc99e Initial load
duke
parents:
diff changeset
1621 if (stopped()) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1622 b = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1623 a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1624 push( _gvn.transform( new (C, 3) DivINode(control(),a,b) ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1625 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1626 case Bytecodes::_imul:
a61af66fc99e Initial load
duke
parents:
diff changeset
1627 b = pop(); a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1628 push( _gvn.transform( new (C, 3) MulINode(a,b) ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1629 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1630 case Bytecodes::_iadd:
a61af66fc99e Initial load
duke
parents:
diff changeset
1631 b = pop(); a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1632 push( _gvn.transform( new (C, 3) AddINode(a,b) ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1633 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1634 case Bytecodes::_ineg:
a61af66fc99e Initial load
duke
parents:
diff changeset
1635 a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1636 push( _gvn.transform( new (C, 3) SubINode(_gvn.intcon(0),a)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1637 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1638 case Bytecodes::_isub:
a61af66fc99e Initial load
duke
parents:
diff changeset
1639 b = pop(); a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1640 push( _gvn.transform( new (C, 3) SubINode(a,b) ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1641 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1642 case Bytecodes::_iand:
a61af66fc99e Initial load
duke
parents:
diff changeset
1643 b = pop(); a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1644 push( _gvn.transform( new (C, 3) AndINode(a,b) ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1645 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1646 case Bytecodes::_ior:
a61af66fc99e Initial load
duke
parents:
diff changeset
1647 b = pop(); a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1648 push( _gvn.transform( new (C, 3) OrINode(a,b) ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1649 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1650 case Bytecodes::_ixor:
a61af66fc99e Initial load
duke
parents:
diff changeset
1651 b = pop(); a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1652 push( _gvn.transform( new (C, 3) XorINode(a,b) ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1653 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1654 case Bytecodes::_ishl:
a61af66fc99e Initial load
duke
parents:
diff changeset
1655 b = pop(); a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1656 push( _gvn.transform( new (C, 3) LShiftINode(a,b) ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1657 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1658 case Bytecodes::_ishr:
a61af66fc99e Initial load
duke
parents:
diff changeset
1659 b = pop(); a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1660 push( _gvn.transform( new (C, 3) RShiftINode(a,b) ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1661 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1662 case Bytecodes::_iushr:
a61af66fc99e Initial load
duke
parents:
diff changeset
1663 b = pop(); a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1664 push( _gvn.transform( new (C, 3) URShiftINode(a,b) ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1665 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1666
a61af66fc99e Initial load
duke
parents:
diff changeset
1667 case Bytecodes::_fneg:
a61af66fc99e Initial load
duke
parents:
diff changeset
1668 a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1669 b = _gvn.transform(new (C, 2) NegFNode (a));
a61af66fc99e Initial load
duke
parents:
diff changeset
1670 push(b);
a61af66fc99e Initial load
duke
parents:
diff changeset
1671 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1672
a61af66fc99e Initial load
duke
parents:
diff changeset
1673 case Bytecodes::_fsub:
a61af66fc99e Initial load
duke
parents:
diff changeset
1674 b = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1675 a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1676 c = _gvn.transform( new (C, 3) SubFNode(a,b) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1677 d = precision_rounding(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
1678 push( d );
a61af66fc99e Initial load
duke
parents:
diff changeset
1679 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1680
a61af66fc99e Initial load
duke
parents:
diff changeset
1681 case Bytecodes::_fadd:
a61af66fc99e Initial load
duke
parents:
diff changeset
1682 b = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1683 a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1684 c = _gvn.transform( new (C, 3) AddFNode(a,b) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1685 d = precision_rounding(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
1686 push( d );
a61af66fc99e Initial load
duke
parents:
diff changeset
1687 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1688
a61af66fc99e Initial load
duke
parents:
diff changeset
1689 case Bytecodes::_fmul:
a61af66fc99e Initial load
duke
parents:
diff changeset
1690 b = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1691 a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1692 c = _gvn.transform( new (C, 3) MulFNode(a,b) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1693 d = precision_rounding(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
1694 push( d );
a61af66fc99e Initial load
duke
parents:
diff changeset
1695 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1696
a61af66fc99e Initial load
duke
parents:
diff changeset
1697 case Bytecodes::_fdiv:
a61af66fc99e Initial load
duke
parents:
diff changeset
1698 b = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1699 a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1700 c = _gvn.transform( new (C, 3) DivFNode(0,a,b) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1701 d = precision_rounding(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
1702 push( d );
a61af66fc99e Initial load
duke
parents:
diff changeset
1703 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1704
a61af66fc99e Initial load
duke
parents:
diff changeset
1705 case Bytecodes::_frem:
a61af66fc99e Initial load
duke
parents:
diff changeset
1706 if (Matcher::has_match_rule(Op_ModF)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1707 // Generate a ModF node.
a61af66fc99e Initial load
duke
parents:
diff changeset
1708 b = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1709 a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1710 c = _gvn.transform( new (C, 3) ModFNode(0,a,b) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1711 d = precision_rounding(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
1712 push( d );
a61af66fc99e Initial load
duke
parents:
diff changeset
1713 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1714 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1715 // Generate a call.
a61af66fc99e Initial load
duke
parents:
diff changeset
1716 modf();
a61af66fc99e Initial load
duke
parents:
diff changeset
1717 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1718 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1719
a61af66fc99e Initial load
duke
parents:
diff changeset
1720 case Bytecodes::_fcmpl:
a61af66fc99e Initial load
duke
parents:
diff changeset
1721 b = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1722 a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1723 c = _gvn.transform( new (C, 3) CmpF3Node( a, b));
a61af66fc99e Initial load
duke
parents:
diff changeset
1724 push(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
1725 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1726 case Bytecodes::_fcmpg:
a61af66fc99e Initial load
duke
parents:
diff changeset
1727 b = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1728 a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1729
a61af66fc99e Initial load
duke
parents:
diff changeset
1730 // Same as fcmpl but need to flip the unordered case. Swap the inputs,
a61af66fc99e Initial load
duke
parents:
diff changeset
1731 // which negates the result sign except for unordered. Flip the unordered
a61af66fc99e Initial load
duke
parents:
diff changeset
1732 // as well by using CmpF3 which implements unordered-lesser instead of
a61af66fc99e Initial load
duke
parents:
diff changeset
1733 // unordered-greater semantics. Finally, commute the result bits. Result
a61af66fc99e Initial load
duke
parents:
diff changeset
1734 // is same as using a CmpF3Greater except we did it with CmpF3 alone.
a61af66fc99e Initial load
duke
parents:
diff changeset
1735 c = _gvn.transform( new (C, 3) CmpF3Node( b, a));
a61af66fc99e Initial load
duke
parents:
diff changeset
1736 c = _gvn.transform( new (C, 3) SubINode(_gvn.intcon(0),c) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1737 push(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
1738 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1739
a61af66fc99e Initial load
duke
parents:
diff changeset
1740 case Bytecodes::_f2i:
a61af66fc99e Initial load
duke
parents:
diff changeset
1741 a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1742 push(_gvn.transform(new (C, 2) ConvF2INode(a)));
a61af66fc99e Initial load
duke
parents:
diff changeset
1743 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1744
a61af66fc99e Initial load
duke
parents:
diff changeset
1745 case Bytecodes::_d2i:
a61af66fc99e Initial load
duke
parents:
diff changeset
1746 a = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1747 b = _gvn.transform(new (C, 2) ConvD2INode(a));
a61af66fc99e Initial load
duke
parents:
diff changeset
1748 push( b );
a61af66fc99e Initial load
duke
parents:
diff changeset
1749 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1750
a61af66fc99e Initial load
duke
parents:
diff changeset
1751 case Bytecodes::_f2d:
a61af66fc99e Initial load
duke
parents:
diff changeset
1752 a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1753 b = _gvn.transform( new (C, 2) ConvF2DNode(a));
a61af66fc99e Initial load
duke
parents:
diff changeset
1754 push_pair( b );
a61af66fc99e Initial load
duke
parents:
diff changeset
1755 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1756
a61af66fc99e Initial load
duke
parents:
diff changeset
1757 case Bytecodes::_d2f:
a61af66fc99e Initial load
duke
parents:
diff changeset
1758 a = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1759 b = _gvn.transform( new (C, 2) ConvD2FNode(a));
a61af66fc99e Initial load
duke
parents:
diff changeset
1760 // This breaks _227_mtrt (speed & correctness) and _222_mpegaudio (speed)
a61af66fc99e Initial load
duke
parents:
diff changeset
1761 //b = _gvn.transform(new (C, 2) RoundFloatNode(0, b) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1762 push( b );
a61af66fc99e Initial load
duke
parents:
diff changeset
1763 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1764
a61af66fc99e Initial load
duke
parents:
diff changeset
1765 case Bytecodes::_l2f:
a61af66fc99e Initial load
duke
parents:
diff changeset
1766 if (Matcher::convL2FSupported()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1767 a = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1768 b = _gvn.transform( new (C, 2) ConvL2FNode(a));
a61af66fc99e Initial load
duke
parents:
diff changeset
1769 // For i486.ad, FILD doesn't restrict precision to 24 or 53 bits.
a61af66fc99e Initial load
duke
parents:
diff changeset
1770 // Rather than storing the result into an FP register then pushing
a61af66fc99e Initial load
duke
parents:
diff changeset
1771 // out to memory to round, the machine instruction that implements
a61af66fc99e Initial load
duke
parents:
diff changeset
1772 // ConvL2D is responsible for rounding.
a61af66fc99e Initial load
duke
parents:
diff changeset
1773 // c = precision_rounding(b);
a61af66fc99e Initial load
duke
parents:
diff changeset
1774 c = _gvn.transform(b);
a61af66fc99e Initial load
duke
parents:
diff changeset
1775 push(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
1776 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1777 l2f();
a61af66fc99e Initial load
duke
parents:
diff changeset
1778 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1779 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1780
a61af66fc99e Initial load
duke
parents:
diff changeset
1781 case Bytecodes::_l2d:
a61af66fc99e Initial load
duke
parents:
diff changeset
1782 a = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1783 b = _gvn.transform( new (C, 2) ConvL2DNode(a));
a61af66fc99e Initial load
duke
parents:
diff changeset
1784 // For i486.ad, rounding is always necessary (see _l2f above).
a61af66fc99e Initial load
duke
parents:
diff changeset
1785 // c = dprecision_rounding(b);
a61af66fc99e Initial load
duke
parents:
diff changeset
1786 c = _gvn.transform(b);
a61af66fc99e Initial load
duke
parents:
diff changeset
1787 push_pair(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
1788 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1789
a61af66fc99e Initial load
duke
parents:
diff changeset
1790 case Bytecodes::_f2l:
a61af66fc99e Initial load
duke
parents:
diff changeset
1791 a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1792 b = _gvn.transform( new (C, 2) ConvF2LNode(a));
a61af66fc99e Initial load
duke
parents:
diff changeset
1793 push_pair(b);
a61af66fc99e Initial load
duke
parents:
diff changeset
1794 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1795
a61af66fc99e Initial load
duke
parents:
diff changeset
1796 case Bytecodes::_d2l:
a61af66fc99e Initial load
duke
parents:
diff changeset
1797 a = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1798 b = _gvn.transform( new (C, 2) ConvD2LNode(a));
a61af66fc99e Initial load
duke
parents:
diff changeset
1799 push_pair(b);
a61af66fc99e Initial load
duke
parents:
diff changeset
1800 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1801
a61af66fc99e Initial load
duke
parents:
diff changeset
1802 case Bytecodes::_dsub:
a61af66fc99e Initial load
duke
parents:
diff changeset
1803 b = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1804 a = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1805 c = _gvn.transform( new (C, 3) SubDNode(a,b) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1806 d = dprecision_rounding(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
1807 push_pair( d );
a61af66fc99e Initial load
duke
parents:
diff changeset
1808 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1809
a61af66fc99e Initial load
duke
parents:
diff changeset
1810 case Bytecodes::_dadd:
a61af66fc99e Initial load
duke
parents:
diff changeset
1811 b = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1812 a = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1813 c = _gvn.transform( new (C, 3) AddDNode(a,b) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1814 d = dprecision_rounding(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
1815 push_pair( d );
a61af66fc99e Initial load
duke
parents:
diff changeset
1816 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1817
a61af66fc99e Initial load
duke
parents:
diff changeset
1818 case Bytecodes::_dmul:
a61af66fc99e Initial load
duke
parents:
diff changeset
1819 b = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1820 a = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1821 c = _gvn.transform( new (C, 3) MulDNode(a,b) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1822 d = dprecision_rounding(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
1823 push_pair( d );
a61af66fc99e Initial load
duke
parents:
diff changeset
1824 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1825
a61af66fc99e Initial load
duke
parents:
diff changeset
1826 case Bytecodes::_ddiv:
a61af66fc99e Initial load
duke
parents:
diff changeset
1827 b = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1828 a = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1829 c = _gvn.transform( new (C, 3) DivDNode(0,a,b) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1830 d = dprecision_rounding(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
1831 push_pair( d );
a61af66fc99e Initial load
duke
parents:
diff changeset
1832 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1833
a61af66fc99e Initial load
duke
parents:
diff changeset
1834 case Bytecodes::_dneg:
a61af66fc99e Initial load
duke
parents:
diff changeset
1835 a = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1836 b = _gvn.transform(new (C, 2) NegDNode (a));
a61af66fc99e Initial load
duke
parents:
diff changeset
1837 push_pair(b);
a61af66fc99e Initial load
duke
parents:
diff changeset
1838 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1839
a61af66fc99e Initial load
duke
parents:
diff changeset
1840 case Bytecodes::_drem:
a61af66fc99e Initial load
duke
parents:
diff changeset
1841 if (Matcher::has_match_rule(Op_ModD)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1842 // Generate a ModD node.
a61af66fc99e Initial load
duke
parents:
diff changeset
1843 b = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1844 a = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1845 // a % b
a61af66fc99e Initial load
duke
parents:
diff changeset
1846
a61af66fc99e Initial load
duke
parents:
diff changeset
1847 c = _gvn.transform( new (C, 3) ModDNode(0,a,b) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1848 d = dprecision_rounding(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
1849 push_pair( d );
a61af66fc99e Initial load
duke
parents:
diff changeset
1850 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1851 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1852 // Generate a call.
a61af66fc99e Initial load
duke
parents:
diff changeset
1853 modd();
a61af66fc99e Initial load
duke
parents:
diff changeset
1854 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1855 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1856
a61af66fc99e Initial load
duke
parents:
diff changeset
1857 case Bytecodes::_dcmpl:
a61af66fc99e Initial load
duke
parents:
diff changeset
1858 b = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1859 a = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1860 c = _gvn.transform( new (C, 3) CmpD3Node( a, b));
a61af66fc99e Initial load
duke
parents:
diff changeset
1861 push(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
1862 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1863
a61af66fc99e Initial load
duke
parents:
diff changeset
1864 case Bytecodes::_dcmpg:
a61af66fc99e Initial load
duke
parents:
diff changeset
1865 b = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1866 a = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1867 // Same as dcmpl but need to flip the unordered case.
a61af66fc99e Initial load
duke
parents:
diff changeset
1868 // Commute the inputs, which negates the result sign except for unordered.
a61af66fc99e Initial load
duke
parents:
diff changeset
1869 // Flip the unordered as well by using CmpD3 which implements
a61af66fc99e Initial load
duke
parents:
diff changeset
1870 // unordered-lesser instead of unordered-greater semantics.
a61af66fc99e Initial load
duke
parents:
diff changeset
1871 // Finally, negate the result bits. Result is same as using a
a61af66fc99e Initial load
duke
parents:
diff changeset
1872 // CmpD3Greater except we did it with CmpD3 alone.
a61af66fc99e Initial load
duke
parents:
diff changeset
1873 c = _gvn.transform( new (C, 3) CmpD3Node( b, a));
a61af66fc99e Initial load
duke
parents:
diff changeset
1874 c = _gvn.transform( new (C, 3) SubINode(_gvn.intcon(0),c) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1875 push(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
1876 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1877
a61af66fc99e Initial load
duke
parents:
diff changeset
1878
a61af66fc99e Initial load
duke
parents:
diff changeset
1879 // Note for longs -> lo word is on TOS, hi word is on TOS - 1
a61af66fc99e Initial load
duke
parents:
diff changeset
1880 case Bytecodes::_land:
a61af66fc99e Initial load
duke
parents:
diff changeset
1881 b = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1882 a = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1883 c = _gvn.transform( new (C, 3) AndLNode(a,b) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1884 push_pair(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
1885 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1886 case Bytecodes::_lor:
a61af66fc99e Initial load
duke
parents:
diff changeset
1887 b = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1888 a = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1889 c = _gvn.transform( new (C, 3) OrLNode(a,b) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1890 push_pair(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
1891 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1892 case Bytecodes::_lxor:
a61af66fc99e Initial load
duke
parents:
diff changeset
1893 b = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1894 a = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1895 c = _gvn.transform( new (C, 3) XorLNode(a,b) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1896 push_pair(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
1897 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1898
a61af66fc99e Initial load
duke
parents:
diff changeset
1899 case Bytecodes::_lshl:
a61af66fc99e Initial load
duke
parents:
diff changeset
1900 b = pop(); // the shift count
a61af66fc99e Initial load
duke
parents:
diff changeset
1901 a = pop_pair(); // value to be shifted
a61af66fc99e Initial load
duke
parents:
diff changeset
1902 c = _gvn.transform( new (C, 3) LShiftLNode(a,b) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1903 push_pair(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
1904 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1905 case Bytecodes::_lshr:
a61af66fc99e Initial load
duke
parents:
diff changeset
1906 b = pop(); // the shift count
a61af66fc99e Initial load
duke
parents:
diff changeset
1907 a = pop_pair(); // value to be shifted
a61af66fc99e Initial load
duke
parents:
diff changeset
1908 c = _gvn.transform( new (C, 3) RShiftLNode(a,b) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1909 push_pair(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
1910 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1911 case Bytecodes::_lushr:
a61af66fc99e Initial load
duke
parents:
diff changeset
1912 b = pop(); // the shift count
a61af66fc99e Initial load
duke
parents:
diff changeset
1913 a = pop_pair(); // value to be shifted
a61af66fc99e Initial load
duke
parents:
diff changeset
1914 c = _gvn.transform( new (C, 3) URShiftLNode(a,b) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1915 push_pair(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
1916 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1917 case Bytecodes::_lmul:
a61af66fc99e Initial load
duke
parents:
diff changeset
1918 b = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1919 a = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1920 c = _gvn.transform( new (C, 3) MulLNode(a,b) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1921 push_pair(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
1922 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1923
a61af66fc99e Initial load
duke
parents:
diff changeset
1924 case Bytecodes::_lrem:
a61af66fc99e Initial load
duke
parents:
diff changeset
1925 // Must keep both values on the expression-stack during null-check
a61af66fc99e Initial load
duke
parents:
diff changeset
1926 assert(peek(0) == top(), "long word order");
a61af66fc99e Initial load
duke
parents:
diff changeset
1927 do_null_check(peek(1), T_LONG);
a61af66fc99e Initial load
duke
parents:
diff changeset
1928 // Compile-time detect of null-exception?
a61af66fc99e Initial load
duke
parents:
diff changeset
1929 if (stopped()) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1930 b = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1931 a = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1932 c = _gvn.transform( new (C, 3) ModLNode(control(),a,b) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1933 push_pair(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
1934 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1935
a61af66fc99e Initial load
duke
parents:
diff changeset
1936 case Bytecodes::_ldiv:
a61af66fc99e Initial load
duke
parents:
diff changeset
1937 // Must keep both values on the expression-stack during null-check
a61af66fc99e Initial load
duke
parents:
diff changeset
1938 assert(peek(0) == top(), "long word order");
a61af66fc99e Initial load
duke
parents:
diff changeset
1939 do_null_check(peek(1), T_LONG);
a61af66fc99e Initial load
duke
parents:
diff changeset
1940 // Compile-time detect of null-exception?
a61af66fc99e Initial load
duke
parents:
diff changeset
1941 if (stopped()) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1942 b = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1943 a = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1944 c = _gvn.transform( new (C, 3) DivLNode(control(),a,b) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1945 push_pair(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
1946 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1947
a61af66fc99e Initial load
duke
parents:
diff changeset
1948 case Bytecodes::_ladd:
a61af66fc99e Initial load
duke
parents:
diff changeset
1949 b = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1950 a = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1951 c = _gvn.transform( new (C, 3) AddLNode(a,b) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1952 push_pair(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
1953 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1954 case Bytecodes::_lsub:
a61af66fc99e Initial load
duke
parents:
diff changeset
1955 b = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1956 a = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1957 c = _gvn.transform( new (C, 3) SubLNode(a,b) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1958 push_pair(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
1959 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1960 case Bytecodes::_lcmp:
a61af66fc99e Initial load
duke
parents:
diff changeset
1961 // Safepoints are now inserted _before_ branches. The long-compare
a61af66fc99e Initial load
duke
parents:
diff changeset
1962 // bytecode painfully produces a 3-way value (-1,0,+1) which requires a
a61af66fc99e Initial load
duke
parents:
diff changeset
1963 // slew of control flow. These are usually followed by a CmpI vs zero and
a61af66fc99e Initial load
duke
parents:
diff changeset
1964 // a branch; this pattern then optimizes to the obvious long-compare and
a61af66fc99e Initial load
duke
parents:
diff changeset
1965 // branch. However, if the branch is backwards there's a Safepoint
a61af66fc99e Initial load
duke
parents:
diff changeset
1966 // inserted. The inserted Safepoint captures the JVM state at the
a61af66fc99e Initial load
duke
parents:
diff changeset
1967 // pre-branch point, i.e. it captures the 3-way value. Thus if a
a61af66fc99e Initial load
duke
parents:
diff changeset
1968 // long-compare is used to control a loop the debug info will force
a61af66fc99e Initial load
duke
parents:
diff changeset
1969 // computation of the 3-way value, even though the generated code uses a
a61af66fc99e Initial load
duke
parents:
diff changeset
1970 // long-compare and branch. We try to rectify the situation by inserting
a61af66fc99e Initial load
duke
parents:
diff changeset
1971 // a SafePoint here and have it dominate and kill the safepoint added at a
a61af66fc99e Initial load
duke
parents:
diff changeset
1972 // following backwards branch. At this point the JVM state merely holds 2
a61af66fc99e Initial load
duke
parents:
diff changeset
1973 // longs but not the 3-way value.
a61af66fc99e Initial load
duke
parents:
diff changeset
1974 if( UseLoopSafepoints ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1975 switch( iter().next_bc() ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1976 case Bytecodes::_ifgt:
a61af66fc99e Initial load
duke
parents:
diff changeset
1977 case Bytecodes::_iflt:
a61af66fc99e Initial load
duke
parents:
diff changeset
1978 case Bytecodes::_ifge:
a61af66fc99e Initial load
duke
parents:
diff changeset
1979 case Bytecodes::_ifle:
a61af66fc99e Initial load
duke
parents:
diff changeset
1980 case Bytecodes::_ifne:
a61af66fc99e Initial load
duke
parents:
diff changeset
1981 case Bytecodes::_ifeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
1982 // If this is a backwards branch in the bytecodes, add Safepoint
a61af66fc99e Initial load
duke
parents:
diff changeset
1983 maybe_add_safepoint(iter().next_get_dest());
a61af66fc99e Initial load
duke
parents:
diff changeset
1984 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1985 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1986 b = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1987 a = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1988 c = _gvn.transform( new (C, 3) CmpL3Node( a, b ));
a61af66fc99e Initial load
duke
parents:
diff changeset
1989 push(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
1990 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1991
a61af66fc99e Initial load
duke
parents:
diff changeset
1992 case Bytecodes::_lneg:
a61af66fc99e Initial load
duke
parents:
diff changeset
1993 a = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1994 b = _gvn.transform( new (C, 3) SubLNode(longcon(0),a));
a61af66fc99e Initial load
duke
parents:
diff changeset
1995 push_pair(b);
a61af66fc99e Initial load
duke
parents:
diff changeset
1996 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1997 case Bytecodes::_l2i:
a61af66fc99e Initial load
duke
parents:
diff changeset
1998 a = pop_pair();
a61af66fc99e Initial load
duke
parents:
diff changeset
1999 push( _gvn.transform( new (C, 2) ConvL2INode(a)));
a61af66fc99e Initial load
duke
parents:
diff changeset
2000 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2001 case Bytecodes::_i2l:
a61af66fc99e Initial load
duke
parents:
diff changeset
2002 a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2003 b = _gvn.transform( new (C, 2) ConvI2LNode(a));
a61af66fc99e Initial load
duke
parents:
diff changeset
2004 push_pair(b);
a61af66fc99e Initial load
duke
parents:
diff changeset
2005 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2006 case Bytecodes::_i2b:
a61af66fc99e Initial load
duke
parents:
diff changeset
2007 // Sign extend
a61af66fc99e Initial load
duke
parents:
diff changeset
2008 a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2009 a = _gvn.transform( new (C, 3) LShiftINode(a,_gvn.intcon(24)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
2010 a = _gvn.transform( new (C, 3) RShiftINode(a,_gvn.intcon(24)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
2011 push( a );
a61af66fc99e Initial load
duke
parents:
diff changeset
2012 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2013 case Bytecodes::_i2s:
a61af66fc99e Initial load
duke
parents:
diff changeset
2014 a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2015 a = _gvn.transform( new (C, 3) LShiftINode(a,_gvn.intcon(16)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
2016 a = _gvn.transform( new (C, 3) RShiftINode(a,_gvn.intcon(16)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
2017 push( a );
a61af66fc99e Initial load
duke
parents:
diff changeset
2018 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2019 case Bytecodes::_i2c:
a61af66fc99e Initial load
duke
parents:
diff changeset
2020 a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2021 push( _gvn.transform( new (C, 3) AndINode(a,_gvn.intcon(0xFFFF)) ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
2022 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2023
a61af66fc99e Initial load
duke
parents:
diff changeset
2024 case Bytecodes::_i2f:
a61af66fc99e Initial load
duke
parents:
diff changeset
2025 a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2026 b = _gvn.transform( new (C, 2) ConvI2FNode(a) ) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2027 c = precision_rounding(b);
a61af66fc99e Initial load
duke
parents:
diff changeset
2028 push (b);
a61af66fc99e Initial load
duke
parents:
diff changeset
2029 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2030
a61af66fc99e Initial load
duke
parents:
diff changeset
2031 case Bytecodes::_i2d:
a61af66fc99e Initial load
duke
parents:
diff changeset
2032 a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2033 b = _gvn.transform( new (C, 2) ConvI2DNode(a));
a61af66fc99e Initial load
duke
parents:
diff changeset
2034 push_pair(b);
a61af66fc99e Initial load
duke
parents:
diff changeset
2035 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2036
a61af66fc99e Initial load
duke
parents:
diff changeset
2037 case Bytecodes::_iinc: // Increment local
a61af66fc99e Initial load
duke
parents:
diff changeset
2038 i = iter().get_index(); // Get local index
a61af66fc99e Initial load
duke
parents:
diff changeset
2039 set_local( i, _gvn.transform( new (C, 3) AddINode( _gvn.intcon(iter().get_iinc_con()), local(i) ) ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
2040 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2041
a61af66fc99e Initial load
duke
parents:
diff changeset
2042 // Exit points of synchronized methods must have an unlock node
a61af66fc99e Initial load
duke
parents:
diff changeset
2043 case Bytecodes::_return:
a61af66fc99e Initial load
duke
parents:
diff changeset
2044 return_current(NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
2045 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2046
a61af66fc99e Initial load
duke
parents:
diff changeset
2047 case Bytecodes::_ireturn:
a61af66fc99e Initial load
duke
parents:
diff changeset
2048 case Bytecodes::_areturn:
a61af66fc99e Initial load
duke
parents:
diff changeset
2049 case Bytecodes::_freturn:
a61af66fc99e Initial load
duke
parents:
diff changeset
2050 return_current(pop());
a61af66fc99e Initial load
duke
parents:
diff changeset
2051 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2052 case Bytecodes::_lreturn:
a61af66fc99e Initial load
duke
parents:
diff changeset
2053 return_current(pop_pair());
a61af66fc99e Initial load
duke
parents:
diff changeset
2054 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2055 case Bytecodes::_dreturn:
a61af66fc99e Initial load
duke
parents:
diff changeset
2056 return_current(pop_pair());
a61af66fc99e Initial load
duke
parents:
diff changeset
2057 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2058
a61af66fc99e Initial load
duke
parents:
diff changeset
2059 case Bytecodes::_athrow:
a61af66fc99e Initial load
duke
parents:
diff changeset
2060 // null exception oop throws NULL pointer exception
a61af66fc99e Initial load
duke
parents:
diff changeset
2061 do_null_check(peek(), T_OBJECT);
a61af66fc99e Initial load
duke
parents:
diff changeset
2062 if (stopped()) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2063 if (JvmtiExport::can_post_exceptions()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2064 // "Full-speed throwing" is not necessary here,
a61af66fc99e Initial load
duke
parents:
diff changeset
2065 // since we're notifying the VM on every throw.
a61af66fc99e Initial load
duke
parents:
diff changeset
2066 uncommon_trap(Deoptimization::Reason_unhandled,
a61af66fc99e Initial load
duke
parents:
diff changeset
2067 Deoptimization::Action_none);
a61af66fc99e Initial load
duke
parents:
diff changeset
2068 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2069 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2070 // Hook the thrown exception directly to subsequent handlers.
a61af66fc99e Initial load
duke
parents:
diff changeset
2071 if (BailoutToInterpreterForThrows) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2072 // Keep method interpreted from now on.
a61af66fc99e Initial load
duke
parents:
diff changeset
2073 uncommon_trap(Deoptimization::Reason_unhandled,
a61af66fc99e Initial load
duke
parents:
diff changeset
2074 Deoptimization::Action_make_not_compilable);
a61af66fc99e Initial load
duke
parents:
diff changeset
2075 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2076 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2077 add_exception_state(make_exception_state(peek()));
a61af66fc99e Initial load
duke
parents:
diff changeset
2078 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2079
a61af66fc99e Initial load
duke
parents:
diff changeset
2080 case Bytecodes::_goto: // fall through
a61af66fc99e Initial load
duke
parents:
diff changeset
2081 case Bytecodes::_goto_w: {
a61af66fc99e Initial load
duke
parents:
diff changeset
2082 int target_bci = (bc() == Bytecodes::_goto) ? iter().get_dest() : iter().get_far_dest();
a61af66fc99e Initial load
duke
parents:
diff changeset
2083
a61af66fc99e Initial load
duke
parents:
diff changeset
2084 // If this is a backwards branch in the bytecodes, add Safepoint
a61af66fc99e Initial load
duke
parents:
diff changeset
2085 maybe_add_safepoint(target_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
2086
a61af66fc99e Initial load
duke
parents:
diff changeset
2087 // Update method data
a61af66fc99e Initial load
duke
parents:
diff changeset
2088 profile_taken_branch(target_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
2089
a61af66fc99e Initial load
duke
parents:
diff changeset
2090 // Merge the current control into the target basic block
a61af66fc99e Initial load
duke
parents:
diff changeset
2091 merge(target_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
2092
a61af66fc99e Initial load
duke
parents:
diff changeset
2093 // See if we can get some profile data and hand it off to the next block
a61af66fc99e Initial load
duke
parents:
diff changeset
2094 Block *target_block = block()->successor_for_bci(target_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
2095 if (target_block->pred_count() != 1) break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2096 ciMethodData* methodData = method()->method_data();
a61af66fc99e Initial load
duke
parents:
diff changeset
2097 if (!methodData->is_mature()) break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2098 ciProfileData* data = methodData->bci_to_data(bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
2099 assert( data->is_JumpData(), "" );
a61af66fc99e Initial load
duke
parents:
diff changeset
2100 int taken = ((ciJumpData*)data)->taken();
a61af66fc99e Initial load
duke
parents:
diff changeset
2101 taken = method()->scale_count(taken);
a61af66fc99e Initial load
duke
parents:
diff changeset
2102 target_block->set_count(taken);
a61af66fc99e Initial load
duke
parents:
diff changeset
2103 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2104 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2105
a61af66fc99e Initial load
duke
parents:
diff changeset
2106 case Bytecodes::_ifnull:
a61af66fc99e Initial load
duke
parents:
diff changeset
2107 do_ifnull(BoolTest::eq);
a61af66fc99e Initial load
duke
parents:
diff changeset
2108 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2109 case Bytecodes::_ifnonnull:
a61af66fc99e Initial load
duke
parents:
diff changeset
2110 do_ifnull(BoolTest::ne);
a61af66fc99e Initial load
duke
parents:
diff changeset
2111 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2112
a61af66fc99e Initial load
duke
parents:
diff changeset
2113 case Bytecodes::_if_acmpeq: btest = BoolTest::eq; goto handle_if_acmp;
a61af66fc99e Initial load
duke
parents:
diff changeset
2114 case Bytecodes::_if_acmpne: btest = BoolTest::ne; goto handle_if_acmp;
a61af66fc99e Initial load
duke
parents:
diff changeset
2115 handle_if_acmp:
a61af66fc99e Initial load
duke
parents:
diff changeset
2116 // If this is a backwards branch in the bytecodes, add Safepoint
a61af66fc99e Initial load
duke
parents:
diff changeset
2117 maybe_add_safepoint(iter().get_dest());
a61af66fc99e Initial load
duke
parents:
diff changeset
2118 a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2119 b = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2120 c = _gvn.transform( new (C, 3) CmpPNode(b, a) );
a61af66fc99e Initial load
duke
parents:
diff changeset
2121 do_if(btest, c);
a61af66fc99e Initial load
duke
parents:
diff changeset
2122 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2123
a61af66fc99e Initial load
duke
parents:
diff changeset
2124 case Bytecodes::_ifeq: btest = BoolTest::eq; goto handle_ifxx;
a61af66fc99e Initial load
duke
parents:
diff changeset
2125 case Bytecodes::_ifne: btest = BoolTest::ne; goto handle_ifxx;
a61af66fc99e Initial load
duke
parents:
diff changeset
2126 case Bytecodes::_iflt: btest = BoolTest::lt; goto handle_ifxx;
a61af66fc99e Initial load
duke
parents:
diff changeset
2127 case Bytecodes::_ifle: btest = BoolTest::le; goto handle_ifxx;
a61af66fc99e Initial load
duke
parents:
diff changeset
2128 case Bytecodes::_ifgt: btest = BoolTest::gt; goto handle_ifxx;
a61af66fc99e Initial load
duke
parents:
diff changeset
2129 case Bytecodes::_ifge: btest = BoolTest::ge; goto handle_ifxx;
a61af66fc99e Initial load
duke
parents:
diff changeset
2130 handle_ifxx:
a61af66fc99e Initial load
duke
parents:
diff changeset
2131 // If this is a backwards branch in the bytecodes, add Safepoint
a61af66fc99e Initial load
duke
parents:
diff changeset
2132 maybe_add_safepoint(iter().get_dest());
a61af66fc99e Initial load
duke
parents:
diff changeset
2133 a = _gvn.intcon(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2134 b = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2135 c = _gvn.transform( new (C, 3) CmpINode(b, a) );
a61af66fc99e Initial load
duke
parents:
diff changeset
2136 do_if(btest, c);
a61af66fc99e Initial load
duke
parents:
diff changeset
2137 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2138
a61af66fc99e Initial load
duke
parents:
diff changeset
2139 case Bytecodes::_if_icmpeq: btest = BoolTest::eq; goto handle_if_icmp;
a61af66fc99e Initial load
duke
parents:
diff changeset
2140 case Bytecodes::_if_icmpne: btest = BoolTest::ne; goto handle_if_icmp;
a61af66fc99e Initial load
duke
parents:
diff changeset
2141 case Bytecodes::_if_icmplt: btest = BoolTest::lt; goto handle_if_icmp;
a61af66fc99e Initial load
duke
parents:
diff changeset
2142 case Bytecodes::_if_icmple: btest = BoolTest::le; goto handle_if_icmp;
a61af66fc99e Initial load
duke
parents:
diff changeset
2143 case Bytecodes::_if_icmpgt: btest = BoolTest::gt; goto handle_if_icmp;
a61af66fc99e Initial load
duke
parents:
diff changeset
2144 case Bytecodes::_if_icmpge: btest = BoolTest::ge; goto handle_if_icmp;
a61af66fc99e Initial load
duke
parents:
diff changeset
2145 handle_if_icmp:
a61af66fc99e Initial load
duke
parents:
diff changeset
2146 // If this is a backwards branch in the bytecodes, add Safepoint
a61af66fc99e Initial load
duke
parents:
diff changeset
2147 maybe_add_safepoint(iter().get_dest());
a61af66fc99e Initial load
duke
parents:
diff changeset
2148 a = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2149 b = pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2150 c = _gvn.transform( new (C, 3) CmpINode( b, a ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
2151 do_if(btest, c);
a61af66fc99e Initial load
duke
parents:
diff changeset
2152 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2153
a61af66fc99e Initial load
duke
parents:
diff changeset
2154 case Bytecodes::_tableswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
2155 do_tableswitch();
a61af66fc99e Initial load
duke
parents:
diff changeset
2156 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2157
a61af66fc99e Initial load
duke
parents:
diff changeset
2158 case Bytecodes::_lookupswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
2159 do_lookupswitch();
a61af66fc99e Initial load
duke
parents:
diff changeset
2160 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2161
a61af66fc99e Initial load
duke
parents:
diff changeset
2162 case Bytecodes::_invokestatic:
a61af66fc99e Initial load
duke
parents:
diff changeset
2163 case Bytecodes::_invokespecial:
a61af66fc99e Initial load
duke
parents:
diff changeset
2164 case Bytecodes::_invokevirtual:
a61af66fc99e Initial load
duke
parents:
diff changeset
2165 case Bytecodes::_invokeinterface:
a61af66fc99e Initial load
duke
parents:
diff changeset
2166 do_call();
a61af66fc99e Initial load
duke
parents:
diff changeset
2167 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2168 case Bytecodes::_checkcast:
a61af66fc99e Initial load
duke
parents:
diff changeset
2169 do_checkcast();
a61af66fc99e Initial load
duke
parents:
diff changeset
2170 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2171 case Bytecodes::_instanceof:
a61af66fc99e Initial load
duke
parents:
diff changeset
2172 do_instanceof();
a61af66fc99e Initial load
duke
parents:
diff changeset
2173 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2174 case Bytecodes::_anewarray:
a61af66fc99e Initial load
duke
parents:
diff changeset
2175 do_anewarray();
a61af66fc99e Initial load
duke
parents:
diff changeset
2176 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2177 case Bytecodes::_newarray:
a61af66fc99e Initial load
duke
parents:
diff changeset
2178 do_newarray((BasicType)iter().get_index());
a61af66fc99e Initial load
duke
parents:
diff changeset
2179 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2180 case Bytecodes::_multianewarray:
a61af66fc99e Initial load
duke
parents:
diff changeset
2181 do_multianewarray();
a61af66fc99e Initial load
duke
parents:
diff changeset
2182 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2183 case Bytecodes::_new:
a61af66fc99e Initial load
duke
parents:
diff changeset
2184 do_new();
a61af66fc99e Initial load
duke
parents:
diff changeset
2185 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2186
a61af66fc99e Initial load
duke
parents:
diff changeset
2187 case Bytecodes::_jsr:
a61af66fc99e Initial load
duke
parents:
diff changeset
2188 case Bytecodes::_jsr_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
2189 do_jsr();
a61af66fc99e Initial load
duke
parents:
diff changeset
2190 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2191
a61af66fc99e Initial load
duke
parents:
diff changeset
2192 case Bytecodes::_ret:
a61af66fc99e Initial load
duke
parents:
diff changeset
2193 do_ret();
a61af66fc99e Initial load
duke
parents:
diff changeset
2194 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2195
a61af66fc99e Initial load
duke
parents:
diff changeset
2196
a61af66fc99e Initial load
duke
parents:
diff changeset
2197 case Bytecodes::_monitorenter:
a61af66fc99e Initial load
duke
parents:
diff changeset
2198 do_monitor_enter();
a61af66fc99e Initial load
duke
parents:
diff changeset
2199 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2200
a61af66fc99e Initial load
duke
parents:
diff changeset
2201 case Bytecodes::_monitorexit:
a61af66fc99e Initial load
duke
parents:
diff changeset
2202 do_monitor_exit();
a61af66fc99e Initial load
duke
parents:
diff changeset
2203 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2204
a61af66fc99e Initial load
duke
parents:
diff changeset
2205 case Bytecodes::_breakpoint:
a61af66fc99e Initial load
duke
parents:
diff changeset
2206 // Breakpoint set concurrently to compile
a61af66fc99e Initial load
duke
parents:
diff changeset
2207 // %%% use an uncommon trap?
a61af66fc99e Initial load
duke
parents:
diff changeset
2208 C->record_failure("breakpoint in method");
a61af66fc99e Initial load
duke
parents:
diff changeset
2209 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2210
a61af66fc99e Initial load
duke
parents:
diff changeset
2211 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
2212 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
2213 map()->dump(99);
a61af66fc99e Initial load
duke
parents:
diff changeset
2214 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
2215 tty->print("\nUnhandled bytecode %s\n", Bytecodes::name(bc()) );
a61af66fc99e Initial load
duke
parents:
diff changeset
2216 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
2217 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2218
a61af66fc99e Initial load
duke
parents:
diff changeset
2219 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
2220 IdealGraphPrinter *printer = IdealGraphPrinter::printer();
a61af66fc99e Initial load
duke
parents:
diff changeset
2221 if(printer) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2222 char buffer[256];
a61af66fc99e Initial load
duke
parents:
diff changeset
2223 sprintf(buffer, "Bytecode %d: %s", bci(), Bytecodes::name(bc()));
a61af66fc99e Initial load
duke
parents:
diff changeset
2224 bool old = printer->traverse_outs();
a61af66fc99e Initial load
duke
parents:
diff changeset
2225 printer->set_traverse_outs(true);
a61af66fc99e Initial load
duke
parents:
diff changeset
2226 printer->print_method(C, buffer, 3);
a61af66fc99e Initial load
duke
parents:
diff changeset
2227 printer->set_traverse_outs(old);
a61af66fc99e Initial load
duke
parents:
diff changeset
2228 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2229 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
2230 }