author | shade |
Thu, 04 Feb 2016 21:44:23 +0300 | |
changeset 35708 | 290a3952e434 |
parent 35125 | 6982b109eeee |
child 42871 | c89e1f0a084e |
permissions | -rw-r--r-- |
29184 | 1 |
/* |
34220 | 2 |
* Copyright (c) 1999, 2015, Oracle and/or its affiliates. All rights reserved. |
3 |
* Copyright (c) 2014, 2015, Red Hat Inc. All rights reserved. |
|
29184 | 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_AARCH64_VM_C1_MACROASSEMBLER_AARCH64_HPP |
|
27 |
#define CPU_AARCH64_VM_C1_MACROASSEMBLER_AARCH64_HPP |
|
28 |
||
29 |
using MacroAssembler::build_frame; |
|
35125
6982b109eeee
8145438: Guarantee failures since 8144028: Use AArch64 bit-test instructions in C2
aph
parents:
34220
diff
changeset
|
30 |
using MacroAssembler::null_check; |
29184 | 31 |
|
32 |
// C1_MacroAssembler contains high-level macros for C1 |
|
33 |
||
34 |
private: |
|
35 |
int _rsp_offset; // track rsp changes |
|
36 |
// initialization |
|
37 |
void pd_init() { _rsp_offset = 0; } |
|
38 |
||
39 |
void zero_memory(Register addr, Register len, Register t1); |
|
40 |
||
41 |
public: |
|
42 |
void try_allocate( |
|
43 |
Register obj, // result: pointer to object after successful allocation |
|
44 |
Register var_size_in_bytes, // object size in bytes if unknown at compile time; invalid otherwise |
|
45 |
int con_size_in_bytes, // object size in bytes if known at compile time |
|
46 |
Register t1, // temp register |
|
47 |
Register t2, // temp register |
|
48 |
Label& slow_case // continuation point if fast allocation fails |
|
49 |
); |
|
50 |
||
51 |
void initialize_header(Register obj, Register klass, Register len, Register t1, Register t2); |
|
52 |
void initialize_body(Register obj, Register len_in_bytes, int hdr_size_in_bytes, Register t1); |
|
53 |
||
54 |
void float_cmp(bool is_float, int unordered_result, |
|
55 |
FloatRegister f0, FloatRegister f1, |
|
56 |
Register result); |
|
57 |
||
58 |
// locking |
|
59 |
// hdr : must be r0, contents destroyed |
|
60 |
// obj : must point to the object to lock, contents preserved |
|
61 |
// disp_hdr: must point to the displaced header location, contents preserved |
|
62 |
// scratch : scratch register, contents destroyed |
|
63 |
// returns code offset at which to add null check debug information |
|
64 |
int lock_object (Register swap, Register obj, Register disp_hdr, Register scratch, Label& slow_case); |
|
65 |
||
66 |
// unlocking |
|
67 |
// hdr : contents destroyed |
|
68 |
// obj : must point to the object to lock, contents preserved |
|
69 |
// disp_hdr: must be r0 & must point to the displaced header location, contents destroyed |
|
70 |
void unlock_object(Register swap, Register obj, Register lock, Label& slow_case); |
|
71 |
||
72 |
void initialize_object( |
|
73 |
Register obj, // result: pointer to object after successful allocation |
|
74 |
Register klass, // object klass |
|
75 |
Register var_size_in_bytes, // object size in bytes if unknown at compile time; invalid otherwise |
|
76 |
int con_size_in_bytes, // object size in bytes if known at compile time |
|
77 |
Register t1, // temp register |
|
78 |
Register t2 // temp register |
|
79 |
); |
|
80 |
||
81 |
// allocation of fixed-size objects |
|
82 |
// (can also be used to allocate fixed-size arrays, by setting |
|
83 |
// hdr_size correctly and storing the array length afterwards) |
|
84 |
// obj : will contain pointer to allocated object |
|
85 |
// t1, t2 : scratch registers - contents destroyed |
|
86 |
// header_size: size of object header in words |
|
87 |
// object_size: total size of object in words |
|
88 |
// slow_case : exit to slow case implementation if fast allocation fails |
|
89 |
void allocate_object(Register obj, Register t1, Register t2, int header_size, int object_size, Register klass, Label& slow_case); |
|
90 |
||
91 |
enum { |
|
92 |
max_array_allocation_length = 0x00FFFFFF |
|
93 |
}; |
|
94 |
||
95 |
// allocation of arrays |
|
96 |
// obj : will contain pointer to allocated object |
|
97 |
// len : array length in number of elements |
|
98 |
// t : scratch register - contents destroyed |
|
99 |
// header_size: size of object header in words |
|
100 |
// f : element scale factor |
|
101 |
// slow_case : exit to slow case implementation if fast allocation fails |
|
102 |
void allocate_array(Register obj, Register len, Register t, Register t2, int header_size, int f, Register klass, Label& slow_case); |
|
103 |
||
104 |
int rsp_offset() const { return _rsp_offset; } |
|
105 |
void set_rsp_offset(int n) { _rsp_offset = n; } |
|
106 |
||
107 |
void invalidate_registers(bool inv_r0, bool inv_r19, bool inv_r2, bool inv_r3, bool inv_r4, bool inv_r5) PRODUCT_RETURN; |
|
108 |
||
34220 | 109 |
// This platform only uses signal-based null checks. The Label is not needed. |
110 |
void null_check(Register r, Label *Lnull = NULL) { MacroAssembler::null_check(r); } |
|
111 |
||
29184 | 112 |
#endif // CPU_AARCH64_VM_C1_MACROASSEMBLER_AARCH64_HPP |