author | mdoerr |
Tue, 28 Nov 2017 01:08:26 +0300 | |
changeset 48585 | d9fcb7ba8133 |
parent 48332 | 651a95f30dfb |
child 49748 | 6a880e576856 |
permissions | -rw-r--r-- |
42065 | 1 |
/* |
46315
a796c32af782
8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents:
43420
diff
changeset
|
2 |
* Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved. |
a796c32af782
8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents:
43420
diff
changeset
|
3 |
* Copyright (c) 2016, 2017, SAP SE. All rights reserved. |
42065 | 4 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
5 |
* |
|
6 |
* This code is free software; you can redistribute it and/or modify it |
|
7 |
* under the terms of the GNU General Public License version 2 only, as |
|
8 |
* published by the Free Software Foundation. |
|
9 |
* |
|
10 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
11 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
12 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
13 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
14 |
* accompanied this code). |
|
15 |
* |
|
16 |
* You should have received a copy of the GNU General Public License version |
|
17 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
18 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
19 |
* |
|
20 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
21 |
* or visit www.oracle.com if you need additional information or have any |
|
22 |
* questions. |
|
23 |
* |
|
24 |
*/ |
|
25 |
||
26 |
#ifndef CPU_S390_VM_MACROASSEMBLER_S390_HPP |
|
27 |
#define CPU_S390_VM_MACROASSEMBLER_S390_HPP |
|
28 |
||
29 |
#include "asm/assembler.hpp" |
|
30 |
||
31 |
#define MODERN_IFUN(name) ((void (MacroAssembler::*)(Register, int64_t, Register, Register))&MacroAssembler::name) |
|
32 |
#define CLASSIC_IFUN(name) ((void (MacroAssembler::*)(Register, int64_t, Register, Register))&MacroAssembler::name) |
|
33 |
#define MODERN_FFUN(name) ((void (MacroAssembler::*)(FloatRegister, int64_t, Register, Register))&MacroAssembler::name) |
|
34 |
#define CLASSIC_FFUN(name) ((void (MacroAssembler::*)(FloatRegister, int64_t, Register, Register))&MacroAssembler::name) |
|
35 |
||
36 |
class MacroAssembler: public Assembler { |
|
37 |
public: |
|
38 |
MacroAssembler(CodeBuffer* code) : Assembler(code) {} |
|
39 |
||
40 |
// |
|
41 |
// Optimized instruction emitters |
|
42 |
// |
|
43 |
||
44 |
// Move register if destination register and target register are different. |
|
45 |
void lr_if_needed(Register rd, Register rs); |
|
46 |
void lgr_if_needed(Register rd, Register rs); |
|
47 |
void llgfr_if_needed(Register rd, Register rs); |
|
48 |
void ldr_if_needed(FloatRegister rd, FloatRegister rs); |
|
49 |
||
50 |
void move_reg_if_needed(Register dest, BasicType dest_type, Register src, BasicType src_type); |
|
51 |
void move_freg_if_needed(FloatRegister dest, BasicType dest_type, FloatRegister src, BasicType src_type); |
|
52 |
||
53 |
void freg2mem_opt(FloatRegister reg, |
|
54 |
int64_t disp, |
|
55 |
Register index, |
|
56 |
Register base, |
|
57 |
void (MacroAssembler::*modern) (FloatRegister, int64_t, Register, Register), |
|
58 |
void (MacroAssembler::*classic)(FloatRegister, int64_t, Register, Register), |
|
59 |
Register scratch = Z_R0); |
|
60 |
void freg2mem_opt(FloatRegister reg, |
|
61 |
const Address &a, bool is_double = true); |
|
62 |
||
63 |
void mem2freg_opt(FloatRegister reg, |
|
64 |
int64_t disp, |
|
65 |
Register index, |
|
66 |
Register base, |
|
67 |
void (MacroAssembler::*modern) (FloatRegister, int64_t, Register, Register), |
|
68 |
void (MacroAssembler::*classic)(FloatRegister, int64_t, Register, Register), |
|
69 |
Register scratch = Z_R0); |
|
70 |
void mem2freg_opt(FloatRegister reg, |
|
71 |
const Address &a, bool is_double = true); |
|
72 |
||
73 |
void reg2mem_opt(Register reg, |
|
74 |
int64_t disp, |
|
75 |
Register index, |
|
76 |
Register base, |
|
77 |
void (MacroAssembler::*modern) (Register, int64_t, Register, Register), |
|
78 |
void (MacroAssembler::*classic)(Register, int64_t, Register, Register), |
|
79 |
Register scratch = Z_R0); |
|
80 |
// returns offset of the store instruction |
|
81 |
int reg2mem_opt(Register reg, const Address &a, bool is_double = true); |
|
82 |
||
83 |
void mem2reg_opt(Register reg, |
|
84 |
int64_t disp, |
|
85 |
Register index, |
|
86 |
Register base, |
|
87 |
void (MacroAssembler::*modern) (Register, int64_t, Register, Register), |
|
88 |
void (MacroAssembler::*classic)(Register, int64_t, Register, Register)); |
|
89 |
void mem2reg_opt(Register reg, const Address &a, bool is_double = true); |
|
90 |
void mem2reg_signed_opt(Register reg, const Address &a); |
|
91 |
||
92 |
// AND immediate and set condition code, works for 64 bit immediates/operation as well. |
|
93 |
void and_imm(Register r, long mask, Register tmp = Z_R0, bool wide = false); |
|
94 |
||
95 |
// 1's complement, 32bit or 64bit. Optimized to exploit distinct operands facility. |
|
96 |
// Note: The condition code is neither preserved nor correctly set by this code!!! |
|
97 |
// Note: (wide == false) does not protect the high order half of the target register |
|
98 |
// from alternation. It only serves as optimization hint for 32-bit results. |
|
99 |
void not_(Register r1, Register r2 = noreg, bool wide = false); // r1 = ~r2 |
|
100 |
||
101 |
// Expanded support of all "rotate_then_<logicalOP>" instructions. |
|
102 |
// |
|
103 |
// Generalize and centralize rotate_then_<logicalOP> emitter. |
|
104 |
// Functional description. For details, see Principles of Operation, Chapter 7, "Rotate Then Insert..." |
|
105 |
// - Bits in a register are numbered left (most significant) to right (least significant), i.e. [0..63]. |
|
106 |
// - Bytes in a register are numbered left (most significant) to right (least significant), i.e. [0..7]. |
|
107 |
// - Register src is rotated to the left by (nRotate&0x3f) positions. |
|
108 |
// - Negative values for nRotate result in a rotation to the right by abs(nRotate) positions. |
|
109 |
// - The bits in positions [lBitPos..rBitPos] of the _ROTATED_ src operand take part in the |
|
110 |
// logical operation performed on the contents (in those positions) of the dst operand. |
|
111 |
// - The logical operation that is performed on the dst operand is one of |
|
112 |
// o insert the selected bits (replacing the original contents of those bit positions) |
|
113 |
// o and the selected bits with the corresponding bits of the dst operand |
|
114 |
// o or the selected bits with the corresponding bits of the dst operand |
|
115 |
// o xor the selected bits with the corresponding bits of the dst operand |
|
116 |
// - For clear_dst == true, the destination register is cleared before the bits are inserted. |
|
117 |
// For clear_dst == false, only the bit positions that get data inserted from src |
|
118 |
// are changed. All other bit positions remain unchanged. |
|
119 |
// - For test_only == true, the result of the logicalOP is only used to set the condition code, dst remains unchanged. |
|
120 |
// For test_only == false, the result of the logicalOP replaces the selected bits of dst. |
|
121 |
// - src32bit and dst32bit indicate the respective register is used as 32bit value only. |
|
122 |
// Knowledge can simplify code generation. |
|
123 |
// |
|
124 |
// Here is an important performance note, valid for all <logicalOP>s except "insert": |
|
125 |
// Due to the too complex nature of the operation, it cannot be done in a single cycle. |
|
126 |
// Timing constraints require the instructions to be cracked into two micro-ops, taking |
|
127 |
// one or two cycles each to execute. In some cases, an additional pipeline bubble might get added. |
|
128 |
// Macroscopically, that makes up for a three- or four-cycle instruction where you would |
|
129 |
// expect just a single cycle. |
|
130 |
// It is thus not beneficial from a performance point of view to exploit those instructions. |
|
131 |
// Other reasons (code compactness, register pressure, ...) might outweigh this penalty. |
|
132 |
// |
|
133 |
unsigned long create_mask(int lBitPos, int rBitPos); |
|
134 |
void rotate_then_mask(Register dst, Register src, int lBitPos, int rBitPos, |
|
135 |
int nRotate, bool src32bit, bool dst32bit, bool oneBits); |
|
136 |
void rotate_then_insert(Register dst, Register src, int lBitPos, int rBitPos, int nRotate, |
|
137 |
bool clear_dst); |
|
138 |
void rotate_then_and(Register dst, Register src, int lBitPos, int rBitPos, int nRotate, |
|
139 |
bool test_only); |
|
140 |
void rotate_then_or(Register dst, Register src, int lBitPos, int rBitPos, int nRotate, |
|
141 |
bool test_onlyt); |
|
142 |
void rotate_then_xor(Register dst, Register src, int lBitPos, int rBitPos, int nRotate, |
|
143 |
bool test_only); |
|
144 |
||
145 |
void add64(Register r1, RegisterOrConstant inc); |
|
146 |
||
147 |
// Helper function to multiply the 64bit contents of a register by a 16bit constant. |
|
148 |
// The optimization tries to avoid the mghi instruction, since it uses the FPU for |
|
149 |
// calculation and is thus rather slow. |
|
150 |
// |
|
151 |
// There is no handling for special cases, e.g. cval==0 or cval==1. |
|
152 |
// |
|
153 |
// Returns len of generated code block. |
|
154 |
unsigned int mul_reg64_const16(Register rval, Register work, int cval); |
|
155 |
||
156 |
// Generic operation r1 := r2 + imm. |
|
157 |
void add2reg(Register r1, int64_t imm, Register r2 = noreg); |
|
158 |
// Generic operation r := b + x + d. |
|
159 |
void add2reg_with_index(Register r, int64_t d, Register x, Register b = noreg); |
|
160 |
||
161 |
// Add2mem* methods for direct memory increment. |
|
162 |
void add2mem_32(const Address &a, int64_t imm, Register tmp); |
|
163 |
void add2mem_64(const Address &a, int64_t imm, Register tmp); |
|
164 |
||
165 |
// *((int8_t*)(dst)) |= imm8 |
|
166 |
inline void or2mem_8(Address& dst, int64_t imm8); |
|
167 |
||
168 |
// Load values by size and signedness. |
|
169 |
void load_sized_value(Register dst, Address src, size_t size_in_bytes, bool is_signed); |
|
170 |
void store_sized_value(Register src, Address dst, size_t size_in_bytes); |
|
171 |
||
172 |
// Load values with large offsets to base address. |
|
173 |
private: |
|
174 |
int split_largeoffset(int64_t si20_offset, Register tmp, bool fixed_codelen, bool accumulate); |
|
175 |
public: |
|
176 |
void load_long_largeoffset(Register t, int64_t si20, Register a, Register tmp); |
|
177 |
void load_float_largeoffset(FloatRegister t, int64_t si20, Register a, Register tmp); |
|
178 |
void load_double_largeoffset(FloatRegister t, int64_t si20, Register a, Register tmp); |
|
179 |
||
180 |
private: |
|
181 |
long toc_distance(); |
|
182 |
public: |
|
183 |
void load_toc(Register Rtoc); |
|
184 |
void load_long_pcrelative(Register Rdst, address dataLocation); |
|
185 |
static int load_long_pcrelative_size() { return 6; } |
|
186 |
void load_addr_pcrelative(Register Rdst, address dataLocation); |
|
187 |
static int load_addr_pcrel_size() { return 6; } // Just a LARL. |
|
188 |
||
189 |
// Load a value from memory and test (set CC). |
|
190 |
void load_and_test_byte (Register dst, const Address &a); |
|
191 |
void load_and_test_short (Register dst, const Address &a); |
|
192 |
void load_and_test_int (Register dst, const Address &a); |
|
193 |
void load_and_test_int2long(Register dst, const Address &a); |
|
194 |
void load_and_test_long (Register dst, const Address &a); |
|
195 |
||
196 |
// Test a bit in memory. Result is reflected in CC. |
|
197 |
void testbit(const Address &a, unsigned int bit); |
|
198 |
// Test a bit in a register. Result is reflected in CC. |
|
199 |
void testbit(Register r, unsigned int bitPos); |
|
200 |
||
48094
bca569f79fa1
8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents:
47216
diff
changeset
|
201 |
void prefetch_read(Address a); |
bca569f79fa1
8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents:
47216
diff
changeset
|
202 |
void prefetch_update(Address a); |
bca569f79fa1
8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents:
47216
diff
changeset
|
203 |
|
42065 | 204 |
// Clear a register, i.e. load const zero into reg. Return len (in bytes) of |
205 |
// generated instruction(s). |
|
206 |
// whole_reg: Clear 64 bits if true, 32 bits otherwise. |
|
207 |
// set_cc: Use instruction that sets the condition code, if true. |
|
208 |
int clear_reg(Register r, bool whole_reg = true, bool set_cc = true); |
|
209 |
||
210 |
#ifdef ASSERT |
|
211 |
int preset_reg(Register r, unsigned long pattern, int pattern_len); |
|
212 |
#endif |
|
213 |
||
214 |
// Clear (store zeros) a small piece of memory. |
|
215 |
// CAUTION: Do not use this for atomic memory clearing. Use store_const() instead. |
|
216 |
// addr: Address descriptor of memory to clear. |
|
217 |
// Index register will not be used! |
|
218 |
// size: Number of bytes to clear. |
|
219 |
void clear_mem(const Address& addr, unsigned size); |
|
220 |
||
221 |
// Move immediate values to memory. Currently supports 32 and 64 bit stores, |
|
222 |
// but may be extended to 16 bit store operation, if needed. |
|
223 |
// For details, see implementation in *.cpp file. |
|
224 |
int store_const(const Address &dest, long imm, |
|
225 |
unsigned int lm, unsigned int lc, |
|
226 |
Register scratch = Z_R0); |
|
227 |
inline int store_const(const Address &dest, long imm, |
|
228 |
Register scratch = Z_R0, bool is_long = true); |
|
229 |
||
230 |
// Move/initialize arbitrarily large memory area. No check for destructive overlap. |
|
231 |
// Being interruptible, these instructions need a retry-loop. |
|
232 |
void move_long_ext(Register dst, Register src, unsigned int pad); |
|
233 |
||
234 |
void compare_long_ext(Register left, Register right, unsigned int pad); |
|
235 |
void compare_long_uni(Register left, Register right, unsigned int pad); |
|
236 |
||
237 |
void search_string(Register end, Register start); |
|
238 |
void search_string_uni(Register end, Register start); |
|
239 |
||
240 |
// Translate instructions |
|
241 |
// Being interruptible, these instructions need a retry-loop. |
|
242 |
void translate_oo(Register dst, Register src, uint mask); |
|
243 |
void translate_ot(Register dst, Register src, uint mask); |
|
244 |
void translate_to(Register dst, Register src, uint mask); |
|
245 |
void translate_tt(Register dst, Register src, uint mask); |
|
246 |
||
247 |
// Crypto instructions. |
|
248 |
// Being interruptible, these instructions need a retry-loop. |
|
249 |
void cksm(Register crcBuff, Register srcBuff); |
|
250 |
void km( Register dstBuff, Register srcBuff); |
|
251 |
void kmc(Register dstBuff, Register srcBuff); |
|
252 |
void kimd(Register srcBuff); |
|
253 |
void klmd(Register srcBuff); |
|
254 |
void kmac(Register srcBuff); |
|
255 |
||
256 |
// nop padding |
|
257 |
void align(int modulus); |
|
258 |
void align_address(int modulus); |
|
259 |
||
260 |
// |
|
261 |
// Constants, loading constants, TOC support |
|
262 |
// |
|
263 |
||
264 |
// Load generic address: d <- base(a) + index(a) + disp(a). |
|
265 |
inline void load_address(Register d, const Address &a); |
|
266 |
// Load absolute address (and try to optimize). |
|
267 |
void load_absolute_address(Register d, address addr); |
|
268 |
||
269 |
// Address of Z_ARG1 and argument_offset. |
|
270 |
// If temp_reg == arg_slot, arg_slot will be overwritten. |
|
271 |
Address argument_address(RegisterOrConstant arg_slot, |
|
272 |
Register temp_reg = noreg, |
|
273 |
int64_t extra_slot_offset = 0); |
|
274 |
||
275 |
// Load a narrow ptr constant (oop or klass ptr). |
|
276 |
void load_narrow_oop( Register t, narrowOop a); |
|
277 |
void load_narrow_klass(Register t, Klass* k); |
|
278 |
||
279 |
static bool is_load_const_32to64(address pos); |
|
280 |
static bool is_load_narrow_oop(address pos) { return is_load_const_32to64(pos); } |
|
281 |
static bool is_load_narrow_klass(address pos) { return is_load_const_32to64(pos); } |
|
282 |
||
283 |
static int load_const_32to64_size() { return 6; } |
|
284 |
static bool load_narrow_oop_size() { return load_const_32to64_size(); } |
|
285 |
static bool load_narrow_klass_size() { return load_const_32to64_size(); } |
|
286 |
||
287 |
static int patch_load_const_32to64(address pos, int64_t a); |
|
288 |
static int patch_load_narrow_oop(address pos, oop o); |
|
289 |
static int patch_load_narrow_klass(address pos, Klass* k); |
|
290 |
||
291 |
// cOops. CLFI exploit. |
|
292 |
void compare_immediate_narrow_oop(Register oop1, narrowOop oop2); |
|
293 |
void compare_immediate_narrow_klass(Register op1, Klass* op2); |
|
294 |
static bool is_compare_immediate32(address pos); |
|
295 |
static bool is_compare_immediate_narrow_oop(address pos); |
|
296 |
static bool is_compare_immediate_narrow_klass(address pos); |
|
297 |
static int compare_immediate_narrow_size() { return 6; } |
|
298 |
static int compare_immediate_narrow_oop_size() { return compare_immediate_narrow_size(); } |
|
299 |
static int compare_immediate_narrow_klass_size() { return compare_immediate_narrow_size(); } |
|
300 |
static int patch_compare_immediate_32(address pos, int64_t a); |
|
301 |
static int patch_compare_immediate_narrow_oop(address pos, oop o); |
|
302 |
static int patch_compare_immediate_narrow_klass(address pos, Klass* k); |
|
303 |
||
304 |
// Load a 32bit constant into a 64bit register. |
|
305 |
void load_const_32to64(Register t, int64_t x, bool sign_extend=true); |
|
306 |
// Load a 64 bit constant. |
|
307 |
void load_const(Register t, long a); |
|
308 |
inline void load_const(Register t, void* a); |
|
309 |
inline void load_const(Register t, Label& L); |
|
310 |
inline void load_const(Register t, const AddressLiteral& a); |
|
311 |
// Get the 64 bit constant from a `load_const' sequence. |
|
312 |
static long get_const(address load_const); |
|
313 |
// Patch the 64 bit constant of a `load_const' sequence. This is a low level |
|
314 |
// procedure. It neither flushes the instruction cache nor is it atomic. |
|
315 |
static void patch_const(address load_const, long x); |
|
316 |
static int load_const_size() { return 12; } |
|
317 |
||
318 |
// Turn a char into boolean. NOTE: destroys r. |
|
319 |
void c2bool(Register r, Register t = Z_R0); |
|
320 |
||
321 |
// Optimized version of load_const for constants that do not need to be |
|
322 |
// loaded by a sequence of instructions of fixed length and that do not |
|
323 |
// need to be patched. |
|
324 |
int load_const_optimized_rtn_len(Register t, long x, bool emit); |
|
325 |
inline void load_const_optimized(Register t, long x); |
|
326 |
inline void load_const_optimized(Register t, void* a); |
|
327 |
inline void load_const_optimized(Register t, Label& L); |
|
328 |
inline void load_const_optimized(Register t, const AddressLiteral& a); |
|
329 |
||
330 |
public: |
|
331 |
||
332 |
//---------------------------------------------------------- |
|
333 |
// oops in code ------------- |
|
334 |
// including compressed oops support ------------- |
|
335 |
//---------------------------------------------------------- |
|
336 |
||
337 |
// Metadata in code that we have to keep track of. |
|
338 |
AddressLiteral allocate_metadata_address(Metadata* obj); // allocate_index |
|
339 |
AddressLiteral constant_metadata_address(Metadata* obj); // find_index |
|
340 |
||
341 |
// allocate_index |
|
342 |
AddressLiteral allocate_oop_address(jobject obj); |
|
343 |
// find_index |
|
344 |
AddressLiteral constant_oop_address(jobject obj); |
|
345 |
// Uses allocate_oop_address. |
|
346 |
inline void set_oop (jobject obj, Register d); |
|
347 |
// Uses constant_oop_address. |
|
348 |
inline void set_oop_constant(jobject obj, Register d); |
|
349 |
// Uses constant_metadata_address. |
|
350 |
inline bool set_metadata_constant(Metadata* md, Register d); |
|
351 |
||
352 |
virtual RegisterOrConstant delayed_value_impl(intptr_t* delayed_value_addr, |
|
353 |
Register tmp, |
|
354 |
int offset); |
|
355 |
// |
|
356 |
// branch, jump |
|
357 |
// |
|
358 |
||
359 |
// Use one generic function for all branch patches. |
|
360 |
static unsigned long patched_branch(address dest_pos, unsigned long inst, address inst_pos); |
|
361 |
||
362 |
void pd_patch_instruction(address branch, address target); |
|
363 |
||
364 |
// Extract relative address from "relative" instructions. |
|
365 |
static long get_pcrel_offset(unsigned long inst); |
|
366 |
static long get_pcrel_offset(address pc); |
|
367 |
static address get_target_addr_pcrel(address pc); |
|
368 |
||
369 |
static inline bool is_call_pcrelative_short(unsigned long inst); |
|
370 |
static inline bool is_call_pcrelative_long(unsigned long inst); |
|
371 |
static inline bool is_branch_pcrelative_short(unsigned long inst); |
|
372 |
static inline bool is_branch_pcrelative_long(unsigned long inst); |
|
373 |
static inline bool is_compareandbranch_pcrelative_short(unsigned long inst); |
|
374 |
static inline bool is_branchoncount_pcrelative_short(unsigned long inst); |
|
375 |
static inline bool is_branchonindex32_pcrelative_short(unsigned long inst); |
|
376 |
static inline bool is_branchonindex64_pcrelative_short(unsigned long inst); |
|
377 |
static inline bool is_branchonindex_pcrelative_short(unsigned long inst); |
|
378 |
static inline bool is_branch_pcrelative16(unsigned long inst); |
|
379 |
static inline bool is_branch_pcrelative32(unsigned long inst); |
|
380 |
static inline bool is_branch_pcrelative(unsigned long inst); |
|
381 |
static inline bool is_load_pcrelative_long(unsigned long inst); |
|
382 |
static inline bool is_misc_pcrelative_long(unsigned long inst); |
|
383 |
static inline bool is_pcrelative_short(unsigned long inst); |
|
384 |
static inline bool is_pcrelative_long(unsigned long inst); |
|
385 |
// PCrelative TOC access. Variants with address argument. |
|
386 |
static inline bool is_load_pcrelative_long(address iLoc); |
|
387 |
static inline bool is_pcrelative_short(address iLoc); |
|
388 |
static inline bool is_pcrelative_long(address iLoc); |
|
389 |
||
390 |
static inline bool is_pcrelative_instruction(address iloc); |
|
391 |
static inline bool is_load_addr_pcrel(address a); |
|
392 |
||
393 |
static void patch_target_addr_pcrel(address pc, address con); |
|
394 |
static void patch_addr_pcrel(address pc, address con) { |
|
395 |
patch_target_addr_pcrel(pc, con); // Just delegate. This is only for nativeInst_s390.cpp. |
|
396 |
} |
|
397 |
||
398 |
//--------------------------------------------------------- |
|
399 |
// Some macros for more comfortable assembler programming. |
|
400 |
//--------------------------------------------------------- |
|
401 |
||
402 |
// NOTE: pass NearLabel T to signal that the branch target T will be bound to a near address. |
|
403 |
||
404 |
void compare32_and_branch(Register r1, RegisterOrConstant x2, branch_condition cond, Label& target); |
|
405 |
void compareU32_and_branch(Register r1, RegisterOrConstant x2, branch_condition cond, Label& target); |
|
406 |
void compare64_and_branch(Register r1, RegisterOrConstant x2, branch_condition cond, Label& target); |
|
407 |
void compareU64_and_branch(Register r1, RegisterOrConstant x2, branch_condition cond, Label& target); |
|
408 |
||
409 |
void branch_optimized(Assembler::branch_condition cond, address branch_target); |
|
410 |
void branch_optimized(Assembler::branch_condition cond, Label& branch_target); |
|
411 |
void compare_and_branch_optimized(Register r1, |
|
412 |
Register r2, |
|
413 |
Assembler::branch_condition cond, |
|
414 |
address branch_addr, |
|
415 |
bool len64, |
|
416 |
bool has_sign); |
|
417 |
void compare_and_branch_optimized(Register r1, |
|
418 |
jlong x2, |
|
419 |
Assembler::branch_condition cond, |
|
420 |
Label& branch_target, |
|
421 |
bool len64, |
|
422 |
bool has_sign); |
|
423 |
void compare_and_branch_optimized(Register r1, |
|
424 |
Register r2, |
|
425 |
Assembler::branch_condition cond, |
|
426 |
Label& branch_target, |
|
427 |
bool len64, |
|
428 |
bool has_sign); |
|
429 |
||
430 |
// |
|
431 |
// Support for frame handling |
|
432 |
// |
|
433 |
// Specify the register that should be stored as the return pc in the |
|
434 |
// current frame (default is R14). |
|
435 |
inline void save_return_pc(Register pc = Z_R14); |
|
436 |
inline void restore_return_pc(); |
|
437 |
||
438 |
// Get current PC. |
|
439 |
address get_PC(Register result); |
|
440 |
||
441 |
// Get current PC + offset. Offset given in bytes, must be even! |
|
442 |
address get_PC(Register result, int64_t offset); |
|
443 |
||
48332
651a95f30dfb
8193257: PPC64, s390 implementation for Thread-local handshakes
mdoerr
parents:
48094
diff
changeset
|
444 |
// Get size of instruction at pc (which must point to valid code). |
651a95f30dfb
8193257: PPC64, s390 implementation for Thread-local handshakes
mdoerr
parents:
48094
diff
changeset
|
445 |
void instr_size(Register size, Register pc); |
651a95f30dfb
8193257: PPC64, s390 implementation for Thread-local handshakes
mdoerr
parents:
48094
diff
changeset
|
446 |
|
46726
7801367e3cc9
8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents:
46369
diff
changeset
|
447 |
// Accessing, and in particular modifying, a stack location is only safe if |
7801367e3cc9
8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents:
46369
diff
changeset
|
448 |
// the stack pointer (Z_SP) is set such that the accessed stack location is |
7801367e3cc9
8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents:
46369
diff
changeset
|
449 |
// in the reserved range. |
7801367e3cc9
8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents:
46369
diff
changeset
|
450 |
// |
7801367e3cc9
8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents:
46369
diff
changeset
|
451 |
// From a performance point of view, it is desirable not to change the SP |
7801367e3cc9
8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents:
46369
diff
changeset
|
452 |
// first and then immediately use it to access the freshly reserved space. |
7801367e3cc9
8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents:
46369
diff
changeset
|
453 |
// That opens a small gap, though. If, just after storing some value (the |
7801367e3cc9
8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents:
46369
diff
changeset
|
454 |
// frame pointer) into the to-be-reserved space, an interrupt is caught, |
7801367e3cc9
8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents:
46369
diff
changeset
|
455 |
// the handler might use the space beyond Z_SP for it's own purpose. |
7801367e3cc9
8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents:
46369
diff
changeset
|
456 |
// If that happens, the stored value might get altered. |
7801367e3cc9
8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents:
46369
diff
changeset
|
457 |
|
42065 | 458 |
// Resize current frame either relatively wrt to current SP or absolute. |
459 |
void resize_frame_sub(Register offset, Register fp, bool load_fp=true); |
|
46726
7801367e3cc9
8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents:
46369
diff
changeset
|
460 |
void resize_frame_abs_with_offset(Register newSP, Register fp, int offset, bool load_fp); |
7801367e3cc9
8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents:
46369
diff
changeset
|
461 |
void resize_frame_absolute(Register addr, Register fp, bool load_fp); |
42065 | 462 |
void resize_frame(RegisterOrConstant offset, Register fp, bool load_fp=true); |
463 |
||
464 |
// Push a frame of size bytes, if copy_sp is false, old_sp must already |
|
465 |
// contain a copy of Z_SP. |
|
466 |
void push_frame(Register bytes, Register old_sp, bool copy_sp = true, bool bytes_with_inverted_sign = false); |
|
467 |
||
468 |
// Push a frame of size `bytes'. no abi space provided. |
|
469 |
// Don't rely on register locking, instead pass a scratch register |
|
470 |
// (Z_R0 by default). |
|
471 |
// CAUTION! passing registers >= Z_R2 may produce bad results on |
|
472 |
// old CPUs! |
|
473 |
unsigned int push_frame(unsigned int bytes, Register scratch = Z_R0); |
|
474 |
||
475 |
// Push a frame of size `bytes' with abi160 on top. |
|
476 |
unsigned int push_frame_abi160(unsigned int bytes); |
|
477 |
||
478 |
// Pop current C frame. |
|
479 |
void pop_frame(); |
|
46726
7801367e3cc9
8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents:
46369
diff
changeset
|
480 |
// Pop current C frame and restore return PC register (Z_R14). |
7801367e3cc9
8180659: [s390] micro-optimization in resize_frame_absolute()
lucy
parents:
46369
diff
changeset
|
481 |
void pop_frame_restore_retPC(int frame_size_in_bytes); |
42065 | 482 |
|
483 |
// |
|
484 |
// Calls |
|
485 |
// |
|
486 |
||
487 |
private: |
|
488 |
address _last_calls_return_pc; |
|
489 |
||
490 |
public: |
|
491 |
// Support for VM calls. This is the base routine called by the |
|
492 |
// different versions of call_VM_leaf. The interpreter may customize |
|
493 |
// this version by overriding it for its purposes (e.g., to |
|
494 |
// save/restore additional registers when doing a VM call). |
|
495 |
void call_VM_leaf_base(address entry_point); |
|
496 |
void call_VM_leaf_base(address entry_point, bool allow_relocation); |
|
497 |
||
498 |
// It is imperative that all calls into the VM are handled via the |
|
499 |
// call_VM macros. They make sure that the stack linkage is setup |
|
500 |
// correctly. Call_VM's correspond to ENTRY/ENTRY_X entry points |
|
501 |
// while call_VM_leaf's correspond to LEAF entry points. |
|
502 |
// |
|
503 |
// This is the base routine called by the different versions of |
|
504 |
// call_VM. The interpreter may customize this version by overriding |
|
505 |
// it for its purposes (e.g., to save/restore additional registers |
|
506 |
// when doing a VM call). |
|
507 |
||
508 |
// If no last_java_sp is specified (noreg) then SP will be used instead. |
|
509 |
||
510 |
virtual void call_VM_base( |
|
511 |
Register oop_result, // Where an oop-result ends up if any; use noreg otherwise. |
|
512 |
Register last_java_sp, // To set up last_Java_frame in stubs; use noreg otherwise. |
|
513 |
address entry_point, // The entry point. |
|
514 |
bool check_exception); // Flag which indicates if exception should be checked. |
|
515 |
virtual void call_VM_base( |
|
516 |
Register oop_result, // Where an oop-result ends up if any; use noreg otherwise. |
|
517 |
Register last_java_sp, // To set up last_Java_frame in stubs; use noreg otherwise. |
|
518 |
address entry_point, // The entry point. |
|
519 |
bool allow_relocation, // Flag to request generation of relocatable code. |
|
520 |
bool check_exception); // Flag which indicates if exception should be checked. |
|
521 |
||
522 |
// Call into the VM. |
|
523 |
// Passes the thread pointer (in Z_ARG1) as a prepended argument. |
|
524 |
// Makes sure oop return values are visible to the GC. |
|
525 |
void call_VM(Register oop_result, address entry_point, bool check_exceptions = true); |
|
526 |
void call_VM(Register oop_result, address entry_point, Register arg_1, bool check_exceptions = true); |
|
527 |
void call_VM(Register oop_result, address entry_point, Register arg_1, Register arg_2, bool check_exceptions = true); |
|
528 |
void call_VM(Register oop_result, address entry_point, Register arg_1, Register arg_2, |
|
529 |
Register arg_3, bool check_exceptions = true); |
|
530 |
||
531 |
void call_VM_static(Register oop_result, address entry_point, bool check_exceptions = true); |
|
532 |
void call_VM_static(Register oop_result, address entry_point, Register arg_1, Register arg_2, |
|
533 |
Register arg_3, bool check_exceptions = true); |
|
534 |
||
535 |
// Overloaded with last_java_sp. |
|
536 |
void call_VM(Register oop_result, Register last_java_sp, address entry_point, bool check_exceptions = true); |
|
537 |
void call_VM(Register oop_result, Register last_java_sp, address entry_point, |
|
538 |
Register arg_1, bool check_exceptions = true); |
|
539 |
void call_VM(Register oop_result, Register last_java_sp, address entry_point, |
|
540 |
Register arg_1, Register arg_2, bool check_exceptions = true); |
|
541 |
void call_VM(Register oop_result, Register last_java_sp, address entry_point, |
|
542 |
Register arg_1, Register arg_2, Register arg_3, bool check_exceptions = true); |
|
543 |
||
544 |
void call_VM_leaf(address entry_point); |
|
545 |
void call_VM_leaf(address entry_point, Register arg_1); |
|
546 |
void call_VM_leaf(address entry_point, Register arg_1, Register arg_2); |
|
547 |
void call_VM_leaf(address entry_point, Register arg_1, Register arg_2, Register arg_3); |
|
548 |
||
549 |
// Really static VM leaf call (never patched). |
|
550 |
void call_VM_leaf_static(address entry_point); |
|
551 |
void call_VM_leaf_static(address entry_point, Register arg_1); |
|
552 |
void call_VM_leaf_static(address entry_point, Register arg_1, Register arg_2); |
|
553 |
void call_VM_leaf_static(address entry_point, Register arg_1, Register arg_2, Register arg_3); |
|
554 |
||
555 |
// Call a C function via its function entry. Updates and returns _last_calls_return_pc. |
|
556 |
inline address call(Register function_entry); |
|
557 |
inline address call_c(Register function_entry); |
|
558 |
address call_c(address function_entry); |
|
559 |
// Variant for really static (non-relocatable) calls which are never patched. |
|
560 |
address call_c_static(address function_entry); |
|
561 |
// TOC or pc-relative call + emits a runtime_call relocation. |
|
562 |
address call_c_opt(address function_entry); |
|
563 |
||
564 |
inline address call_stub(Register function_entry); |
|
565 |
inline address call_stub(address function_entry); |
|
566 |
||
567 |
// Get the pc where the last call will return to. Returns _last_calls_return_pc. |
|
568 |
inline address last_calls_return_pc(); |
|
569 |
||
570 |
private: |
|
571 |
static bool is_call_far_patchable_variant0_at(address instruction_addr); // Dynamic TOC: load target addr from CP and call. |
|
572 |
static bool is_call_far_patchable_variant2_at(address instruction_addr); // PC-relative call, prefixed with NOPs. |
|
573 |
||
574 |
||
575 |
public: |
|
576 |
bool call_far_patchable(address target, int64_t toc_offset); |
|
577 |
static bool is_call_far_patchable_at(address inst_start); // All supported forms of patchable calls. |
|
578 |
static bool is_call_far_patchable_pcrelative_at(address inst_start); // Pc-relative call with leading nops. |
|
579 |
static bool is_call_far_pcrelative(address instruction_addr); // Pure far pc-relative call, with one leading size adjustment nop. |
|
580 |
static void set_dest_of_call_far_patchable_at(address inst_start, address target, int64_t toc_offset); |
|
581 |
static address get_dest_of_call_far_patchable_at(address inst_start, address toc_start); |
|
582 |
||
583 |
void align_call_far_patchable(address pc); |
|
584 |
||
585 |
// PCrelative TOC access. |
|
586 |
||
587 |
// This value is independent of code position - constant for the lifetime of the VM. |
|
588 |
static int call_far_patchable_size() { |
|
589 |
return load_const_from_toc_size() + call_byregister_size(); |
|
590 |
} |
|
591 |
||
592 |
static int call_far_patchable_ret_addr_offset() { return call_far_patchable_size(); } |
|
593 |
||
594 |
static bool call_far_patchable_requires_alignment_nop(address pc) { |
|
42556
c03d98321ad1
8169317: [s390] Various minor bug fixes and adaptions.
goetz
parents:
42065
diff
changeset
|
595 |
if (!os::is_MP()) return false; |
42065 | 596 |
int size = call_far_patchable_size(); |
597 |
return ((intptr_t)(pc + size) & 0x03L) != 0; |
|
598 |
} |
|
599 |
||
600 |
// END OF PCrelative TOC access. |
|
601 |
||
602 |
static int jump_byregister_size() { return 2; } |
|
603 |
static int jump_pcrelative_size() { return 4; } |
|
604 |
static int jump_far_pcrelative_size() { return 6; } |
|
605 |
static int call_byregister_size() { return 2; } |
|
606 |
static int call_pcrelative_size() { return 4; } |
|
607 |
static int call_far_pcrelative_size() { return 2 + 6; } // Prepend each BRASL with a nop. |
|
608 |
static int call_far_pcrelative_size_raw() { return 6; } // Prepend each BRASL with a nop. |
|
609 |
||
610 |
// |
|
611 |
// Java utilities |
|
612 |
// |
|
613 |
||
614 |
// These routines should emit JVMTI PopFrame and ForceEarlyReturn handling code. |
|
615 |
// The implementation is only non-empty for the InterpreterMacroAssembler, |
|
616 |
// as only the interpreter handles PopFrame and ForceEarlyReturn requests. |
|
617 |
virtual void check_and_handle_popframe(Register java_thread); |
|
618 |
virtual void check_and_handle_earlyret(Register java_thread); |
|
619 |
||
620 |
// Polling page support. |
|
621 |
enum poll_mask { |
|
622 |
mask_stackbang = 0xde, // 222 (dec) |
|
623 |
mask_safepoint = 0x6f, // 111 (dec) |
|
624 |
mask_profiling = 0xba // 186 (dec) |
|
625 |
}; |
|
626 |
||
627 |
// Read from the polling page. |
|
628 |
void load_from_polling_page(Register polling_page_address, int64_t offset = 0); |
|
629 |
||
630 |
// Check if given instruction is a read from the polling page |
|
631 |
// as emitted by load_from_polling_page. |
|
632 |
static bool is_load_from_polling_page(address instr_loc); |
|
633 |
// Extract poll address from instruction and ucontext. |
|
634 |
static address get_poll_address(address instr_loc, void* ucontext); |
|
635 |
// Extract poll register from instruction. |
|
636 |
static uint get_poll_register(address instr_loc); |
|
637 |
||
638 |
// Check if instruction is a write access to the memory serialization page |
|
639 |
// realized by one of the instructions stw, stwu, stwx, or stwux. |
|
640 |
static bool is_memory_serialization(int instruction, JavaThread* thread, void* ucontext); |
|
641 |
||
642 |
// Support for serializing memory accesses between threads. |
|
643 |
void serialize_memory(Register thread, Register tmp1, Register tmp2); |
|
644 |
||
48332
651a95f30dfb
8193257: PPC64, s390 implementation for Thread-local handshakes
mdoerr
parents:
48094
diff
changeset
|
645 |
// Check if safepoint requested and if so branch |
651a95f30dfb
8193257: PPC64, s390 implementation for Thread-local handshakes
mdoerr
parents:
48094
diff
changeset
|
646 |
void safepoint_poll(Label& slow_path, Register temp_reg); |
651a95f30dfb
8193257: PPC64, s390 implementation for Thread-local handshakes
mdoerr
parents:
48094
diff
changeset
|
647 |
|
42065 | 648 |
// Stack overflow checking |
649 |
void bang_stack_with_offset(int offset); |
|
650 |
||
43420
a056d6465ef9
8172049: [s390] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents:
42556
diff
changeset
|
651 |
// Check for reserved stack access in method being exited. If the reserved |
a056d6465ef9
8172049: [s390] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents:
42556
diff
changeset
|
652 |
// stack area was accessed, protect it again and throw StackOverflowError. |
a056d6465ef9
8172049: [s390] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents:
42556
diff
changeset
|
653 |
// Uses Z_R1. |
a056d6465ef9
8172049: [s390] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents:
42556
diff
changeset
|
654 |
void reserved_stack_check(Register return_pc); |
a056d6465ef9
8172049: [s390] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents:
42556
diff
changeset
|
655 |
|
42065 | 656 |
// Atomics |
657 |
// -- none? |
|
658 |
||
659 |
void tlab_allocate(Register obj, // Result: pointer to object after successful allocation |
|
660 |
Register var_size_in_bytes, // Object size in bytes if unknown at compile time; invalid otherwise. |
|
661 |
int con_size_in_bytes, // Object size in bytes if known at compile time. |
|
662 |
Register t1, // temp register |
|
663 |
Label& slow_case); // Continuation point if fast allocation fails. |
|
664 |
||
665 |
// Emitter for interface method lookup. |
|
666 |
// input: recv_klass, intf_klass, itable_index |
|
667 |
// output: method_result |
|
668 |
// kills: itable_index, temp1_reg, Z_R0, Z_R1 |
|
669 |
void lookup_interface_method(Register recv_klass, |
|
670 |
Register intf_klass, |
|
671 |
RegisterOrConstant itable_index, |
|
672 |
Register method_result, |
|
673 |
Register temp1_reg, |
|
48585
d9fcb7ba8133
8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents:
48332
diff
changeset
|
674 |
Label& no_such_interface, |
d9fcb7ba8133
8191907: PPC64 and s390 parts of JDK-8174962: Better interface invocations
mdoerr
parents:
48332
diff
changeset
|
675 |
bool return_method = true); |
42065 | 676 |
|
677 |
// virtual method calling |
|
678 |
void lookup_virtual_method(Register recv_klass, |
|
679 |
RegisterOrConstant vtable_index, |
|
680 |
Register method_result); |
|
681 |
||
682 |
// Factor out code to call ic_miss_handler. |
|
683 |
unsigned int call_ic_miss_handler(Label& ICM, int trapMarker, int requiredSize, Register scratch); |
|
684 |
void nmethod_UEP(Label& ic_miss); |
|
685 |
||
686 |
// Emitters for "partial subtype" checks. |
|
687 |
||
688 |
// Test sub_klass against super_klass, with fast and slow paths. |
|
689 |
||
690 |
// The fast path produces a tri-state answer: yes / no / maybe-slow. |
|
691 |
// One of the three labels can be NULL, meaning take the fall-through. |
|
692 |
// If super_check_offset is -1, the value is loaded up from super_klass. |
|
693 |
// No registers are killed, except temp_reg and temp2_reg. |
|
694 |
// If super_check_offset is not -1, temp1_reg is not used and can be noreg. |
|
695 |
void check_klass_subtype_fast_path(Register sub_klass, |
|
696 |
Register super_klass, |
|
697 |
Register temp1_reg, |
|
698 |
Label* L_success, |
|
699 |
Label* L_failure, |
|
700 |
Label* L_slow_path, |
|
701 |
RegisterOrConstant super_check_offset = RegisterOrConstant(-1)); |
|
702 |
||
703 |
// The rest of the type check; must be wired to a corresponding fast path. |
|
704 |
// It does not repeat the fast path logic, so don't use it standalone. |
|
705 |
// The temp_reg can be noreg, if no temps are available. |
|
706 |
// It can also be sub_klass or super_klass, meaning it's OK to kill that one. |
|
707 |
// Updates the sub's secondary super cache as necessary. |
|
708 |
void check_klass_subtype_slow_path(Register Rsubklass, |
|
709 |
Register Rsuperklas, |
|
710 |
Register Rarray_ptr, // tmp |
|
711 |
Register Rlength, // tmp |
|
712 |
Label* L_success, |
|
713 |
Label* L_failure); |
|
714 |
||
715 |
// Simplified, combined version, good for typical uses. |
|
716 |
// Falls through on failure. |
|
717 |
void check_klass_subtype(Register sub_klass, |
|
718 |
Register super_klass, |
|
719 |
Register temp1_reg, |
|
720 |
Register temp2_reg, |
|
721 |
Label& L_success); |
|
722 |
||
723 |
// Increment a counter at counter_address when the eq condition code is set. |
|
724 |
// Kills registers tmp1_reg and tmp2_reg and preserves the condition code. |
|
725 |
void increment_counter_eq(address counter_address, Register tmp1_reg, Register tmp2_reg); |
|
726 |
// Biased locking support |
|
727 |
// Upon entry,obj_reg must contain the target object, and mark_reg |
|
728 |
// must contain the target object's header. |
|
729 |
// Destroys mark_reg if an attempt is made to bias an anonymously |
|
730 |
// biased lock. In this case a failure will go either to the slow |
|
731 |
// case or fall through with the notEqual condition code set with |
|
732 |
// the expectation that the slow case in the runtime will be called. |
|
733 |
// In the fall-through case where the CAS-based lock is done, |
|
734 |
// mark_reg is not destroyed. |
|
735 |
void biased_locking_enter(Register obj_reg, Register mark_reg, Register temp_reg, |
|
736 |
Register temp2_reg, Label& done, Label* slow_case = NULL); |
|
737 |
// Upon entry, the base register of mark_addr must contain the oop. |
|
738 |
// Destroys temp_reg. |
|
739 |
// If allow_delay_slot_filling is set to true, the next instruction |
|
740 |
// emitted after this one will go in an annulled delay slot if the |
|
741 |
// biased locking exit case failed. |
|
742 |
void biased_locking_exit(Register mark_addr, Register temp_reg, Label& done); |
|
743 |
||
744 |
void compiler_fast_lock_object(Register oop, Register box, Register temp1, Register temp2, bool try_bias = UseBiasedLocking); |
|
745 |
void compiler_fast_unlock_object(Register oop, Register box, Register temp1, Register temp2, bool try_bias = UseBiasedLocking); |
|
746 |
||
747 |
// Write to card table for modification at store_addr - register is destroyed afterwards. |
|
748 |
void card_write_barrier_post(Register store_addr, Register tmp); |
|
749 |
||
44406
a46a6c4d1dd9
8176100: [REDO][REDO] G1 Needs pre barrier on dereference of weak JNI handles
mgerdin
parents:
44093
diff
changeset
|
750 |
void resolve_jobject(Register value, Register tmp1, Register tmp2); |
a46a6c4d1dd9
8176100: [REDO][REDO] G1 Needs pre barrier on dereference of weak JNI handles
mgerdin
parents:
44093
diff
changeset
|
751 |
|
42065 | 752 |
#if INCLUDE_ALL_GCS |
753 |
// General G1 pre-barrier generator. |
|
754 |
// Purpose: record the previous value if it is not null. |
|
755 |
// All non-tmps are preserved. |
|
756 |
void g1_write_barrier_pre(Register Robj, |
|
757 |
RegisterOrConstant offset, |
|
758 |
Register Rpre_val, // Ideally, this is a non-volatile register. |
|
759 |
Register Rval, // Will be preserved. |
|
760 |
Register Rtmp1, // If Rpre_val is volatile, either Rtmp1 |
|
761 |
Register Rtmp2, // or Rtmp2 has to be non-volatile. |
|
762 |
bool pre_val_needed); // Save Rpre_val across runtime call, caller uses it. |
|
763 |
||
764 |
// General G1 post-barrier generator. |
|
765 |
// Purpose: Store cross-region card. |
|
766 |
void g1_write_barrier_post(Register Rstore_addr, |
|
767 |
Register Rnew_val, |
|
768 |
Register Rtmp1, |
|
769 |
Register Rtmp2, |
|
770 |
Register Rtmp3); |
|
771 |
#endif // INCLUDE_ALL_GCS |
|
772 |
||
773 |
// Support for last Java frame (but use call_VM instead where possible). |
|
774 |
private: |
|
775 |
void set_last_Java_frame(Register last_Java_sp, Register last_Java_pc, bool allow_relocation); |
|
776 |
void reset_last_Java_frame(bool allow_relocation); |
|
777 |
void set_top_ijava_frame_at_SP_as_last_Java_frame(Register sp, Register tmp1, bool allow_relocation); |
|
778 |
public: |
|
779 |
inline void set_last_Java_frame(Register last_java_sp, Register last_Java_pc); |
|
780 |
inline void set_last_Java_frame_static(Register last_java_sp, Register last_Java_pc); |
|
781 |
inline void reset_last_Java_frame(void); |
|
782 |
inline void reset_last_Java_frame_static(void); |
|
783 |
inline void set_top_ijava_frame_at_SP_as_last_Java_frame(Register sp, Register tmp1); |
|
784 |
inline void set_top_ijava_frame_at_SP_as_last_Java_frame_static(Register sp, Register tmp1); |
|
785 |
||
786 |
void set_thread_state(JavaThreadState new_state); |
|
787 |
||
788 |
// Read vm result from thread. |
|
789 |
void get_vm_result (Register oop_result); |
|
790 |
void get_vm_result_2(Register result); |
|
791 |
||
792 |
// Vm result is currently getting hijacked to for oop preservation. |
|
793 |
void set_vm_result(Register oop_result); |
|
794 |
||
795 |
// Support for NULL-checks |
|
796 |
// |
|
797 |
// Generates code that causes a NULL OS exception if the content of reg is NULL. |
|
798 |
// If the accessed location is M[reg + offset] and the offset is known, provide the |
|
799 |
// offset. No explicit code generation is needed if the offset is within a certain |
|
800 |
// range (0 <= offset <= page_size). |
|
801 |
// |
|
802 |
// %%%%%% Currently not done for z/Architecture |
|
803 |
||
804 |
void null_check(Register reg, Register tmp = Z_R0, int64_t offset = -1); |
|
805 |
static bool needs_explicit_null_check(intptr_t offset); // Implemented in shared file ?! |
|
806 |
||
807 |
// Klass oop manipulations if compressed. |
|
808 |
void encode_klass_not_null(Register dst, Register src = noreg); |
|
809 |
void decode_klass_not_null(Register dst, Register src); |
|
810 |
void decode_klass_not_null(Register dst); |
|
811 |
void load_klass(Register klass, Address mem); |
|
812 |
void load_klass(Register klass, Register src_oop); |
|
813 |
void load_prototype_header(Register Rheader, Register Rsrc_oop); |
|
814 |
void store_klass(Register klass, Register dst_oop, Register ck = noreg); // Klass will get compressed if ck not provided. |
|
815 |
void store_klass_gap(Register s, Register dst_oop); |
|
816 |
||
817 |
// This function calculates the size of the code generated by |
|
818 |
// decode_klass_not_null(register dst) |
|
819 |
// when (Universe::heap() != NULL). Hence, if the instructions |
|
820 |
// it generates change, then this method needs to be updated. |
|
821 |
static int instr_size_for_decode_klass_not_null(); |
|
822 |
||
823 |
void encode_heap_oop(Register oop); |
|
824 |
void encode_heap_oop_not_null(Register oop); |
|
825 |
||
826 |
static int get_oop_base_pow2_offset(uint64_t oop_base); |
|
827 |
int get_oop_base(Register Rbase, uint64_t oop_base); |
|
828 |
int get_oop_base_complement(Register Rbase, uint64_t oop_base); |
|
829 |
void compare_heap_oop(Register Rop1, Address mem, bool maybeNULL); |
|
830 |
void compare_klass_ptr(Register Rop1, int64_t disp, Register Rbase, bool maybeNULL); |
|
831 |
void load_heap_oop(Register dest, const Address &a); |
|
832 |
void load_heap_oop(Register d, int64_t si16, Register s1); |
|
833 |
void load_heap_oop_not_null(Register d, int64_t si16, Register s1); |
|
834 |
void store_heap_oop(Register Roop, RegisterOrConstant offset, Register base); |
|
835 |
void store_heap_oop_not_null(Register Roop, RegisterOrConstant offset, Register base); |
|
836 |
void store_heap_oop_null(Register zero, RegisterOrConstant offset, Register base); |
|
837 |
void oop_encoder(Register Rdst, Register Rsrc, bool maybeNULL, |
|
838 |
Register Rbase = Z_R1, int pow2_offset = -1, bool only32bitValid = false); |
|
839 |
void oop_decoder(Register Rdst, Register Rsrc, bool maybeNULL, |
|
840 |
Register Rbase = Z_R1, int pow2_offset = -1); |
|
841 |
||
46961
c9094b1e5f87
8186088: ConstantPoolCache::_resolved_references is not a JNIHandle
coleenp
parents:
46726
diff
changeset
|
842 |
void resolve_oop_handle(Register result); |
42065 | 843 |
void load_mirror(Register mirror, Register method); |
844 |
||
845 |
//-------------------------- |
|
48094
bca569f79fa1
8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents:
47216
diff
changeset
|
846 |
//--- Operations on arrays. |
42065 | 847 |
//-------------------------- |
848 |
unsigned int Clear_Array(Register cnt_arg, Register base_pointer_arg, Register src_addr, Register src_len); |
|
849 |
unsigned int Clear_Array_Const(long cnt, Register base); |
|
850 |
unsigned int Clear_Array_Const_Big(long cnt, Register base_pointer_arg, Register src_addr, Register src_len); |
|
851 |
unsigned int CopyRawMemory_AlignedDisjoint(Register src_reg, Register dst_reg, |
|
852 |
Register cnt_reg, |
|
853 |
Register tmp1_reg, Register tmp2_reg); |
|
854 |
||
855 |
//------------------------------------------- |
|
856 |
// Special String Intrinsics Implementation. |
|
857 |
//------------------------------------------- |
|
858 |
// Intrinsics for CompactStrings |
|
48094
bca569f79fa1
8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents:
47216
diff
changeset
|
859 |
// Restores: src, dst |
bca569f79fa1
8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents:
47216
diff
changeset
|
860 |
// Uses: cnt |
bca569f79fa1
8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents:
47216
diff
changeset
|
861 |
// Kills: tmp, Z_R0, Z_R1. |
bca569f79fa1
8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents:
47216
diff
changeset
|
862 |
// Early clobber: result. |
bca569f79fa1
8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents:
47216
diff
changeset
|
863 |
// Boolean precise controls accuracy of result value. |
bca569f79fa1
8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents:
47216
diff
changeset
|
864 |
unsigned int string_compress(Register result, Register src, Register dst, Register cnt, |
bca569f79fa1
8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents:
47216
diff
changeset
|
865 |
Register tmp, bool precise); |
bca569f79fa1
8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents:
47216
diff
changeset
|
866 |
|
bca569f79fa1
8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents:
47216
diff
changeset
|
867 |
// Inflate byte[] to char[]. |
bca569f79fa1
8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents:
47216
diff
changeset
|
868 |
unsigned int string_inflate_trot(Register src, Register dst, Register cnt, Register tmp); |
bca569f79fa1
8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents:
47216
diff
changeset
|
869 |
|
bca569f79fa1
8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents:
47216
diff
changeset
|
870 |
// Inflate byte[] to char[]. |
bca569f79fa1
8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents:
47216
diff
changeset
|
871 |
// Restores: src, dst |
bca569f79fa1
8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents:
47216
diff
changeset
|
872 |
// Uses: cnt |
bca569f79fa1
8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents:
47216
diff
changeset
|
873 |
// Kills: tmp, Z_R0, Z_R1. |
bca569f79fa1
8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents:
47216
diff
changeset
|
874 |
unsigned int string_inflate(Register src, Register dst, Register cnt, Register tmp); |
bca569f79fa1
8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents:
47216
diff
changeset
|
875 |
|
bca569f79fa1
8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents:
47216
diff
changeset
|
876 |
// Inflate byte[] to char[], length known at compile time. |
bca569f79fa1
8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents:
47216
diff
changeset
|
877 |
// Restores: src, dst |
bca569f79fa1
8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents:
47216
diff
changeset
|
878 |
// Kills: tmp, Z_R0, Z_R1. |
bca569f79fa1
8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents:
47216
diff
changeset
|
879 |
// Note: |
bca569f79fa1
8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents:
47216
diff
changeset
|
880 |
// len is signed int. Counts # characters, not bytes. |
bca569f79fa1
8189793: [s390]: Improve String compress/inflate by exploiting vector instructions
lucy
parents:
47216
diff
changeset
|
881 |
unsigned int string_inflate_const(Register src, Register dst, Register tmp, int len); |
42065 | 882 |
|
883 |
// Kills src. |
|
884 |
unsigned int has_negatives(Register result, Register src, Register cnt, |
|
885 |
Register odd_reg, Register even_reg, Register tmp); |
|
886 |
||
887 |
unsigned int string_compare(Register str1, Register str2, Register cnt1, Register cnt2, |
|
888 |
Register odd_reg, Register even_reg, Register result, int ae); |
|
889 |
||
890 |
unsigned int array_equals(bool is_array_equ, Register ary1, Register ary2, Register limit, |
|
891 |
Register odd_reg, Register even_reg, Register result, bool is_byte); |
|
892 |
||
893 |
unsigned int string_indexof(Register result, Register haystack, Register haycnt, |
|
894 |
Register needle, Register needlecnt, int needlecntval, |
|
895 |
Register odd_reg, Register even_reg, int ae); |
|
896 |
||
897 |
unsigned int string_indexof_char(Register result, Register haystack, Register haycnt, |
|
898 |
Register needle, jchar needleChar, Register odd_reg, Register even_reg, bool is_byte); |
|
899 |
||
900 |
// Emit an oop const to the constant pool and set a relocation info |
|
901 |
// with address current_pc. Return the TOC offset of the constant. |
|
902 |
int store_const_in_toc(AddressLiteral& val); |
|
903 |
int store_oop_in_toc(AddressLiteral& oop); |
|
904 |
// Emit an oop const to the constant pool via store_oop_in_toc, or |
|
905 |
// emit a scalar const to the constant pool via store_const_in_toc, |
|
906 |
// and load the constant into register dst. |
|
907 |
bool load_const_from_toc(Register dst, AddressLiteral& a, Register Rtoc = noreg); |
|
908 |
// Get CPU version dependent size of load_const sequence. |
|
909 |
// The returned value is valid only for code sequences |
|
910 |
// generated by load_const, not load_const_optimized. |
|
911 |
static int load_const_from_toc_size() { |
|
912 |
return load_long_pcrelative_size(); |
|
913 |
} |
|
914 |
bool load_oop_from_toc(Register dst, AddressLiteral& a, Register Rtoc = noreg); |
|
915 |
static intptr_t get_const_from_toc(address pc); |
|
916 |
static void set_const_in_toc(address pc, unsigned long new_data, CodeBlob *cb); |
|
917 |
||
918 |
// Dynamic TOC. |
|
919 |
static bool is_load_const(address a); |
|
920 |
static bool is_load_const_from_toc_pcrelative(address a); |
|
921 |
static bool is_load_const_from_toc(address a) { return is_load_const_from_toc_pcrelative(a); } |
|
922 |
||
923 |
// PCrelative TOC access. |
|
924 |
static bool is_call_byregister(address a) { return is_z_basr(*(short*)a); } |
|
925 |
static bool is_load_const_from_toc_call(address a); |
|
926 |
static bool is_load_const_call(address a); |
|
927 |
static int load_const_call_size() { return load_const_size() + call_byregister_size(); } |
|
928 |
static int load_const_from_toc_call_size() { return load_const_from_toc_size() + call_byregister_size(); } |
|
929 |
// Offset is +/- 2**32 -> use long. |
|
930 |
static long get_load_const_from_toc_offset(address a); |
|
931 |
||
932 |
||
933 |
void generate_type_profiling(const Register Rdata, |
|
934 |
const Register Rreceiver_klass, |
|
935 |
const Register Rwanted_receiver_klass, |
|
936 |
const Register Rmatching_row, |
|
937 |
bool is_virtual_call); |
|
938 |
||
939 |
// Bit operations for single register operands. |
|
940 |
inline void lshift(Register r, int places, bool doubl = true); // << |
|
941 |
inline void rshift(Register r, int places, bool doubl = true); // >> |
|
942 |
||
943 |
// |
|
944 |
// Debugging |
|
945 |
// |
|
946 |
||
947 |
// Assert on CC (condition code in CPU state). |
|
948 |
void asm_assert(bool check_equal, const char* msg, int id) PRODUCT_RETURN; |
|
949 |
void asm_assert_low(const char *msg, int id) PRODUCT_RETURN; |
|
950 |
void asm_assert_high(const char *msg, int id) PRODUCT_RETURN; |
|
951 |
void asm_assert_eq(const char* msg, int id) { asm_assert(true, msg, id); } |
|
952 |
void asm_assert_ne(const char* msg, int id) { asm_assert(false, msg, id); } |
|
953 |
||
954 |
void asm_assert_static(bool check_equal, const char* msg, int id) PRODUCT_RETURN; |
|
955 |
||
956 |
private: |
|
957 |
// Emit assertions. |
|
958 |
void asm_assert_mems_zero(bool check_equal, bool allow_relocation, int size, int64_t mem_offset, |
|
959 |
Register mem_base, const char* msg, int id) PRODUCT_RETURN; |
|
960 |
||
961 |
public: |
|
962 |
inline void asm_assert_mem4_is_zero(int64_t mem_offset, Register mem_base, const char* msg, int id) { |
|
963 |
asm_assert_mems_zero(true, true, 4, mem_offset, mem_base, msg, id); |
|
964 |
} |
|
965 |
inline void asm_assert_mem8_is_zero(int64_t mem_offset, Register mem_base, const char* msg, int id) { |
|
966 |
asm_assert_mems_zero(true, true, 8, mem_offset, mem_base, msg, id); |
|
967 |
} |
|
968 |
inline void asm_assert_mem4_isnot_zero(int64_t mem_offset, Register mem_base, const char* msg, int id) { |
|
969 |
asm_assert_mems_zero(false, true, 4, mem_offset, mem_base, msg, id); |
|
970 |
} |
|
971 |
inline void asm_assert_mem8_isnot_zero(int64_t mem_offset, Register mem_base, const char* msg, int id) { |
|
972 |
asm_assert_mems_zero(false, true, 8, mem_offset, mem_base, msg, id); |
|
973 |
} |
|
974 |
||
975 |
inline void asm_assert_mem4_is_zero_static(int64_t mem_offset, Register mem_base, const char* msg, int id) { |
|
976 |
asm_assert_mems_zero(true, false, 4, mem_offset, mem_base, msg, id); |
|
977 |
} |
|
978 |
inline void asm_assert_mem8_is_zero_static(int64_t mem_offset, Register mem_base, const char* msg, int id) { |
|
979 |
asm_assert_mems_zero(true, false, 8, mem_offset, mem_base, msg, id); |
|
980 |
} |
|
981 |
inline void asm_assert_mem4_isnot_zero_static(int64_t mem_offset, Register mem_base, const char* msg, int id) { |
|
982 |
asm_assert_mems_zero(false, false, 4, mem_offset, mem_base, msg, id); |
|
983 |
} |
|
984 |
inline void asm_assert_mem8_isnot_zero_static(int64_t mem_offset, Register mem_base, const char* msg, int id) { |
|
985 |
asm_assert_mems_zero(false, false, 8, mem_offset, mem_base, msg, id); |
|
986 |
} |
|
987 |
void asm_assert_frame_size(Register expected_size, Register tmp, const char* msg, int id) PRODUCT_RETURN; |
|
988 |
||
989 |
// Verify Z_thread contents. |
|
990 |
void verify_thread(); |
|
991 |
||
992 |
// Only if +VerifyOops. |
|
993 |
void verify_oop(Register reg, const char* s = "broken oop"); |
|
994 |
||
995 |
// TODO: verify_method and klass metadata (compare against vptr?). |
|
996 |
void _verify_method_ptr(Register reg, const char * msg, const char * file, int line) {} |
|
997 |
void _verify_klass_ptr(Register reg, const char * msg, const char * file, int line) {} |
|
998 |
||
999 |
#define verify_method_ptr(reg) _verify_method_ptr(reg, "broken method " #reg, __FILE__, __LINE__) |
|
1000 |
#define verify_klass_ptr(reg) _verify_klass_ptr(reg, "broken klass " #reg, __FILE__, __LINE__) |
|
1001 |
||
1002 |
private: |
|
1003 |
// Generate printout in stop(). |
|
1004 |
static const char* stop_types[]; |
|
1005 |
enum { |
|
1006 |
stop_stop = 0, |
|
1007 |
stop_untested = 1, |
|
1008 |
stop_unimplemented = 2, |
|
1009 |
stop_shouldnotreachhere = 3, |
|
1010 |
stop_end = 4 |
|
1011 |
}; |
|
1012 |
// Prints msg and stops execution. |
|
1013 |
void stop(int type, const char* msg, int id = 0); |
|
1014 |
address stop_chain(address reentry, int type, const char* msg, int id, bool allow_relocation); // Non-relocateable code only!! |
|
1015 |
void stop_static(int type, const char* msg, int id); // Non-relocateable code only!! |
|
1016 |
||
1017 |
public: |
|
1018 |
||
1019 |
// Prints msg and stops. |
|
1020 |
address stop_chain( address reentry, const char* msg = "", int id = 0) { return stop_chain(reentry, stop_stop, msg, id, true); } |
|
1021 |
address stop_chain_static(address reentry, const char* msg = "", int id = 0) { return stop_chain(reentry, stop_stop, msg, id, false); } |
|
1022 |
void stop_static (const char* msg = "", int id = 0) { stop_static(stop_stop, msg, id); } |
|
1023 |
void stop (const char* msg = "", int id = 0) { stop(stop_stop, msg, id); } |
|
1024 |
void untested (const char* msg = "", int id = 0) { stop(stop_untested, msg, id); } |
|
1025 |
void unimplemented(const char* msg = "", int id = 0) { stop(stop_unimplemented, msg, id); } |
|
1026 |
void should_not_reach_here(const char* msg = "", int id = -1) { stop(stop_shouldnotreachhere, msg, id); } |
|
1027 |
||
1028 |
// Factor out part of stop into subroutine to save space. |
|
1029 |
void stop_subroutine(); |
|
1030 |
||
1031 |
// Prints msg, but don't stop. |
|
1032 |
void warn(const char* msg); |
|
1033 |
||
1034 |
//----------------------------- |
|
1035 |
//--- basic block tracing code |
|
1036 |
//----------------------------- |
|
1037 |
void trace_basic_block(uint i); |
|
1038 |
void init_basic_block_trace(); |
|
1039 |
// Number of bytes a basic block gets larger due to the tracing code macro (worst case). |
|
1040 |
// Currently, worst case is 48 bytes. 64 puts us securely on the safe side. |
|
1041 |
static int basic_blck_trace_blk_size_incr() { return 64; } |
|
1042 |
||
1043 |
// Write pattern 0x0101010101010101 in region [low-before, high+after]. |
|
1044 |
// Low and high may be the same registers. Before and after are |
|
1045 |
// the numbers of 8-byte words. |
|
1046 |
void zap_from_to(Register low, Register high, Register tmp1 = Z_R0, Register tmp2 = Z_R1, |
|
1047 |
int before = 0, int after = 0) PRODUCT_RETURN; |
|
1048 |
||
1049 |
// Emitters for CRC32 calculation. |
|
46315
a796c32af782
8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents:
43420
diff
changeset
|
1050 |
// A note on invertCRC: |
a796c32af782
8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents:
43420
diff
changeset
|
1051 |
// Unfortunately, internal representation of crc differs between CRC32 and CRC32C. |
a796c32af782
8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents:
43420
diff
changeset
|
1052 |
// CRC32 holds it's current crc value in the externally visible representation. |
a796c32af782
8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents:
43420
diff
changeset
|
1053 |
// CRC32C holds it's current crc value in internal format, ready for updating. |
a796c32af782
8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents:
43420
diff
changeset
|
1054 |
// Thus, the crc value must be bit-flipped before updating it in the CRC32 case. |
a796c32af782
8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents:
43420
diff
changeset
|
1055 |
// In the CRC32C case, it must be bit-flipped when it is given to the outside world (getValue()). |
a796c32af782
8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents:
43420
diff
changeset
|
1056 |
// The bool invertCRC parameter indicates whether bit-flipping is required before updates. |
42065 | 1057 |
private: |
1058 |
void fold_byte_crc32(Register crc, Register table, Register val, Register tmp); |
|
1059 |
void fold_8bit_crc32(Register crc, Register table, Register tmp); |
|
46315
a796c32af782
8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents:
43420
diff
changeset
|
1060 |
void update_byte_crc32( Register crc, Register val, Register table); |
42065 | 1061 |
void update_byteLoop_crc32(Register crc, Register buf, Register len, Register table, |
46315
a796c32af782
8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents:
43420
diff
changeset
|
1062 |
Register data); |
42065 | 1063 |
void update_1word_crc32(Register crc, Register buf, Register table, int bufDisp, int bufInc, |
1064 |
Register t0, Register t1, Register t2, Register t3); |
|
1065 |
public: |
|
46315
a796c32af782
8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents:
43420
diff
changeset
|
1066 |
void kernel_crc32_singleByteReg(Register crc, Register val, Register table, |
a796c32af782
8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents:
43420
diff
changeset
|
1067 |
bool invertCRC); |
a796c32af782
8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents:
43420
diff
changeset
|
1068 |
void kernel_crc32_singleByte(Register crc, Register buf, Register len, Register table, Register tmp, |
a796c32af782
8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents:
43420
diff
changeset
|
1069 |
bool invertCRC); |
42065 | 1070 |
void kernel_crc32_1byte(Register crc, Register buf, Register len, Register table, |
46315
a796c32af782
8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents:
43420
diff
changeset
|
1071 |
Register t0, Register t1, Register t2, Register t3, |
a796c32af782
8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents:
43420
diff
changeset
|
1072 |
bool invertCRC); |
42065 | 1073 |
void kernel_crc32_1word(Register crc, Register buf, Register len, Register table, |
46315
a796c32af782
8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents:
43420
diff
changeset
|
1074 |
Register t0, Register t1, Register t2, Register t3, |
a796c32af782
8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents:
43420
diff
changeset
|
1075 |
bool invertCRC); |
42065 | 1076 |
void kernel_crc32_2word(Register crc, Register buf, Register len, Register table, |
46315
a796c32af782
8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents:
43420
diff
changeset
|
1077 |
Register t0, Register t1, Register t2, Register t3, |
a796c32af782
8175368: [s390] Provide intrinsic implementation for CRC32C
lucy
parents:
43420
diff
changeset
|
1078 |
bool invertCRC); |
42065 | 1079 |
|
1080 |
// Emitters for BigInteger.multiplyToLen intrinsic |
|
1081 |
// note: length of result array (zlen) is passed on the stack |
|
1082 |
private: |
|
1083 |
void add2_with_carry(Register dest_hi, Register dest_lo, |
|
1084 |
Register src1, Register src2); |
|
1085 |
void multiply_64_x_64_loop(Register x, Register xstart, |
|
1086 |
Register x_xstart, |
|
1087 |
Register y, Register y_idx, Register z, |
|
1088 |
Register carry, Register product, |
|
1089 |
Register idx, Register kdx); |
|
1090 |
void multiply_add_128_x_128(Register x_xstart, Register y, Register z, |
|
1091 |
Register yz_idx, Register idx, |
|
1092 |
Register carry, Register product, int offset); |
|
1093 |
void multiply_128_x_128_loop(Register x_xstart, |
|
1094 |
Register y, Register z, |
|
1095 |
Register yz_idx, Register idx, |
|
1096 |
Register jdx, |
|
1097 |
Register carry, Register product, |
|
1098 |
Register carry2); |
|
1099 |
public: |
|
1100 |
void multiply_to_len(Register x, Register xlen, |
|
1101 |
Register y, Register ylen, |
|
1102 |
Register z, |
|
1103 |
Register tmp1, Register tmp2, |
|
1104 |
Register tmp3, Register tmp4, Register tmp5); |
|
1105 |
}; |
|
1106 |
||
1107 |
/** |
|
1108 |
* class SkipIfEqual: |
|
1109 |
* |
|
1110 |
* Instantiating this class will result in assembly code being output that will |
|
1111 |
* jump around any code emitted between the creation of the instance and it's |
|
1112 |
* automatic destruction at the end of a scope block, depending on the value of |
|
1113 |
* the flag passed to the constructor, which will be checked at run-time. |
|
1114 |
*/ |
|
1115 |
class SkipIfEqual { |
|
1116 |
private: |
|
1117 |
MacroAssembler* _masm; |
|
1118 |
Label _label; |
|
1119 |
||
1120 |
public: |
|
1121 |
SkipIfEqual(MacroAssembler*, const bool* flag_addr, bool value, Register _rscratch); |
|
1122 |
~SkipIfEqual(); |
|
1123 |
}; |
|
1124 |
||
1125 |
#ifdef ASSERT |
|
1126 |
// Return false (e.g. important for our impl. of virtual calls). |
|
1127 |
inline bool AbstractAssembler::pd_check_instruction_mark() { return false; } |
|
1128 |
#endif |
|
1129 |
||
1130 |
#endif // CPU_S390_VM_MACROASSEMBLER_S390_HPP |