annotate src/cpu/x86/vm/c1_MacroAssembler_x86.cpp @ 4140:716a2c5c0656

Further reduce diff to HotSpot.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sun, 18 Dec 2011 01:01:34 +0100
parents b648304ba4ff
children 33df1aeaebbf
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
2100
b1a2afa37ec4 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 2002
diff changeset
2 * Copyright (c) 1999, 2011, Oracle and/or its affiliates. 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 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1295
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1295
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1295
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #include "c1/c1_MacroAssembler.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27 #include "c1/c1_Runtime1.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "classfile/systemDictionary.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "gc_interface/collectedHeap.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "interpreter/interpreter.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 #include "oops/arrayOop.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32 #include "oops/markOop.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
33 #include "runtime/basicLock.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
34 #include "runtime/biasedLocking.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
35 #include "runtime/os.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
36 #include "runtime/stubRoutines.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
37
3714
b648304ba4ff Change Graal monitor enter and exit from BasicObjectLock to BasicLock
Christian Wimmer <christian.wimmer@oracle.com>
parents: 3064
diff changeset
38 int C1_MacroAssembler::lock_object(Register hdr, Register obj, Register disp_hdr, Register scratch, Label& slow_case, bool use_basic_object_lock) {
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
39 const int aligned_mask = BytesPerWord -1;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
40 const int hdr_offset = oopDesc::mark_offset_in_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
41 assert(hdr == rax, "hdr must be rax, for the cmpxchg instruction");
a61af66fc99e Initial load
duke
parents:
diff changeset
42 assert(hdr != obj && hdr != disp_hdr && obj != disp_hdr, "registers must be different");
a61af66fc99e Initial load
duke
parents:
diff changeset
43 Label done;
a61af66fc99e Initial load
duke
parents:
diff changeset
44 int null_check_offset = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
45
a61af66fc99e Initial load
duke
parents:
diff changeset
46 verify_oop(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
47
3714
b648304ba4ff Change Graal monitor enter and exit from BasicObjectLock to BasicLock
Christian Wimmer <christian.wimmer@oracle.com>
parents: 3064
diff changeset
48 if (use_basic_object_lock) {
b648304ba4ff Change Graal monitor enter and exit from BasicObjectLock to BasicLock
Christian Wimmer <christian.wimmer@oracle.com>
parents: 3064
diff changeset
49 // save object being locked into the BasicObjectLock
b648304ba4ff Change Graal monitor enter and exit from BasicObjectLock to BasicLock
Christian Wimmer <christian.wimmer@oracle.com>
parents: 3064
diff changeset
50 movptr(Address(disp_hdr, BasicObjectLock::obj_offset_in_bytes()), obj);
b648304ba4ff Change Graal monitor enter and exit from BasicObjectLock to BasicLock
Christian Wimmer <christian.wimmer@oracle.com>
parents: 3064
diff changeset
51 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 if (UseBiasedLocking) {
a61af66fc99e Initial load
duke
parents:
diff changeset
54 assert(scratch != noreg, "should have scratch register at this point");
a61af66fc99e Initial load
duke
parents:
diff changeset
55 null_check_offset = biased_locking_enter(disp_hdr, obj, hdr, scratch, false, done, &slow_case);
a61af66fc99e Initial load
duke
parents:
diff changeset
56 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
57 null_check_offset = offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
58 }
a61af66fc99e Initial load
duke
parents:
diff changeset
59
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // Load object header
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
61 movptr(hdr, Address(obj, hdr_offset));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // and mark it as unlocked
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
63 orptr(hdr, markOopDesc::unlocked_value);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // save unlocked object header into the displaced header location on the stack
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
65 movptr(Address(disp_hdr, 0), hdr);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // test if object header is still the same (i.e. unlocked), and if so, store the
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // displaced header address in the object header - if it is not the same, get the
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // object header instead
a61af66fc99e Initial load
duke
parents:
diff changeset
69 if (os::is_MP()) MacroAssembler::lock(); // must be immediately before cmpxchg!
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
70 cmpxchgptr(disp_hdr, Address(obj, hdr_offset));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
71 // if the object header was the same, we're done
a61af66fc99e Initial load
duke
parents:
diff changeset
72 if (PrintBiasedLockingStatistics) {
a61af66fc99e Initial load
duke
parents:
diff changeset
73 cond_inc32(Assembler::equal,
a61af66fc99e Initial load
duke
parents:
diff changeset
74 ExternalAddress((address)BiasedLocking::fast_path_entry_count_addr()));
a61af66fc99e Initial load
duke
parents:
diff changeset
75 }
a61af66fc99e Initial load
duke
parents:
diff changeset
76 jcc(Assembler::equal, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // if the object header was not the same, it is now in the hdr register
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // => test if it is a stack pointer into the same stack (recursive locking), i.e.:
a61af66fc99e Initial load
duke
parents:
diff changeset
79 //
a61af66fc99e Initial load
duke
parents:
diff changeset
80 // 1) (hdr & aligned_mask) == 0
a61af66fc99e Initial load
duke
parents:
diff changeset
81 // 2) rsp <= hdr
a61af66fc99e Initial load
duke
parents:
diff changeset
82 // 3) hdr <= rsp + page_size
a61af66fc99e Initial load
duke
parents:
diff changeset
83 //
a61af66fc99e Initial load
duke
parents:
diff changeset
84 // these 3 tests can be done by evaluating the following expression:
a61af66fc99e Initial load
duke
parents:
diff changeset
85 //
a61af66fc99e Initial load
duke
parents:
diff changeset
86 // (hdr - rsp) & (aligned_mask - page_size)
a61af66fc99e Initial load
duke
parents:
diff changeset
87 //
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // assuming both the stack pointer and page_size have their least
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // significant 2 bits cleared and page_size is a power of 2
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
90 subptr(hdr, rsp);
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
91 andptr(hdr, aligned_mask - os::vm_page_size());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
92 // for recursive locking, the result is zero => save it in the displaced header
a61af66fc99e Initial load
duke
parents:
diff changeset
93 // location (NULL in the displaced hdr location indicates recursive locking)
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
94 movptr(Address(disp_hdr, 0), hdr);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // otherwise we don't care about the result and handle locking via runtime call
a61af66fc99e Initial load
duke
parents:
diff changeset
96 jcc(Assembler::notZero, slow_case);
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // done
a61af66fc99e Initial load
duke
parents:
diff changeset
98 bind(done);
a61af66fc99e Initial load
duke
parents:
diff changeset
99 return null_check_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
100 }
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102
3714
b648304ba4ff Change Graal monitor enter and exit from BasicObjectLock to BasicLock
Christian Wimmer <christian.wimmer@oracle.com>
parents: 3064
diff changeset
103 void C1_MacroAssembler::unlock_object(Register hdr, Register obj, Register disp_hdr, Label& slow_case, bool use_basic_object_lock) {
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
104 const int aligned_mask = BytesPerWord -1;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
105 const int hdr_offset = oopDesc::mark_offset_in_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
106 assert(disp_hdr == rax, "disp_hdr must be rax, for the cmpxchg instruction");
a61af66fc99e Initial load
duke
parents:
diff changeset
107 assert(hdr != obj && hdr != disp_hdr && obj != disp_hdr, "registers must be different");
a61af66fc99e Initial load
duke
parents:
diff changeset
108 Label done;
a61af66fc99e Initial load
duke
parents:
diff changeset
109
a61af66fc99e Initial load
duke
parents:
diff changeset
110 if (UseBiasedLocking) {
3714
b648304ba4ff Change Graal monitor enter and exit from BasicObjectLock to BasicLock
Christian Wimmer <christian.wimmer@oracle.com>
parents: 3064
diff changeset
111 if (use_basic_object_lock) {
b648304ba4ff Change Graal monitor enter and exit from BasicObjectLock to BasicLock
Christian Wimmer <christian.wimmer@oracle.com>
parents: 3064
diff changeset
112 // load object
b648304ba4ff Change Graal monitor enter and exit from BasicObjectLock to BasicLock
Christian Wimmer <christian.wimmer@oracle.com>
parents: 3064
diff changeset
113 movptr(obj, Address(disp_hdr, BasicObjectLock::obj_offset_in_bytes()));
b648304ba4ff Change Graal monitor enter and exit from BasicObjectLock to BasicLock
Christian Wimmer <christian.wimmer@oracle.com>
parents: 3064
diff changeset
114 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
115 biased_locking_exit(obj, hdr, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
116 }
a61af66fc99e Initial load
duke
parents:
diff changeset
117
a61af66fc99e Initial load
duke
parents:
diff changeset
118 // load displaced header
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
119 movptr(hdr, Address(disp_hdr, 0));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
120 // if the loaded hdr is NULL we had recursive locking
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
121 testptr(hdr, hdr);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
122 // if we had recursive locking, we are done
a61af66fc99e Initial load
duke
parents:
diff changeset
123 jcc(Assembler::zero, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
124 if (!UseBiasedLocking) {
3714
b648304ba4ff Change Graal monitor enter and exit from BasicObjectLock to BasicLock
Christian Wimmer <christian.wimmer@oracle.com>
parents: 3064
diff changeset
125 if (use_basic_object_lock) {
b648304ba4ff Change Graal monitor enter and exit from BasicObjectLock to BasicLock
Christian Wimmer <christian.wimmer@oracle.com>
parents: 3064
diff changeset
126 // load object
b648304ba4ff Change Graal monitor enter and exit from BasicObjectLock to BasicLock
Christian Wimmer <christian.wimmer@oracle.com>
parents: 3064
diff changeset
127 movptr(obj, Address(disp_hdr, BasicObjectLock::obj_offset_in_bytes()));
b648304ba4ff Change Graal monitor enter and exit from BasicObjectLock to BasicLock
Christian Wimmer <christian.wimmer@oracle.com>
parents: 3064
diff changeset
128 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
129 }
a61af66fc99e Initial load
duke
parents:
diff changeset
130 verify_oop(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
131 // test if object header is pointing to the displaced header, and if so, restore
a61af66fc99e Initial load
duke
parents:
diff changeset
132 // the displaced header in the object - if the object header is not pointing to
a61af66fc99e Initial load
duke
parents:
diff changeset
133 // the displaced header, get the object header instead
a61af66fc99e Initial load
duke
parents:
diff changeset
134 if (os::is_MP()) MacroAssembler::lock(); // must be immediately before cmpxchg!
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
135 cmpxchgptr(hdr, Address(obj, hdr_offset));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
136 // if the object header was not pointing to the displaced header,
a61af66fc99e Initial load
duke
parents:
diff changeset
137 // we do unlocking via runtime call
a61af66fc99e Initial load
duke
parents:
diff changeset
138 jcc(Assembler::notEqual, slow_case);
a61af66fc99e Initial load
duke
parents:
diff changeset
139 // done
a61af66fc99e Initial load
duke
parents:
diff changeset
140 bind(done);
a61af66fc99e Initial load
duke
parents:
diff changeset
141 }
a61af66fc99e Initial load
duke
parents:
diff changeset
142
a61af66fc99e Initial load
duke
parents:
diff changeset
143
a61af66fc99e Initial load
duke
parents:
diff changeset
144 // Defines obj, preserves var_size_in_bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
145 void C1_MacroAssembler::try_allocate(Register obj, Register var_size_in_bytes, int con_size_in_bytes, Register t1, Register t2, Label& slow_case) {
a61af66fc99e Initial load
duke
parents:
diff changeset
146 if (UseTLAB) {
a61af66fc99e Initial load
duke
parents:
diff changeset
147 tlab_allocate(obj, var_size_in_bytes, con_size_in_bytes, t1, t2, slow_case);
a61af66fc99e Initial load
duke
parents:
diff changeset
148 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
149 eden_allocate(obj, var_size_in_bytes, con_size_in_bytes, t1, slow_case);
2100
b1a2afa37ec4 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 2002
diff changeset
150 incr_allocated_bytes(noreg, var_size_in_bytes, con_size_in_bytes, t1);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
151 }
a61af66fc99e Initial load
duke
parents:
diff changeset
152 }
a61af66fc99e Initial load
duke
parents:
diff changeset
153
a61af66fc99e Initial load
duke
parents:
diff changeset
154
a61af66fc99e Initial load
duke
parents:
diff changeset
155 void C1_MacroAssembler::initialize_header(Register obj, Register klass, Register len, Register t1, Register t2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
156 assert_different_registers(obj, klass, len);
a61af66fc99e Initial load
duke
parents:
diff changeset
157 if (UseBiasedLocking && !len->is_valid()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
158 assert_different_registers(obj, klass, len, t1, t2);
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
159 movptr(t1, Address(klass, Klass::prototype_header_offset_in_bytes() + klassOopDesc::klass_part_offset_in_bytes()));
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
160 movptr(Address(obj, oopDesc::mark_offset_in_bytes()), t1);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
161 } else {
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
162 // This assumes that all prototype bits fit in an int32_t
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
163 movptr(Address(obj, oopDesc::mark_offset_in_bytes ()), (int32_t)(intptr_t)markOopDesc::prototype());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
164 }
2002
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
165 #ifdef _LP64
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
166 if (UseCompressedOops) { // Take care not to kill klass
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
167 movptr(t1, klass);
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
168 encode_heap_oop_not_null(t1);
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
169 movl(Address(obj, oopDesc::klass_offset_in_bytes()), t1);
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
170 } else
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
171 #endif
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
172 {
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
173 movptr(Address(obj, oopDesc::klass_offset_in_bytes()), klass);
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
174 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
175
a61af66fc99e Initial load
duke
parents:
diff changeset
176 if (len->is_valid()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
177 movl(Address(obj, arrayOopDesc::length_offset_in_bytes()), len);
a61af66fc99e Initial load
duke
parents:
diff changeset
178 }
2002
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
179 #ifdef _LP64
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
180 else if (UseCompressedOops) {
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
181 xorptr(t1, t1);
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
182 store_klass_gap(obj, t1);
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
183 }
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
184 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
185 }
a61af66fc99e Initial load
duke
parents:
diff changeset
186
a61af66fc99e Initial load
duke
parents:
diff changeset
187
a61af66fc99e Initial load
duke
parents:
diff changeset
188 // preserves obj, destroys len_in_bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
189 void C1_MacroAssembler::initialize_body(Register obj, Register len_in_bytes, int hdr_size_in_bytes, Register t1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
190 Label done;
a61af66fc99e Initial load
duke
parents:
diff changeset
191 assert(obj != len_in_bytes && obj != t1 && t1 != len_in_bytes, "registers must be different");
a61af66fc99e Initial load
duke
parents:
diff changeset
192 assert((hdr_size_in_bytes & (BytesPerWord - 1)) == 0, "header size is not a multiple of BytesPerWord");
a61af66fc99e Initial load
duke
parents:
diff changeset
193 Register index = len_in_bytes;
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
194 // index is positive and ptr sized
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
195 subptr(index, hdr_size_in_bytes);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
196 jcc(Assembler::zero, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
197 // initialize topmost word, divide index by 2, check if odd and test if zero
a61af66fc99e Initial load
duke
parents:
diff changeset
198 // note: for the remaining code to work, index must be a multiple of BytesPerWord
a61af66fc99e Initial load
duke
parents:
diff changeset
199 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
200 { Label L;
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
201 testptr(index, BytesPerWord - 1);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
202 jcc(Assembler::zero, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
203 stop("index is not a multiple of BytesPerWord");
a61af66fc99e Initial load
duke
parents:
diff changeset
204 bind(L);
a61af66fc99e Initial load
duke
parents:
diff changeset
205 }
a61af66fc99e Initial load
duke
parents:
diff changeset
206 #endif
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
207 xorptr(t1, t1); // use _zero reg to clear memory (shorter code)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
208 if (UseIncDec) {
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
209 shrptr(index, 3); // divide by 8/16 and set carry flag if bit 2 was set
0
a61af66fc99e Initial load
duke
parents:
diff changeset
210 } else {
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
211 shrptr(index, 2); // use 2 instructions to avoid partial flag stall
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
212 shrptr(index, 1);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
213 }
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
214 #ifndef _LP64
0
a61af66fc99e Initial load
duke
parents:
diff changeset
215 // index could have been not a multiple of 8 (i.e., bit 2 was set)
a61af66fc99e Initial load
duke
parents:
diff changeset
216 { Label even;
a61af66fc99e Initial load
duke
parents:
diff changeset
217 // note: if index was a multiple of 8, than it cannot
a61af66fc99e Initial load
duke
parents:
diff changeset
218 // be 0 now otherwise it must have been 0 before
a61af66fc99e Initial load
duke
parents:
diff changeset
219 // => if it is even, we don't need to check for 0 again
a61af66fc99e Initial load
duke
parents:
diff changeset
220 jcc(Assembler::carryClear, even);
a61af66fc99e Initial load
duke
parents:
diff changeset
221 // clear topmost word (no jump needed if conditional assignment would work here)
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
222 movptr(Address(obj, index, Address::times_8, hdr_size_in_bytes - 0*BytesPerWord), t1);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
223 // index could be 0 now, need to check again
a61af66fc99e Initial load
duke
parents:
diff changeset
224 jcc(Assembler::zero, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
225 bind(even);
a61af66fc99e Initial load
duke
parents:
diff changeset
226 }
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
227 #endif // !_LP64
0
a61af66fc99e Initial load
duke
parents:
diff changeset
228 // initialize remaining object fields: rdx is a multiple of 2 now
a61af66fc99e Initial load
duke
parents:
diff changeset
229 { Label loop;
a61af66fc99e Initial load
duke
parents:
diff changeset
230 bind(loop);
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
231 movptr(Address(obj, index, Address::times_8, hdr_size_in_bytes - 1*BytesPerWord), t1);
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
232 NOT_LP64(movptr(Address(obj, index, Address::times_8, hdr_size_in_bytes - 2*BytesPerWord), t1);)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
233 decrement(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
234 jcc(Assembler::notZero, loop);
a61af66fc99e Initial load
duke
parents:
diff changeset
235 }
a61af66fc99e Initial load
duke
parents:
diff changeset
236
a61af66fc99e Initial load
duke
parents:
diff changeset
237 // done
a61af66fc99e Initial load
duke
parents:
diff changeset
238 bind(done);
a61af66fc99e Initial load
duke
parents:
diff changeset
239 }
a61af66fc99e Initial load
duke
parents:
diff changeset
240
a61af66fc99e Initial load
duke
parents:
diff changeset
241
a61af66fc99e Initial load
duke
parents:
diff changeset
242 void C1_MacroAssembler::allocate_object(Register obj, Register t1, Register t2, int header_size, int object_size, Register klass, Label& slow_case) {
a61af66fc99e Initial load
duke
parents:
diff changeset
243 assert(obj == rax, "obj must be in rax, for cmpxchg");
2100
b1a2afa37ec4 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 2002
diff changeset
244 assert_different_registers(obj, t1, t2); // XXX really?
0
a61af66fc99e Initial load
duke
parents:
diff changeset
245 assert(header_size >= 0 && object_size >= header_size, "illegal sizes");
a61af66fc99e Initial load
duke
parents:
diff changeset
246
a61af66fc99e Initial load
duke
parents:
diff changeset
247 try_allocate(obj, noreg, object_size * BytesPerWord, t1, t2, slow_case);
a61af66fc99e Initial load
duke
parents:
diff changeset
248
a61af66fc99e Initial load
duke
parents:
diff changeset
249 initialize_object(obj, klass, noreg, object_size * HeapWordSize, t1, t2);
a61af66fc99e Initial load
duke
parents:
diff changeset
250 }
a61af66fc99e Initial load
duke
parents:
diff changeset
251
a61af66fc99e Initial load
duke
parents:
diff changeset
252 void C1_MacroAssembler::initialize_object(Register obj, Register klass, Register var_size_in_bytes, int con_size_in_bytes, Register t1, Register t2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
253 assert((con_size_in_bytes & MinObjAlignmentInBytesMask) == 0,
a61af66fc99e Initial load
duke
parents:
diff changeset
254 "con_size_in_bytes is not multiple of alignment");
2002
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
255 const int hdr_size_in_bytes = instanceOopDesc::header_size() * HeapWordSize;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
256
a61af66fc99e Initial load
duke
parents:
diff changeset
257 initialize_header(obj, klass, noreg, t1, t2);
a61af66fc99e Initial load
duke
parents:
diff changeset
258
a61af66fc99e Initial load
duke
parents:
diff changeset
259 // clear rest of allocated space
a61af66fc99e Initial load
duke
parents:
diff changeset
260 const Register t1_zero = t1;
a61af66fc99e Initial load
duke
parents:
diff changeset
261 const Register index = t2;
a61af66fc99e Initial load
duke
parents:
diff changeset
262 const int threshold = 6 * BytesPerWord; // approximate break even point for code size (see comments below)
a61af66fc99e Initial load
duke
parents:
diff changeset
263 if (var_size_in_bytes != noreg) {
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
264 mov(index, var_size_in_bytes);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
265 initialize_body(obj, index, hdr_size_in_bytes, t1_zero);
a61af66fc99e Initial load
duke
parents:
diff changeset
266 } else if (con_size_in_bytes <= threshold) {
a61af66fc99e Initial load
duke
parents:
diff changeset
267 // use explicit null stores
a61af66fc99e Initial load
duke
parents:
diff changeset
268 // code size = 2 + 3*n bytes (n = number of fields to clear)
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
269 xorptr(t1_zero, t1_zero); // use t1_zero reg to clear memory (shorter code)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
270 for (int i = hdr_size_in_bytes; i < con_size_in_bytes; i += BytesPerWord)
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
271 movptr(Address(obj, i), t1_zero);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
272 } else if (con_size_in_bytes > hdr_size_in_bytes) {
a61af66fc99e Initial load
duke
parents:
diff changeset
273 // use loop to null out the fields
a61af66fc99e Initial load
duke
parents:
diff changeset
274 // code size = 16 bytes for even n (n = number of fields to clear)
a61af66fc99e Initial load
duke
parents:
diff changeset
275 // initialize last object field first if odd number of fields
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
276 xorptr(t1_zero, t1_zero); // use t1_zero reg to clear memory (shorter code)
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
277 movptr(index, (con_size_in_bytes - hdr_size_in_bytes) >> 3);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
278 // initialize last object field if constant size is odd
a61af66fc99e Initial load
duke
parents:
diff changeset
279 if (((con_size_in_bytes - hdr_size_in_bytes) & 4) != 0)
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
280 movptr(Address(obj, con_size_in_bytes - (1*BytesPerWord)), t1_zero);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
281 // initialize remaining object fields: rdx is a multiple of 2
a61af66fc99e Initial load
duke
parents:
diff changeset
282 { Label loop;
a61af66fc99e Initial load
duke
parents:
diff changeset
283 bind(loop);
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
284 movptr(Address(obj, index, Address::times_8, hdr_size_in_bytes - (1*BytesPerWord)),
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
285 t1_zero);
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
286 NOT_LP64(movptr(Address(obj, index, Address::times_8, hdr_size_in_bytes - (2*BytesPerWord)),
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
287 t1_zero);)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
288 decrement(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
289 jcc(Assembler::notZero, loop);
a61af66fc99e Initial load
duke
parents:
diff changeset
290 }
a61af66fc99e Initial load
duke
parents:
diff changeset
291 }
3064
8b0236cbed14 Make sure that the compiler is initialized at startup (and not on the first compiled method).
Thomas Wuerthinger <thomas@wuerthinger.net>
parents: 2100
diff changeset
292
8b0236cbed14 Make sure that the compiler is initialized at startup (and not on the first compiled method).
Thomas Wuerthinger <thomas@wuerthinger.net>
parents: 2100
diff changeset
293 // (tw) fix me
8b0236cbed14 Make sure that the compiler is initialized at startup (and not on the first compiled method).
Thomas Wuerthinger <thomas@wuerthinger.net>
parents: 2100
diff changeset
294 // if (CURRENT_ENV->dtrace_alloc_probes()) {
8b0236cbed14 Make sure that the compiler is initialized at startup (and not on the first compiled method).
Thomas Wuerthinger <thomas@wuerthinger.net>
parents: 2100
diff changeset
295 // assert(obj == rax, "must be");
8b0236cbed14 Make sure that the compiler is initialized at startup (and not on the first compiled method).
Thomas Wuerthinger <thomas@wuerthinger.net>
parents: 2100
diff changeset
296 // call(RuntimeAddress(Runtime1::entry_for(Runtime1::dtrace_object_alloc_id)));
8b0236cbed14 Make sure that the compiler is initialized at startup (and not on the first compiled method).
Thomas Wuerthinger <thomas@wuerthinger.net>
parents: 2100
diff changeset
297 // }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
298
a61af66fc99e Initial load
duke
parents:
diff changeset
299 verify_oop(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
300 }
a61af66fc99e Initial load
duke
parents:
diff changeset
301
a61af66fc99e Initial load
duke
parents:
diff changeset
302 void C1_MacroAssembler::allocate_array(Register obj, Register len, Register t1, Register t2, int header_size, Address::ScaleFactor f, Register klass, Label& slow_case) {
a61af66fc99e Initial load
duke
parents:
diff changeset
303 assert(obj == rax, "obj must be in rax, for cmpxchg");
a61af66fc99e Initial load
duke
parents:
diff changeset
304 assert_different_registers(obj, len, t1, t2, klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
305
a61af66fc99e Initial load
duke
parents:
diff changeset
306 // determine alignment mask
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
307 assert(!(BytesPerWord & 1), "must be a multiple of 2 for masking code to work");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
308
a61af66fc99e Initial load
duke
parents:
diff changeset
309 // check for negative or excessive length
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
310 cmpptr(len, (int32_t)max_array_allocation_length);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
311 jcc(Assembler::above, slow_case);
a61af66fc99e Initial load
duke
parents:
diff changeset
312
a61af66fc99e Initial load
duke
parents:
diff changeset
313 const Register arr_size = t2; // okay to be the same
a61af66fc99e Initial load
duke
parents:
diff changeset
314 // align object end
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
315 movptr(arr_size, (int32_t)header_size * BytesPerWord + MinObjAlignmentInBytesMask);
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
316 lea(arr_size, Address(arr_size, len, f));
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
317 andptr(arr_size, ~MinObjAlignmentInBytesMask);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
318
a61af66fc99e Initial load
duke
parents:
diff changeset
319 try_allocate(obj, arr_size, 0, t1, t2, slow_case);
a61af66fc99e Initial load
duke
parents:
diff changeset
320
a61af66fc99e Initial load
duke
parents:
diff changeset
321 initialize_header(obj, klass, len, t1, t2);
a61af66fc99e Initial load
duke
parents:
diff changeset
322
a61af66fc99e Initial load
duke
parents:
diff changeset
323 // clear rest of allocated space
a61af66fc99e Initial load
duke
parents:
diff changeset
324 const Register len_zero = len;
a61af66fc99e Initial load
duke
parents:
diff changeset
325 initialize_body(obj, arr_size, header_size * BytesPerWord, len_zero);
a61af66fc99e Initial load
duke
parents:
diff changeset
326
4140
716a2c5c0656 Further reduce diff to HotSpot.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 3714
diff changeset
327 // TODO(tw): Re-enable this code once Graal no longer uses this method.
3064
8b0236cbed14 Make sure that the compiler is initialized at startup (and not on the first compiled method).
Thomas Wuerthinger <thomas@wuerthinger.net>
parents: 2100
diff changeset
328 // if (CURRENT_ENV->dtrace_alloc_probes()) {
8b0236cbed14 Make sure that the compiler is initialized at startup (and not on the first compiled method).
Thomas Wuerthinger <thomas@wuerthinger.net>
parents: 2100
diff changeset
329 // assert(obj == rax, "must be");
8b0236cbed14 Make sure that the compiler is initialized at startup (and not on the first compiled method).
Thomas Wuerthinger <thomas@wuerthinger.net>
parents: 2100
diff changeset
330 // call(RuntimeAddress(Runtime1::entry_for(Runtime1::dtrace_object_alloc_id)));
8b0236cbed14 Make sure that the compiler is initialized at startup (and not on the first compiled method).
Thomas Wuerthinger <thomas@wuerthinger.net>
parents: 2100
diff changeset
331 // }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
332
a61af66fc99e Initial load
duke
parents:
diff changeset
333 verify_oop(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
334 }
a61af66fc99e Initial load
duke
parents:
diff changeset
335
a61af66fc99e Initial load
duke
parents:
diff changeset
336
a61af66fc99e Initial load
duke
parents:
diff changeset
337
a61af66fc99e Initial load
duke
parents:
diff changeset
338 void C1_MacroAssembler::inline_cache_check(Register receiver, Register iCache) {
a61af66fc99e Initial load
duke
parents:
diff changeset
339 verify_oop(receiver);
a61af66fc99e Initial load
duke
parents:
diff changeset
340 // explicit NULL check not needed since load from [klass_offset] causes a trap
a61af66fc99e Initial load
duke
parents:
diff changeset
341 // check against inline cache
a61af66fc99e Initial load
duke
parents:
diff changeset
342 assert(!MacroAssembler::needs_explicit_null_check(oopDesc::klass_offset_in_bytes()), "must add explicit null check");
a61af66fc99e Initial load
duke
parents:
diff changeset
343 int start_offset = offset();
2002
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
344
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
345 if (UseCompressedOops) {
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
346 load_klass(rscratch1, receiver);
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
347 cmpptr(rscratch1, iCache);
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
348 } else {
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
349 cmpptr(iCache, Address(receiver, oopDesc::klass_offset_in_bytes()));
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
350 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
351 // if icache check fails, then jump to runtime routine
a61af66fc99e Initial load
duke
parents:
diff changeset
352 // Note: RECEIVER must still contain the receiver!
a61af66fc99e Initial load
duke
parents:
diff changeset
353 jump_cc(Assembler::notEqual,
a61af66fc99e Initial load
duke
parents:
diff changeset
354 RuntimeAddress(SharedRuntime::get_ic_miss_stub()));
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
355 const int ic_cmp_size = LP64_ONLY(10) NOT_LP64(9);
2002
ac637b7220d1 6985015: C1 needs to support compressed oops
iveresov
parents: 1972
diff changeset
356 assert(UseCompressedOops || offset() - start_offset == ic_cmp_size, "check alignment in emit_method_entry");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
357 }
a61af66fc99e Initial load
duke
parents:
diff changeset
358
a61af66fc99e Initial load
duke
parents:
diff changeset
359
a61af66fc99e Initial load
duke
parents:
diff changeset
360 void C1_MacroAssembler::build_frame(int frame_size_in_bytes) {
a61af66fc99e Initial load
duke
parents:
diff changeset
361 // Make sure there is enough stack space for this method's activation.
a61af66fc99e Initial load
duke
parents:
diff changeset
362 // Note that we do this before doing an enter(). This matches the
a61af66fc99e Initial load
duke
parents:
diff changeset
363 // ordering of C2's stack overflow check / rsp decrement and allows
a61af66fc99e Initial load
duke
parents:
diff changeset
364 // the SharedRuntime stack overflow handling to be consistent
a61af66fc99e Initial load
duke
parents:
diff changeset
365 // between the two compilers.
a61af66fc99e Initial load
duke
parents:
diff changeset
366 generate_stack_overflow_check(frame_size_in_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
367
1295
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 844
diff changeset
368 push(rbp);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
369 #ifdef TIERED
a61af66fc99e Initial load
duke
parents:
diff changeset
370 // c2 leaves fpu stack dirty. Clean it on entry
a61af66fc99e Initial load
duke
parents:
diff changeset
371 if (UseSSE < 2 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
372 empty_FPU_stack();
a61af66fc99e Initial load
duke
parents:
diff changeset
373 }
a61af66fc99e Initial load
duke
parents:
diff changeset
374 #endif // TIERED
a61af66fc99e Initial load
duke
parents:
diff changeset
375 decrement(rsp, frame_size_in_bytes); // does not emit code for frame_size == 0
a61af66fc99e Initial load
duke
parents:
diff changeset
376 }
a61af66fc99e Initial load
duke
parents:
diff changeset
377
a61af66fc99e Initial load
duke
parents:
diff changeset
378
1295
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 844
diff changeset
379 void C1_MacroAssembler::remove_frame(int frame_size_in_bytes) {
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 844
diff changeset
380 increment(rsp, frame_size_in_bytes); // Does not emit code for frame_size == 0
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 844
diff changeset
381 pop(rbp);
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 844
diff changeset
382 }
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 844
diff changeset
383
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 844
diff changeset
384
0
a61af66fc99e Initial load
duke
parents:
diff changeset
385 void C1_MacroAssembler::unverified_entry(Register receiver, Register ic_klass) {
a61af66fc99e Initial load
duke
parents:
diff changeset
386 if (C1Breakpoint) int3();
a61af66fc99e Initial load
duke
parents:
diff changeset
387 inline_cache_check(receiver, ic_klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
388 }
a61af66fc99e Initial load
duke
parents:
diff changeset
389
a61af66fc99e Initial load
duke
parents:
diff changeset
390
a61af66fc99e Initial load
duke
parents:
diff changeset
391 void C1_MacroAssembler::verified_entry() {
a61af66fc99e Initial load
duke
parents:
diff changeset
392 if (C1Breakpoint)int3();
a61af66fc99e Initial load
duke
parents:
diff changeset
393 // build frame
a61af66fc99e Initial load
duke
parents:
diff changeset
394 verify_FPU(0, "method_entry");
a61af66fc99e Initial load
duke
parents:
diff changeset
395 }
a61af66fc99e Initial load
duke
parents:
diff changeset
396
a61af66fc99e Initial load
duke
parents:
diff changeset
397
a61af66fc99e Initial load
duke
parents:
diff changeset
398 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
399
a61af66fc99e Initial load
duke
parents:
diff changeset
400 void C1_MacroAssembler::verify_stack_oop(int stack_offset) {
a61af66fc99e Initial load
duke
parents:
diff changeset
401 if (!VerifyOops) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
402 verify_oop_addr(Address(rsp, stack_offset));
a61af66fc99e Initial load
duke
parents:
diff changeset
403 }
a61af66fc99e Initial load
duke
parents:
diff changeset
404
a61af66fc99e Initial load
duke
parents:
diff changeset
405 void C1_MacroAssembler::verify_not_null_oop(Register r) {
a61af66fc99e Initial load
duke
parents:
diff changeset
406 if (!VerifyOops) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
407 Label not_null;
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
408 testptr(r, r);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
409 jcc(Assembler::notZero, not_null);
a61af66fc99e Initial load
duke
parents:
diff changeset
410 stop("non-null oop required");
a61af66fc99e Initial load
duke
parents:
diff changeset
411 bind(not_null);
a61af66fc99e Initial load
duke
parents:
diff changeset
412 verify_oop(r);
a61af66fc99e Initial load
duke
parents:
diff changeset
413 }
a61af66fc99e Initial load
duke
parents:
diff changeset
414
a61af66fc99e Initial load
duke
parents:
diff changeset
415 void C1_MacroAssembler::invalidate_registers(bool inv_rax, bool inv_rbx, bool inv_rcx, bool inv_rdx, bool inv_rsi, bool inv_rdi) {
a61af66fc99e Initial load
duke
parents:
diff changeset
416 #ifdef ASSERT
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
417 if (inv_rax) movptr(rax, 0xDEAD);
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
418 if (inv_rbx) movptr(rbx, 0xDEAD);
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
419 if (inv_rcx) movptr(rcx, 0xDEAD);
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
420 if (inv_rdx) movptr(rdx, 0xDEAD);
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
421 if (inv_rsi) movptr(rsi, 0xDEAD);
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
422 if (inv_rdi) movptr(rdi, 0xDEAD);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
423 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
424 }
a61af66fc99e Initial load
duke
parents:
diff changeset
425
a61af66fc99e Initial load
duke
parents:
diff changeset
426 #endif // ifndef PRODUCT