annotate src/share/vm/opto/regmask.hpp @ 23886:5601e440e5e7

8130150: Implement BigInteger.montgomeryMultiply intrinsic Reviewed-by: kvn, mdoerr
author vkempik
date Fri, 04 Mar 2016 16:15:48 +0300
parents ddce0b7cee93
children dd9cc155639c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
22851
ddce0b7cee93 8072383: resolve conflicts between open and closed ports
dlong
parents: 14391
diff changeset
2 * Copyright (c) 1997, 2015, 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: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
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: 0
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 #ifndef SHARE_VM_OPTO_REGMASK_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_OPTO_REGMASK_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "code/vmreg.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "libadt/port.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "opto/optoreg.hpp"
22851
ddce0b7cee93 8072383: resolve conflicts between open and closed ports
dlong
parents: 14391
diff changeset
31 #if defined ADGLOBALS_MD_HPP
ddce0b7cee93 8072383: resolve conflicts between open and closed ports
dlong
parents: 14391
diff changeset
32 # include ADGLOBALS_MD_HPP
ddce0b7cee93 8072383: resolve conflicts between open and closed ports
dlong
parents: 14391
diff changeset
33 #elif defined TARGET_ARCH_MODEL_x86_32
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
34 # include "adfiles/adGlobals_x86_32.hpp"
22851
ddce0b7cee93 8072383: resolve conflicts between open and closed ports
dlong
parents: 14391
diff changeset
35 #elif defined TARGET_ARCH_MODEL_x86_64
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
36 # include "adfiles/adGlobals_x86_64.hpp"
22851
ddce0b7cee93 8072383: resolve conflicts between open and closed ports
dlong
parents: 14391
diff changeset
37 #elif defined TARGET_ARCH_MODEL_sparc
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
38 # include "adfiles/adGlobals_sparc.hpp"
22851
ddce0b7cee93 8072383: resolve conflicts between open and closed ports
dlong
parents: 14391
diff changeset
39 #elif defined TARGET_ARCH_MODEL_zero
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
40 # include "adfiles/adGlobals_zero.hpp"
22851
ddce0b7cee93 8072383: resolve conflicts between open and closed ports
dlong
parents: 14391
diff changeset
41 #elif defined TARGET_ARCH_MODEL_ppc_64
14391
d2907f74462e 8016586: PPC64 (part 3): basic changes for PPC64
goetz
parents: 8044
diff changeset
42 # include "adfiles/adGlobals_ppc_64.hpp"
2192
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 1972
diff changeset
43 #endif
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
44
0
a61af66fc99e Initial load
duke
parents:
diff changeset
45 // Some fun naming (textual) substitutions:
a61af66fc99e Initial load
duke
parents:
diff changeset
46 //
a61af66fc99e Initial load
duke
parents:
diff changeset
47 // RegMask::get_low_elem() ==> RegMask::find_first_elem()
a61af66fc99e Initial load
duke
parents:
diff changeset
48 // RegMask::Special ==> RegMask::Empty
a61af66fc99e Initial load
duke
parents:
diff changeset
49 // RegMask::_flags ==> RegMask::is_AllStack()
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // RegMask::operator<<=() ==> RegMask::Insert()
a61af66fc99e Initial load
duke
parents:
diff changeset
51 // RegMask::operator>>=() ==> RegMask::Remove()
a61af66fc99e Initial load
duke
parents:
diff changeset
52 // RegMask::Union() ==> RegMask::OR
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // RegMask::Inter() ==> RegMask::AND
a61af66fc99e Initial load
duke
parents:
diff changeset
54 //
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // OptoRegister::RegName ==> OptoReg::Name
a61af66fc99e Initial load
duke
parents:
diff changeset
56 //
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // OptoReg::stack0() ==> _last_Mach_Reg or ZERO in core version
a61af66fc99e Initial load
duke
parents:
diff changeset
58 //
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // numregs in chaitin ==> proper degree in chaitin
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 //-------------Non-zero bit search methods used by RegMask---------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // Find lowest 1, or return 32 if empty
a61af66fc99e Initial load
duke
parents:
diff changeset
63 int find_lowest_bit( uint32 mask );
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // Find highest 1, or return 32 if empty
a61af66fc99e Initial load
duke
parents:
diff changeset
65 int find_hihghest_bit( uint32 mask );
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 //------------------------------RegMask----------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // The ADL file describes how to print the machine-specific registers, as well
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // as any notion of register classes. We provide a register mask, which is
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // just a collection of Register numbers.
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 // The ADLC defines 2 macros, RM_SIZE and FORALL_BODY.
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // RM_SIZE is the size of a register mask in words.
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // FORALL_BODY replicates a BODY macro once per word in the register mask.
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // The usage is somewhat clumsy and limited to the regmask.[h,c]pp files.
a61af66fc99e Initial load
duke
parents:
diff changeset
76 // However, it means the ADLC can redefine the unroll macro and all loops
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // over register masks will be unrolled by the correct amount.
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79 class RegMask VALUE_OBJ_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
80 union {
a61af66fc99e Initial load
duke
parents:
diff changeset
81 double _dummy_force_double_alignment[RM_SIZE>>1];
a61af66fc99e Initial load
duke
parents:
diff changeset
82 // Array of Register Mask bits. This array is large enough to cover
a61af66fc99e Initial load
duke
parents:
diff changeset
83 // all the machine registers and all parameters that need to be passed
a61af66fc99e Initial load
duke
parents:
diff changeset
84 // on the stack (stack registers) up to some interesting limit. Methods
a61af66fc99e Initial load
duke
parents:
diff changeset
85 // that need more parameters will NOT be compiled. On Intel, the limit
a61af66fc99e Initial load
duke
parents:
diff changeset
86 // is something like 90+ parameters.
a61af66fc99e Initial load
duke
parents:
diff changeset
87 int _A[RM_SIZE];
a61af66fc99e Initial load
duke
parents:
diff changeset
88 };
a61af66fc99e Initial load
duke
parents:
diff changeset
89
a61af66fc99e Initial load
duke
parents:
diff changeset
90 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
91 _WordBits = BitsPerInt,
a61af66fc99e Initial load
duke
parents:
diff changeset
92 _LogWordBits = LogBitsPerInt,
a61af66fc99e Initial load
duke
parents:
diff changeset
93 _RM_SIZE = RM_SIZE // local constant, imported, then hidden by #undef
a61af66fc99e Initial load
duke
parents:
diff changeset
94 };
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
97 enum { CHUNK_SIZE = RM_SIZE*_WordBits };
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 // SlotsPerLong is 2, since slots are 32 bits and longs are 64 bits.
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // Also, consider the maximum alignment size for a normally allocated
a61af66fc99e Initial load
duke
parents:
diff changeset
101 // value. Since we allocate register pairs but not register quads (at
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // present), this alignment is SlotsPerLong (== 2). A normally
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // aligned allocated register is either a single register, or a pair
a61af66fc99e Initial load
duke
parents:
diff changeset
104 // of adjacent registers, the lower-numbered being even.
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // See also is_aligned_Pairs() below, and the padding added before
a61af66fc99e Initial load
duke
parents:
diff changeset
106 // Matcher::_new_SP to keep allocated pairs aligned properly.
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // If we ever go to quad-word allocations, SlotsPerQuad will become
a61af66fc99e Initial load
duke
parents:
diff changeset
108 // the controlling alignment constraint. Note that this alignment
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // requirement is internal to the allocator, and independent of any
a61af66fc99e Initial load
duke
parents:
diff changeset
110 // particular platform.
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
111 enum { SlotsPerLong = 2,
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
112 SlotsPerVecS = 1,
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
113 SlotsPerVecD = 2,
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
114 SlotsPerVecX = 4,
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
115 SlotsPerVecY = 8 };
0
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 // A constructor only used by the ADLC output. All mask fields are filled
a61af66fc99e Initial load
duke
parents:
diff changeset
118 // in directly. Calls to this look something like RM(1,2,3,4);
a61af66fc99e Initial load
duke
parents:
diff changeset
119 RegMask(
a61af66fc99e Initial load
duke
parents:
diff changeset
120 # define BODY(I) int a##I,
a61af66fc99e Initial load
duke
parents:
diff changeset
121 FORALL_BODY
a61af66fc99e Initial load
duke
parents:
diff changeset
122 # undef BODY
a61af66fc99e Initial load
duke
parents:
diff changeset
123 int dummy = 0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
124 # define BODY(I) _A[I] = a##I;
a61af66fc99e Initial load
duke
parents:
diff changeset
125 FORALL_BODY
a61af66fc99e Initial load
duke
parents:
diff changeset
126 # undef BODY
a61af66fc99e Initial load
duke
parents:
diff changeset
127 }
a61af66fc99e Initial load
duke
parents:
diff changeset
128
a61af66fc99e Initial load
duke
parents:
diff changeset
129 // Handy copying constructor
a61af66fc99e Initial load
duke
parents:
diff changeset
130 RegMask( RegMask *rm ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
131 # define BODY(I) _A[I] = rm->_A[I];
a61af66fc99e Initial load
duke
parents:
diff changeset
132 FORALL_BODY
a61af66fc99e Initial load
duke
parents:
diff changeset
133 # undef BODY
a61af66fc99e Initial load
duke
parents:
diff changeset
134 }
a61af66fc99e Initial load
duke
parents:
diff changeset
135
a61af66fc99e Initial load
duke
parents:
diff changeset
136 // Construct an empty mask
a61af66fc99e Initial load
duke
parents:
diff changeset
137 RegMask( ) { Clear(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139 // Construct a mask with a single bit
a61af66fc99e Initial load
duke
parents:
diff changeset
140 RegMask( OptoReg::Name reg ) { Clear(); Insert(reg); }
a61af66fc99e Initial load
duke
parents:
diff changeset
141
a61af66fc99e Initial load
duke
parents:
diff changeset
142 // Check for register being in mask
a61af66fc99e Initial load
duke
parents:
diff changeset
143 int Member( OptoReg::Name reg ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
144 assert( reg < CHUNK_SIZE, "" );
a61af66fc99e Initial load
duke
parents:
diff changeset
145 return _A[reg>>_LogWordBits] & (1<<(reg&(_WordBits-1)));
a61af66fc99e Initial load
duke
parents:
diff changeset
146 }
a61af66fc99e Initial load
duke
parents:
diff changeset
147
a61af66fc99e Initial load
duke
parents:
diff changeset
148 // The last bit in the register mask indicates that the mask should repeat
a61af66fc99e Initial load
duke
parents:
diff changeset
149 // indefinitely with ONE bits. Returns TRUE if mask is infinite or
a61af66fc99e Initial load
duke
parents:
diff changeset
150 // unbounded in size. Returns FALSE if mask is finite size.
a61af66fc99e Initial load
duke
parents:
diff changeset
151 int is_AllStack() const { return _A[RM_SIZE-1] >> (_WordBits-1); }
a61af66fc99e Initial load
duke
parents:
diff changeset
152
a61af66fc99e Initial load
duke
parents:
diff changeset
153 // Work around an -xO3 optimization problme in WS6U1. The old way:
a61af66fc99e Initial load
duke
parents:
diff changeset
154 // void set_AllStack() { _A[RM_SIZE-1] |= (1<<(_WordBits-1)); }
a61af66fc99e Initial load
duke
parents:
diff changeset
155 // will cause _A[RM_SIZE-1] to be clobbered, not updated when set_AllStack()
a61af66fc99e Initial load
duke
parents:
diff changeset
156 // follows an Insert() loop, like the one found in init_spill_mask(). Using
a61af66fc99e Initial load
duke
parents:
diff changeset
157 // Insert() instead works because the index into _A in computed instead of
a61af66fc99e Initial load
duke
parents:
diff changeset
158 // constant. See bug 4665841.
a61af66fc99e Initial load
duke
parents:
diff changeset
159 void set_AllStack() { Insert(OptoReg::Name(CHUNK_SIZE-1)); }
a61af66fc99e Initial load
duke
parents:
diff changeset
160
a61af66fc99e Initial load
duke
parents:
diff changeset
161 // Test for being a not-empty mask.
a61af66fc99e Initial load
duke
parents:
diff changeset
162 int is_NotEmpty( ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
163 int tmp = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
164 # define BODY(I) tmp |= _A[I];
a61af66fc99e Initial load
duke
parents:
diff changeset
165 FORALL_BODY
a61af66fc99e Initial load
duke
parents:
diff changeset
166 # undef BODY
a61af66fc99e Initial load
duke
parents:
diff changeset
167 return tmp;
a61af66fc99e Initial load
duke
parents:
diff changeset
168 }
a61af66fc99e Initial load
duke
parents:
diff changeset
169
a61af66fc99e Initial load
duke
parents:
diff changeset
170 // Find lowest-numbered register from mask, or BAD if mask is empty.
a61af66fc99e Initial load
duke
parents:
diff changeset
171 OptoReg::Name find_first_elem() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
172 int base, bits;
a61af66fc99e Initial load
duke
parents:
diff changeset
173 # define BODY(I) if( (bits = _A[I]) != 0 ) base = I<<_LogWordBits; else
a61af66fc99e Initial load
duke
parents:
diff changeset
174 FORALL_BODY
a61af66fc99e Initial load
duke
parents:
diff changeset
175 # undef BODY
a61af66fc99e Initial load
duke
parents:
diff changeset
176 { base = OptoReg::Bad; bits = 1<<0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
177 return OptoReg::Name(base + find_lowest_bit(bits));
a61af66fc99e Initial load
duke
parents:
diff changeset
178 }
a61af66fc99e Initial load
duke
parents:
diff changeset
179 // Get highest-numbered register from mask, or BAD if mask is empty.
a61af66fc99e Initial load
duke
parents:
diff changeset
180 OptoReg::Name find_last_elem() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
181 int base, bits;
a61af66fc99e Initial load
duke
parents:
diff changeset
182 # define BODY(I) if( (bits = _A[RM_SIZE-1-I]) != 0 ) base = (RM_SIZE-1-I)<<_LogWordBits; else
a61af66fc99e Initial load
duke
parents:
diff changeset
183 FORALL_BODY
a61af66fc99e Initial load
duke
parents:
diff changeset
184 # undef BODY
a61af66fc99e Initial load
duke
parents:
diff changeset
185 { base = OptoReg::Bad; bits = 1<<0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
186 return OptoReg::Name(base + find_hihghest_bit(bits));
a61af66fc99e Initial load
duke
parents:
diff changeset
187 }
a61af66fc99e Initial load
duke
parents:
diff changeset
188
a61af66fc99e Initial load
duke
parents:
diff changeset
189 // Find the lowest-numbered register pair in the mask. Return the
a61af66fc99e Initial load
duke
parents:
diff changeset
190 // HIGHEST register number in the pair, or BAD if no pairs.
a61af66fc99e Initial load
duke
parents:
diff changeset
191 // Assert that the mask contains only bit pairs.
a61af66fc99e Initial load
duke
parents:
diff changeset
192 OptoReg::Name find_first_pair() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
193
a61af66fc99e Initial load
duke
parents:
diff changeset
194 // Clear out partial bits; leave only aligned adjacent bit pairs.
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
195 void clear_to_pairs();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
196 // Smear out partial bits; leave only aligned adjacent bit pairs.
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
197 void smear_to_pairs();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
198 // Verify that the mask contains only aligned adjacent bit pairs
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
199 void verify_pairs() const { assert( is_aligned_pairs(), "mask is not aligned, adjacent pairs" ); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
200 // Test that the mask contains only aligned adjacent bit pairs
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
201 bool is_aligned_pairs() const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
202
a61af66fc99e Initial load
duke
parents:
diff changeset
203 // mask is a pair of misaligned registers
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
204 bool is_misaligned_pair() const { return Size()==2 && !is_aligned_pairs(); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
205 // Test for single register
a61af66fc99e Initial load
duke
parents:
diff changeset
206 int is_bound1() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
207 // Test for a single adjacent pair
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
208 int is_bound_pair() const;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
209 // Test for a single adjacent set of ideal register's size.
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
210 int is_bound(uint ireg) const {
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
211 if (is_vector(ireg)) {
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
212 if (is_bound_set(num_registers(ireg)))
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
213 return true;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
214 } else if (is_bound1() || is_bound_pair()) {
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
215 return true;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
216 }
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
217 return false;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
218 }
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
219
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
220 // Find the lowest-numbered register set in the mask. Return the
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
221 // HIGHEST register number in the set, or BAD if no sets.
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
222 // Assert that the mask contains only bit sets.
8044
2c673161698a 8007402: Code cleanup to remove Parfait false positive
drchase
parents: 7636
diff changeset
223 OptoReg::Name find_first_set(const int size) const;
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
224
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
225 // Clear out partial bits; leave only aligned adjacent bit sets of size.
8044
2c673161698a 8007402: Code cleanup to remove Parfait false positive
drchase
parents: 7636
diff changeset
226 void clear_to_sets(const int size);
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
227 // Smear out partial bits to aligned adjacent bit sets.
8044
2c673161698a 8007402: Code cleanup to remove Parfait false positive
drchase
parents: 7636
diff changeset
228 void smear_to_sets(const int size);
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
229 // Verify that the mask contains only aligned adjacent bit sets
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
230 void verify_sets(int size) const { assert(is_aligned_sets(size), "mask is not aligned, adjacent sets"); }
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
231 // Test that the mask contains only aligned adjacent bit sets
8044
2c673161698a 8007402: Code cleanup to remove Parfait false positive
drchase
parents: 7636
diff changeset
232 bool is_aligned_sets(const int size) const;
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
233
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
234 // mask is a set of misaligned registers
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
235 bool is_misaligned_set(int size) const { return (int)Size()==size && !is_aligned_sets(size);}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
236
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
237 // Test for a single adjacent set
8044
2c673161698a 8007402: Code cleanup to remove Parfait false positive
drchase
parents: 7636
diff changeset
238 int is_bound_set(const int size) const;
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
239
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
240 static bool is_vector(uint ireg);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
241 static int num_registers(uint ireg);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
242
a61af66fc99e Initial load
duke
parents:
diff changeset
243 // Fast overlap test. Non-zero if any registers in common.
a61af66fc99e Initial load
duke
parents:
diff changeset
244 int overlap( const RegMask &rm ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
245 return
a61af66fc99e Initial load
duke
parents:
diff changeset
246 # define BODY(I) (_A[I] & rm._A[I]) |
a61af66fc99e Initial load
duke
parents:
diff changeset
247 FORALL_BODY
a61af66fc99e Initial load
duke
parents:
diff changeset
248 # undef BODY
a61af66fc99e Initial load
duke
parents:
diff changeset
249 0 ;
a61af66fc99e Initial load
duke
parents:
diff changeset
250 }
a61af66fc99e Initial load
duke
parents:
diff changeset
251
a61af66fc99e Initial load
duke
parents:
diff changeset
252 // Special test for register pressure based splitting
a61af66fc99e Initial load
duke
parents:
diff changeset
253 // UP means register only, Register plus stack, or stack only is DOWN
a61af66fc99e Initial load
duke
parents:
diff changeset
254 bool is_UP() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
255
a61af66fc99e Initial load
duke
parents:
diff changeset
256 // Clear a register mask
a61af66fc99e Initial load
duke
parents:
diff changeset
257 void Clear( ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
258 # define BODY(I) _A[I] = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
259 FORALL_BODY
a61af66fc99e Initial load
duke
parents:
diff changeset
260 # undef BODY
a61af66fc99e Initial load
duke
parents:
diff changeset
261 }
a61af66fc99e Initial load
duke
parents:
diff changeset
262
a61af66fc99e Initial load
duke
parents:
diff changeset
263 // Fill a register mask with 1's
a61af66fc99e Initial load
duke
parents:
diff changeset
264 void Set_All( ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
265 # define BODY(I) _A[I] = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
266 FORALL_BODY
a61af66fc99e Initial load
duke
parents:
diff changeset
267 # undef BODY
a61af66fc99e Initial load
duke
parents:
diff changeset
268 }
a61af66fc99e Initial load
duke
parents:
diff changeset
269
a61af66fc99e Initial load
duke
parents:
diff changeset
270 // Insert register into mask
a61af66fc99e Initial load
duke
parents:
diff changeset
271 void Insert( OptoReg::Name reg ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
272 assert( reg < CHUNK_SIZE, "" );
a61af66fc99e Initial load
duke
parents:
diff changeset
273 _A[reg>>_LogWordBits] |= (1<<(reg&(_WordBits-1)));
a61af66fc99e Initial load
duke
parents:
diff changeset
274 }
a61af66fc99e Initial load
duke
parents:
diff changeset
275
a61af66fc99e Initial load
duke
parents:
diff changeset
276 // Remove register from mask
a61af66fc99e Initial load
duke
parents:
diff changeset
277 void Remove( OptoReg::Name reg ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
278 assert( reg < CHUNK_SIZE, "" );
a61af66fc99e Initial load
duke
parents:
diff changeset
279 _A[reg>>_LogWordBits] &= ~(1<<(reg&(_WordBits-1)));
a61af66fc99e Initial load
duke
parents:
diff changeset
280 }
a61af66fc99e Initial load
duke
parents:
diff changeset
281
a61af66fc99e Initial load
duke
parents:
diff changeset
282 // OR 'rm' into 'this'
a61af66fc99e Initial load
duke
parents:
diff changeset
283 void OR( const RegMask &rm ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
284 # define BODY(I) this->_A[I] |= rm._A[I];
a61af66fc99e Initial load
duke
parents:
diff changeset
285 FORALL_BODY
a61af66fc99e Initial load
duke
parents:
diff changeset
286 # undef BODY
a61af66fc99e Initial load
duke
parents:
diff changeset
287 }
a61af66fc99e Initial load
duke
parents:
diff changeset
288
a61af66fc99e Initial load
duke
parents:
diff changeset
289 // AND 'rm' into 'this'
a61af66fc99e Initial load
duke
parents:
diff changeset
290 void AND( const RegMask &rm ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
291 # define BODY(I) this->_A[I] &= rm._A[I];
a61af66fc99e Initial load
duke
parents:
diff changeset
292 FORALL_BODY
a61af66fc99e Initial load
duke
parents:
diff changeset
293 # undef BODY
a61af66fc99e Initial load
duke
parents:
diff changeset
294 }
a61af66fc99e Initial load
duke
parents:
diff changeset
295
a61af66fc99e Initial load
duke
parents:
diff changeset
296 // Subtract 'rm' from 'this'
a61af66fc99e Initial load
duke
parents:
diff changeset
297 void SUBTRACT( const RegMask &rm ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
298 # define BODY(I) _A[I] &= ~rm._A[I];
a61af66fc99e Initial load
duke
parents:
diff changeset
299 FORALL_BODY
a61af66fc99e Initial load
duke
parents:
diff changeset
300 # undef BODY
a61af66fc99e Initial load
duke
parents:
diff changeset
301 }
a61af66fc99e Initial load
duke
parents:
diff changeset
302
a61af66fc99e Initial load
duke
parents:
diff changeset
303 // Compute size of register mask: number of bits
a61af66fc99e Initial load
duke
parents:
diff changeset
304 uint Size() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
305
a61af66fc99e Initial load
duke
parents:
diff changeset
306 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
307 void print() const { dump(); }
7636
a7114d3d712e 8005055: pass outputStream to more opto debug routines
kvn
parents: 6179
diff changeset
308 void dump(outputStream *st = tty) const; // Print a mask
0
a61af66fc99e Initial load
duke
parents:
diff changeset
309 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
310
a61af66fc99e Initial load
duke
parents:
diff changeset
311 static const RegMask Empty; // Common empty mask
a61af66fc99e Initial load
duke
parents:
diff changeset
312
a61af66fc99e Initial load
duke
parents:
diff changeset
313 static bool can_represent(OptoReg::Name reg) {
a61af66fc99e Initial load
duke
parents:
diff changeset
314 // NOTE: -1 in computation reflects the usage of the last
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
315 // bit of the regmask as an infinite stack flag and
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
316 // -7 is to keep mask aligned for largest value (VecY).
0
a61af66fc99e Initial load
duke
parents:
diff changeset
317 return (int)reg < (int)(CHUNK_SIZE-1);
a61af66fc99e Initial load
duke
parents:
diff changeset
318 }
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
319 static bool can_represent_arg(OptoReg::Name reg) {
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
320 // NOTE: -SlotsPerVecY in computation reflects the need
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
321 // to keep mask aligned for largest value (VecY).
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
322 return (int)reg < (int)(CHUNK_SIZE-SlotsPerVecY);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 2426
diff changeset
323 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
324 };
a61af66fc99e Initial load
duke
parents:
diff changeset
325
a61af66fc99e Initial load
duke
parents:
diff changeset
326 // Do not use this constant directly in client code!
a61af66fc99e Initial load
duke
parents:
diff changeset
327 #undef RM_SIZE
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
328
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
329 #endif // SHARE_VM_OPTO_REGMASK_HPP