author | kvn |
Thu, 20 Mar 2014 17:49:27 -0700 | |
changeset 23491 | f690330b10b9 |
parent 22872 | b6902ee5bc8d |
child 23528 | 8f1a7f5e8066 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
22234
da823d78ad65
8029233: Update copyright year to match last edit in jdk8 hotspot repository for 2013
mikael
parents:
21526
diff
changeset
|
2 |
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5251
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5251
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5251
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_OPTO_MEMNODE_HPP |
26 |
#define SHARE_VM_OPTO_MEMNODE_HPP |
|
27 |
||
28 |
#include "opto/multnode.hpp" |
|
29 |
#include "opto/node.hpp" |
|
30 |
#include "opto/opcodes.hpp" |
|
31 |
#include "opto/type.hpp" |
|
32 |
||
1 | 33 |
// Portions of code courtesy of Clifford Click |
34 |
||
35 |
class MultiNode; |
|
36 |
class PhaseCCP; |
|
37 |
class PhaseTransform; |
|
38 |
||
39 |
//------------------------------MemNode---------------------------------------- |
|
40 |
// Load or Store, possibly throwing a NULL pointer exception |
|
41 |
class MemNode : public Node { |
|
42 |
protected: |
|
43 |
#ifdef ASSERT |
|
44 |
const TypePtr* _adr_type; // What kind of memory is being addressed? |
|
45 |
#endif |
|
46 |
virtual uint size_of() const; // Size is bigger (ASSERT only) |
|
47 |
public: |
|
48 |
enum { Control, // When is it safe to do this load? |
|
49 |
Memory, // Chunk of memory is being loaded from |
|
50 |
Address, // Actually address, derived from base |
|
51 |
ValueIn, // Value to store |
|
52 |
OopStore // Preceeding oop store, only in StoreCM |
|
53 |
}; |
|
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
54 |
typedef enum { unordered = 0, |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
55 |
acquire, // Load has to acquire or be succeeded by MemBarAcquire. |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
56 |
release // Store has to release or be preceded by MemBarRelease. |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
57 |
} MemOrd; |
1 | 58 |
protected: |
59 |
MemNode( Node *c0, Node *c1, Node *c2, const TypePtr* at ) |
|
60 |
: Node(c0,c1,c2 ) { |
|
61 |
init_class_id(Class_Mem); |
|
62 |
debug_only(_adr_type=at; adr_type();) |
|
63 |
} |
|
64 |
MemNode( Node *c0, Node *c1, Node *c2, const TypePtr* at, Node *c3 ) |
|
65 |
: Node(c0,c1,c2,c3) { |
|
66 |
init_class_id(Class_Mem); |
|
67 |
debug_only(_adr_type=at; adr_type();) |
|
68 |
} |
|
69 |
MemNode( Node *c0, Node *c1, Node *c2, const TypePtr* at, Node *c3, Node *c4) |
|
70 |
: Node(c0,c1,c2,c3,c4) { |
|
71 |
init_class_id(Class_Mem); |
|
72 |
debug_only(_adr_type=at; adr_type();) |
|
73 |
} |
|
74 |
||
206 | 75 |
public: |
1 | 76 |
// Helpers for the optimizer. Documented in memnode.cpp. |
77 |
static bool detect_ptr_independence(Node* p1, AllocateNode* a1, |
|
78 |
Node* p2, AllocateNode* a2, |
|
79 |
PhaseTransform* phase); |
|
80 |
static bool adr_phi_is_loop_invariant(Node* adr_phi, Node* cast); |
|
81 |
||
17383 | 82 |
static Node *optimize_simple_memory_chain(Node *mchain, const TypeOopPtr *t_oop, Node *load, PhaseGVN *phase); |
83 |
static Node *optimize_memory_chain(Node *mchain, const TypePtr *t_adr, Node *load, PhaseGVN *phase); |
|
1 | 84 |
// This one should probably be a phase-specific function: |
258
dbd6f2ed7ba0
6692301: Side effect in NumberFormat tests with -server -Xcomp
kvn
parents:
247
diff
changeset
|
85 |
static bool all_controls_dominate(Node* dom, Node* sub); |
1 | 86 |
|
589 | 87 |
// Find any cast-away of null-ness and keep its control. |
88 |
static Node *Ideal_common_DU_postCCP( PhaseCCP *ccp, Node* n, Node* adr ); |
|
1 | 89 |
virtual Node *Ideal_DU_postCCP( PhaseCCP *ccp ); |
90 |
||
91 |
virtual const class TypePtr *adr_type() const; // returns bottom_type of address |
|
92 |
||
93 |
// Shared code for Ideal methods: |
|
94 |
Node *Ideal_common(PhaseGVN *phase, bool can_reshape); // Return -1 for short-circuit NULL. |
|
95 |
||
96 |
// Helper function for adr_type() implementations. |
|
97 |
static const TypePtr* calculate_adr_type(const Type* t, const TypePtr* cross_check = NULL); |
|
98 |
||
99 |
// Raw access function, to allow copying of adr_type efficiently in |
|
100 |
// product builds and retain the debug info for debug builds. |
|
101 |
const TypePtr *raw_adr_type() const { |
|
102 |
#ifdef ASSERT |
|
103 |
return _adr_type; |
|
104 |
#else |
|
105 |
return 0; |
|
106 |
#endif |
|
107 |
} |
|
108 |
||
109 |
// Map a load or store opcode to its corresponding store opcode. |
|
110 |
// (Return -1 if unknown.) |
|
111 |
virtual int store_Opcode() const { return -1; } |
|
112 |
||
113 |
// What is the type of the value in memory? (T_VOID mean "unspecified".) |
|
114 |
virtual BasicType memory_type() const = 0; |
|
202
dc13bf0e5d5d
6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents:
190
diff
changeset
|
115 |
virtual int memory_size() const { |
dc13bf0e5d5d
6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents:
190
diff
changeset
|
116 |
#ifdef ASSERT |
dc13bf0e5d5d
6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents:
190
diff
changeset
|
117 |
return type2aelembytes(memory_type(), true); |
dc13bf0e5d5d
6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents:
190
diff
changeset
|
118 |
#else |
dc13bf0e5d5d
6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents:
190
diff
changeset
|
119 |
return type2aelembytes(memory_type()); |
dc13bf0e5d5d
6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents:
190
diff
changeset
|
120 |
#endif |
dc13bf0e5d5d
6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents:
190
diff
changeset
|
121 |
} |
1 | 122 |
|
123 |
// Search through memory states which precede this node (load or store). |
|
124 |
// Look for an exact match for the address, with no intervening |
|
125 |
// aliased stores. |
|
126 |
Node* find_previous_store(PhaseTransform* phase); |
|
127 |
||
128 |
// Can this node (load or store) accurately see a stored value in |
|
129 |
// the given memory state? (The state may or may not be in(Memory).) |
|
130 |
Node* can_see_stored_value(Node* st, PhaseTransform* phase) const; |
|
131 |
||
132 |
#ifndef PRODUCT |
|
133 |
static void dump_adr_type(const Node* mem, const TypePtr* adr_type, outputStream *st); |
|
134 |
virtual void dump_spec(outputStream *st) const; |
|
135 |
#endif |
|
136 |
}; |
|
137 |
||
138 |
//------------------------------LoadNode--------------------------------------- |
|
139 |
// Load value; requires Memory and Address |
|
140 |
class LoadNode : public MemNode { |
|
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
141 |
private: |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
142 |
// On platforms with weak memory ordering (e.g., PPC, Ia64) we distinguish |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
143 |
// loads that can be reordered, and such requiring acquire semantics to |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
144 |
// adhere to the Java specification. The required behaviour is stored in |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
145 |
// this field. |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
146 |
const MemOrd _mo; |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
147 |
|
1 | 148 |
protected: |
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
149 |
virtual uint cmp(const Node &n) const; |
1 | 150 |
virtual uint size_of() const; // Size is bigger |
151 |
const Type* const _type; // What kind of value is loaded? |
|
152 |
public: |
|
153 |
||
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
154 |
LoadNode(Node *c, Node *mem, Node *adr, const TypePtr* at, const Type *rt, MemOrd mo) |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
155 |
: MemNode(c,mem,adr,at), _type(rt), _mo(mo) { |
1 | 156 |
init_class_id(Class_Load); |
157 |
} |
|
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
158 |
inline bool is_unordered() const { return !is_acquire(); } |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
159 |
inline bool is_acquire() const { |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
160 |
assert(_mo == unordered || _mo == acquire, "unexpected"); |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
161 |
return _mo == acquire; |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
162 |
} |
1 | 163 |
|
164 |
// Polymorphic factory method: |
|
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
165 |
static Node* make(PhaseGVN& gvn, Node *c, Node *mem, Node *adr, |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
166 |
const TypePtr* at, const Type *rt, BasicType bt, MemOrd mo); |
1 | 167 |
|
168 |
virtual uint hash() const; // Check the type |
|
169 |
||
170 |
// Handle algebraic identities here. If we have an identity, return the Node |
|
171 |
// we are equivalent to. We look for Load of a Store. |
|
172 |
virtual Node *Identity( PhaseTransform *phase ); |
|
173 |
||
174 |
// If the load is from Field memory and the pointer is non-null, we can |
|
175 |
// zero out the control input. |
|
176 |
virtual Node *Ideal(PhaseGVN *phase, bool can_reshape); |
|
177 |
||
589 | 178 |
// Split instance field load through Phi. |
179 |
Node* split_through_phi(PhaseGVN *phase); |
|
180 |
||
190
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
181 |
// Recover original value from boxed values |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
182 |
Node *eliminate_autobox(PhaseGVN *phase); |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
183 |
|
1 | 184 |
// Compute a new Type for this node. Basically we just do the pre-check, |
185 |
// then call the virtual add() to set the type. |
|
186 |
virtual const Type *Value( PhaseTransform *phase ) const; |
|
187 |
||
590
2954744d7bba
6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents:
589
diff
changeset
|
188 |
// Common methods for LoadKlass and LoadNKlass nodes. |
2954744d7bba
6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents:
589
diff
changeset
|
189 |
const Type *klass_value_common( PhaseTransform *phase ) const; |
2954744d7bba
6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents:
589
diff
changeset
|
190 |
Node *klass_identity_common( PhaseTransform *phase ); |
2954744d7bba
6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents:
589
diff
changeset
|
191 |
|
1 | 192 |
virtual uint ideal_reg() const; |
193 |
virtual const Type *bottom_type() const; |
|
194 |
// Following method is copied from TypeNode: |
|
195 |
void set_type(const Type* t) { |
|
196 |
assert(t != NULL, "sanity"); |
|
197 |
debug_only(uint check_hash = (VerifyHashTableKeys && _hash_lock) ? hash() : NO_HASH); |
|
198 |
*(const Type**)&_type = t; // cast away const-ness |
|
199 |
// If this node is in the hash table, make sure it doesn't need a rehash. |
|
200 |
assert(check_hash == NO_HASH || check_hash == hash(), "type change must preserve hash code"); |
|
201 |
} |
|
202 |
const Type* type() const { assert(_type != NULL, "sanity"); return _type; }; |
|
203 |
||
204 |
// Do not match memory edge |
|
205 |
virtual uint match_edge(uint idx) const; |
|
206 |
||
207 |
// Map a load opcode to its corresponding store opcode. |
|
208 |
virtual int store_Opcode() const = 0; |
|
209 |
||
237
fba97e902303
6673473: (Escape Analysis) Add the instance's field information to PhiNode
kvn
parents:
206
diff
changeset
|
210 |
// Check if the load's memory input is a Phi node with the same control. |
fba97e902303
6673473: (Escape Analysis) Add the instance's field information to PhiNode
kvn
parents:
206
diff
changeset
|
211 |
bool is_instance_field_load_with_local_phi(Node* ctrl); |
fba97e902303
6673473: (Escape Analysis) Add the instance's field information to PhiNode
kvn
parents:
206
diff
changeset
|
212 |
|
1 | 213 |
#ifndef PRODUCT |
214 |
virtual void dump_spec(outputStream *st) const; |
|
215 |
#endif |
|
5889 | 216 |
#ifdef ASSERT |
217 |
// Helper function to allow a raw load without control edge for some cases |
|
218 |
static bool is_immutable_value(Node* adr); |
|
219 |
#endif |
|
1 | 220 |
protected: |
221 |
const Type* load_array_final_field(const TypeKlassPtr *tkls, |
|
222 |
ciKlass* klass) const; |
|
21526
03b4acedb351
8017065: C2 allows safepoint checks to leak into G1 pre-barriers
iveresov
parents:
17383
diff
changeset
|
223 |
// depends_only_on_test is almost always true, and needs to be almost always |
03b4acedb351
8017065: C2 allows safepoint checks to leak into G1 pre-barriers
iveresov
parents:
17383
diff
changeset
|
224 |
// true to enable key hoisting & commoning optimizations. However, for the |
03b4acedb351
8017065: C2 allows safepoint checks to leak into G1 pre-barriers
iveresov
parents:
17383
diff
changeset
|
225 |
// special case of RawPtr loads from TLS top & end, and other loads performed by |
03b4acedb351
8017065: C2 allows safepoint checks to leak into G1 pre-barriers
iveresov
parents:
17383
diff
changeset
|
226 |
// GC barriers, the control edge carries the dependence preventing hoisting past |
03b4acedb351
8017065: C2 allows safepoint checks to leak into G1 pre-barriers
iveresov
parents:
17383
diff
changeset
|
227 |
// a Safepoint instead of the memory edge. (An unfortunate consequence of having |
03b4acedb351
8017065: C2 allows safepoint checks to leak into G1 pre-barriers
iveresov
parents:
17383
diff
changeset
|
228 |
// Safepoints not set Raw Memory; itself an unfortunate consequence of having Nodes |
03b4acedb351
8017065: C2 allows safepoint checks to leak into G1 pre-barriers
iveresov
parents:
17383
diff
changeset
|
229 |
// which produce results (new raw memory state) inside of loops preventing all |
03b4acedb351
8017065: C2 allows safepoint checks to leak into G1 pre-barriers
iveresov
parents:
17383
diff
changeset
|
230 |
// manner of other optimizations). Basically, it's ugly but so is the alternative. |
03b4acedb351
8017065: C2 allows safepoint checks to leak into G1 pre-barriers
iveresov
parents:
17383
diff
changeset
|
231 |
// See comment in macro.cpp, around line 125 expand_allocate_common(). |
03b4acedb351
8017065: C2 allows safepoint checks to leak into G1 pre-barriers
iveresov
parents:
17383
diff
changeset
|
232 |
virtual bool depends_only_on_test() const { return adr_type() != TypeRawPtr::BOTTOM; } |
03b4acedb351
8017065: C2 allows safepoint checks to leak into G1 pre-barriers
iveresov
parents:
17383
diff
changeset
|
233 |
|
1 | 234 |
}; |
235 |
||
236 |
//------------------------------LoadBNode-------------------------------------- |
|
237 |
// Load a byte (8bits signed) from memory |
|
238 |
class LoadBNode : public LoadNode { |
|
239 |
public: |
|
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
240 |
LoadBNode(Node *c, Node *mem, Node *adr, const TypePtr* at, const TypeInt *ti, MemOrd mo) |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
241 |
: LoadNode(c, mem, adr, at, ti, mo) {} |
1 | 242 |
virtual int Opcode() const; |
243 |
virtual uint ideal_reg() const { return Op_RegI; } |
|
244 |
virtual Node *Ideal(PhaseGVN *phase, bool can_reshape); |
|
11562 | 245 |
virtual const Type *Value(PhaseTransform *phase) const; |
1 | 246 |
virtual int store_Opcode() const { return Op_StoreB; } |
247 |
virtual BasicType memory_type() const { return T_BYTE; } |
|
248 |
}; |
|
249 |
||
2150 | 250 |
//------------------------------LoadUBNode------------------------------------- |
251 |
// Load a unsigned byte (8bits unsigned) from memory |
|
252 |
class LoadUBNode : public LoadNode { |
|
253 |
public: |
|
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
254 |
LoadUBNode(Node* c, Node* mem, Node* adr, const TypePtr* at, const TypeInt* ti, MemOrd mo) |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
255 |
: LoadNode(c, mem, adr, at, ti, mo) {} |
2150 | 256 |
virtual int Opcode() const; |
257 |
virtual uint ideal_reg() const { return Op_RegI; } |
|
258 |
virtual Node* Ideal(PhaseGVN *phase, bool can_reshape); |
|
11562 | 259 |
virtual const Type *Value(PhaseTransform *phase) const; |
2150 | 260 |
virtual int store_Opcode() const { return Op_StoreB; } |
261 |
virtual BasicType memory_type() const { return T_BYTE; } |
|
262 |
}; |
|
263 |
||
2022
28ce8115a91d
6796746: rename LoadC (char) opcode class to LoadUS (unsigned short)
twisti
parents:
1500
diff
changeset
|
264 |
//------------------------------LoadUSNode------------------------------------- |
28ce8115a91d
6796746: rename LoadC (char) opcode class to LoadUS (unsigned short)
twisti
parents:
1500
diff
changeset
|
265 |
// Load an unsigned short/char (16bits unsigned) from memory |
28ce8115a91d
6796746: rename LoadC (char) opcode class to LoadUS (unsigned short)
twisti
parents:
1500
diff
changeset
|
266 |
class LoadUSNode : public LoadNode { |
1 | 267 |
public: |
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
268 |
LoadUSNode(Node *c, Node *mem, Node *adr, const TypePtr* at, const TypeInt *ti, MemOrd mo) |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
269 |
: LoadNode(c, mem, adr, at, ti, mo) {} |
1 | 270 |
virtual int Opcode() const; |
271 |
virtual uint ideal_reg() const { return Op_RegI; } |
|
272 |
virtual Node *Ideal(PhaseGVN *phase, bool can_reshape); |
|
11562 | 273 |
virtual const Type *Value(PhaseTransform *phase) const; |
1 | 274 |
virtual int store_Opcode() const { return Op_StoreC; } |
275 |
virtual BasicType memory_type() const { return T_CHAR; } |
|
276 |
}; |
|
277 |
||
11562 | 278 |
//------------------------------LoadSNode-------------------------------------- |
279 |
// Load a short (16bits signed) from memory |
|
280 |
class LoadSNode : public LoadNode { |
|
281 |
public: |
|
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
282 |
LoadSNode(Node *c, Node *mem, Node *adr, const TypePtr* at, const TypeInt *ti, MemOrd mo) |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
283 |
: LoadNode(c, mem, adr, at, ti, mo) {} |
11562 | 284 |
virtual int Opcode() const; |
285 |
virtual uint ideal_reg() const { return Op_RegI; } |
|
286 |
virtual Node *Ideal(PhaseGVN *phase, bool can_reshape); |
|
287 |
virtual const Type *Value(PhaseTransform *phase) const; |
|
288 |
virtual int store_Opcode() const { return Op_StoreC; } |
|
289 |
virtual BasicType memory_type() const { return T_SHORT; } |
|
290 |
}; |
|
291 |
||
1 | 292 |
//------------------------------LoadINode-------------------------------------- |
293 |
// Load an integer from memory |
|
294 |
class LoadINode : public LoadNode { |
|
295 |
public: |
|
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
296 |
LoadINode(Node *c, Node *mem, Node *adr, const TypePtr* at, const TypeInt *ti, MemOrd mo) |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
297 |
: LoadNode(c, mem, adr, at, ti, mo) {} |
1 | 298 |
virtual int Opcode() const; |
299 |
virtual uint ideal_reg() const { return Op_RegI; } |
|
300 |
virtual int store_Opcode() const { return Op_StoreI; } |
|
301 |
virtual BasicType memory_type() const { return T_INT; } |
|
302 |
}; |
|
303 |
||
304 |
//------------------------------LoadRangeNode---------------------------------- |
|
305 |
// Load an array length from the array |
|
306 |
class LoadRangeNode : public LoadINode { |
|
307 |
public: |
|
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
308 |
LoadRangeNode(Node *c, Node *mem, Node *adr, const TypeInt *ti = TypeInt::POS) |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
309 |
: LoadINode(c, mem, adr, TypeAryPtr::RANGE, ti, MemNode::unordered) {} |
1 | 310 |
virtual int Opcode() const; |
311 |
virtual const Type *Value( PhaseTransform *phase ) const; |
|
312 |
virtual Node *Identity( PhaseTransform *phase ); |
|
1398
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
961
diff
changeset
|
313 |
virtual Node *Ideal(PhaseGVN *phase, bool can_reshape); |
1 | 314 |
}; |
315 |
||
316 |
//------------------------------LoadLNode-------------------------------------- |
|
317 |
// Load a long from memory |
|
318 |
class LoadLNode : public LoadNode { |
|
319 |
virtual uint hash() const { return LoadNode::hash() + _require_atomic_access; } |
|
320 |
virtual uint cmp( const Node &n ) const { |
|
321 |
return _require_atomic_access == ((LoadLNode&)n)._require_atomic_access |
|
322 |
&& LoadNode::cmp(n); |
|
323 |
} |
|
324 |
virtual uint size_of() const { return sizeof(*this); } |
|
325 |
const bool _require_atomic_access; // is piecewise load forbidden? |
|
326 |
||
327 |
public: |
|
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
328 |
LoadLNode(Node *c, Node *mem, Node *adr, const TypePtr* at, const TypeLong *tl, |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
329 |
MemOrd mo, bool require_atomic_access = false) |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
330 |
: LoadNode(c, mem, adr, at, tl, mo), _require_atomic_access(require_atomic_access) {} |
1 | 331 |
virtual int Opcode() const; |
332 |
virtual uint ideal_reg() const { return Op_RegL; } |
|
333 |
virtual int store_Opcode() const { return Op_StoreL; } |
|
334 |
virtual BasicType memory_type() const { return T_LONG; } |
|
335 |
bool require_atomic_access() { return _require_atomic_access; } |
|
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
336 |
static LoadLNode* make_atomic(Compile *C, Node* ctl, Node* mem, Node* adr, const TypePtr* adr_type, |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
337 |
const Type* rt, MemOrd mo); |
1 | 338 |
#ifndef PRODUCT |
339 |
virtual void dump_spec(outputStream *st) const { |
|
340 |
LoadNode::dump_spec(st); |
|
341 |
if (_require_atomic_access) st->print(" Atomic!"); |
|
342 |
} |
|
343 |
#endif |
|
344 |
}; |
|
345 |
||
346 |
//------------------------------LoadL_unalignedNode---------------------------- |
|
347 |
// Load a long from unaligned memory |
|
348 |
class LoadL_unalignedNode : public LoadLNode { |
|
349 |
public: |
|
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
350 |
LoadL_unalignedNode(Node *c, Node *mem, Node *adr, const TypePtr* at, MemOrd mo) |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
351 |
: LoadLNode(c, mem, adr, at, TypeLong::LONG, mo) {} |
1 | 352 |
virtual int Opcode() const; |
353 |
}; |
|
354 |
||
355 |
//------------------------------LoadFNode-------------------------------------- |
|
356 |
// Load a float (64 bits) from memory |
|
357 |
class LoadFNode : public LoadNode { |
|
358 |
public: |
|
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
359 |
LoadFNode(Node *c, Node *mem, Node *adr, const TypePtr* at, const Type *t, MemOrd mo) |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
360 |
: LoadNode(c, mem, adr, at, t, mo) {} |
1 | 361 |
virtual int Opcode() const; |
362 |
virtual uint ideal_reg() const { return Op_RegF; } |
|
363 |
virtual int store_Opcode() const { return Op_StoreF; } |
|
364 |
virtual BasicType memory_type() const { return T_FLOAT; } |
|
365 |
}; |
|
366 |
||
367 |
//------------------------------LoadDNode-------------------------------------- |
|
368 |
// Load a double (64 bits) from memory |
|
369 |
class LoadDNode : public LoadNode { |
|
370 |
public: |
|
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
371 |
LoadDNode(Node *c, Node *mem, Node *adr, const TypePtr* at, const Type *t, MemOrd mo) |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
372 |
: LoadNode(c, mem, adr, at, t, mo) {} |
1 | 373 |
virtual int Opcode() const; |
374 |
virtual uint ideal_reg() const { return Op_RegD; } |
|
375 |
virtual int store_Opcode() const { return Op_StoreD; } |
|
376 |
virtual BasicType memory_type() const { return T_DOUBLE; } |
|
377 |
}; |
|
378 |
||
379 |
//------------------------------LoadD_unalignedNode---------------------------- |
|
380 |
// Load a double from unaligned memory |
|
381 |
class LoadD_unalignedNode : public LoadDNode { |
|
382 |
public: |
|
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
383 |
LoadD_unalignedNode(Node *c, Node *mem, Node *adr, const TypePtr* at, MemOrd mo) |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
384 |
: LoadDNode(c, mem, adr, at, Type::DOUBLE, mo) {} |
1 | 385 |
virtual int Opcode() const; |
386 |
}; |
|
387 |
||
388 |
//------------------------------LoadPNode-------------------------------------- |
|
389 |
// Load a pointer from memory (either object or array) |
|
390 |
class LoadPNode : public LoadNode { |
|
391 |
public: |
|
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
392 |
LoadPNode(Node *c, Node *mem, Node *adr, const TypePtr *at, const TypePtr* t, MemOrd mo) |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
393 |
: LoadNode(c, mem, adr, at, t, mo) {} |
1 | 394 |
virtual int Opcode() const; |
395 |
virtual uint ideal_reg() const { return Op_RegP; } |
|
396 |
virtual int store_Opcode() const { return Op_StoreP; } |
|
397 |
virtual BasicType memory_type() const { return T_ADDRESS; } |
|
398 |
}; |
|
399 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
247
diff
changeset
|
400 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
247
diff
changeset
|
401 |
//------------------------------LoadNNode-------------------------------------- |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
247
diff
changeset
|
402 |
// Load a narrow oop from memory (either object or array) |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
247
diff
changeset
|
403 |
class LoadNNode : public LoadNode { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
247
diff
changeset
|
404 |
public: |
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
405 |
LoadNNode(Node *c, Node *mem, Node *adr, const TypePtr *at, const Type* t, MemOrd mo) |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
406 |
: LoadNode(c, mem, adr, at, t, mo) {} |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
247
diff
changeset
|
407 |
virtual int Opcode() const; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
247
diff
changeset
|
408 |
virtual uint ideal_reg() const { return Op_RegN; } |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
247
diff
changeset
|
409 |
virtual int store_Opcode() const { return Op_StoreN; } |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
247
diff
changeset
|
410 |
virtual BasicType memory_type() const { return T_NARROWOOP; } |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
247
diff
changeset
|
411 |
}; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
247
diff
changeset
|
412 |
|
1 | 413 |
//------------------------------LoadKlassNode---------------------------------- |
414 |
// Load a Klass from an object |
|
415 |
class LoadKlassNode : public LoadPNode { |
|
416 |
public: |
|
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
417 |
LoadKlassNode(Node *c, Node *mem, Node *adr, const TypePtr *at, const TypeKlassPtr *tk, MemOrd mo) |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
418 |
: LoadPNode(c, mem, adr, at, tk, mo) {} |
1 | 419 |
virtual int Opcode() const; |
420 |
virtual const Type *Value( PhaseTransform *phase ) const; |
|
421 |
virtual Node *Identity( PhaseTransform *phase ); |
|
422 |
virtual bool depends_only_on_test() const { return true; } |
|
590
2954744d7bba
6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents:
589
diff
changeset
|
423 |
|
2954744d7bba
6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents:
589
diff
changeset
|
424 |
// Polymorphic factory method: |
2954744d7bba
6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents:
589
diff
changeset
|
425 |
static Node* make( PhaseGVN& gvn, Node *mem, Node *adr, const TypePtr* at, |
2954744d7bba
6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents:
589
diff
changeset
|
426 |
const TypeKlassPtr *tk = TypeKlassPtr::OBJECT ); |
1 | 427 |
}; |
428 |
||
590
2954744d7bba
6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents:
589
diff
changeset
|
429 |
//------------------------------LoadNKlassNode--------------------------------- |
2954744d7bba
6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents:
589
diff
changeset
|
430 |
// Load a narrow Klass from an object. |
2954744d7bba
6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents:
589
diff
changeset
|
431 |
class LoadNKlassNode : public LoadNNode { |
2954744d7bba
6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents:
589
diff
changeset
|
432 |
public: |
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
433 |
LoadNKlassNode(Node *c, Node *mem, Node *adr, const TypePtr *at, const TypeNarrowKlass *tk, MemOrd mo) |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
434 |
: LoadNNode(c, mem, adr, at, tk, mo) {} |
590
2954744d7bba
6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents:
589
diff
changeset
|
435 |
virtual int Opcode() const; |
2954744d7bba
6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents:
589
diff
changeset
|
436 |
virtual uint ideal_reg() const { return Op_RegN; } |
13969
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13886
diff
changeset
|
437 |
virtual int store_Opcode() const { return Op_StoreNKlass; } |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13886
diff
changeset
|
438 |
virtual BasicType memory_type() const { return T_NARROWKLASS; } |
590
2954744d7bba
6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents:
589
diff
changeset
|
439 |
|
2954744d7bba
6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents:
589
diff
changeset
|
440 |
virtual const Type *Value( PhaseTransform *phase ) const; |
2954744d7bba
6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents:
589
diff
changeset
|
441 |
virtual Node *Identity( PhaseTransform *phase ); |
2954744d7bba
6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents:
589
diff
changeset
|
442 |
virtual bool depends_only_on_test() const { return true; } |
2954744d7bba
6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents:
589
diff
changeset
|
443 |
}; |
2954744d7bba
6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents:
589
diff
changeset
|
444 |
|
2954744d7bba
6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents:
589
diff
changeset
|
445 |
|
1 | 446 |
//------------------------------StoreNode-------------------------------------- |
447 |
// Store value; requires Store, Address and Value |
|
448 |
class StoreNode : public MemNode { |
|
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
449 |
private: |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
450 |
// On platforms with weak memory ordering (e.g., PPC, Ia64) we distinguish |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
451 |
// stores that can be reordered, and such requiring release semantics to |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
452 |
// adhere to the Java specification. The required behaviour is stored in |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
453 |
// this field. |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
454 |
const MemOrd _mo; |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
455 |
// Needed for proper cloning. |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
456 |
virtual uint size_of() const { return sizeof(*this); } |
1 | 457 |
protected: |
458 |
virtual uint cmp( const Node &n ) const; |
|
459 |
virtual bool depends_only_on_test() const { return false; } |
|
460 |
||
461 |
Node *Ideal_masked_input (PhaseGVN *phase, uint mask); |
|
462 |
Node *Ideal_sign_extended_input(PhaseGVN *phase, int num_bits); |
|
463 |
||
464 |
public: |
|
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
465 |
// We must ensure that stores of object references will be visible |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
466 |
// only after the object's initialization. So the callers of this |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
467 |
// procedure must indicate that the store requires `release' |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
468 |
// semantics, if the stored value is an object reference that might |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
469 |
// point to a new object and may become externally visible. |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
470 |
StoreNode(Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val, MemOrd mo) |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
471 |
: MemNode(c, mem, adr, at, val), _mo(mo) { |
1 | 472 |
init_class_id(Class_Store); |
473 |
} |
|
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
474 |
StoreNode(Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val, Node *oop_store, MemOrd mo) |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
475 |
: MemNode(c, mem, adr, at, val, oop_store), _mo(mo) { |
1 | 476 |
init_class_id(Class_Store); |
477 |
} |
|
478 |
||
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
479 |
inline bool is_unordered() const { return !is_release(); } |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
480 |
inline bool is_release() const { |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
481 |
assert((_mo == unordered || _mo == release), "unexpected"); |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
482 |
return _mo == release; |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
483 |
} |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
484 |
|
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
485 |
// Conservatively release stores of object references in order to |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
486 |
// ensure visibility of object initialization. |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
487 |
static inline MemOrd release_if_reference(const BasicType t) { |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
488 |
const MemOrd mo = (t == T_ARRAY || |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
489 |
t == T_ADDRESS || // Might be the address of an object reference (`boxing'). |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
490 |
t == T_OBJECT) ? release : unordered; |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
491 |
return mo; |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
492 |
} |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
493 |
|
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
494 |
// Polymorphic factory method |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
495 |
// |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
496 |
// We must ensure that stores of object references will be visible |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
497 |
// only after the object's initialization. So the callers of this |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
498 |
// procedure must indicate that the store requires `release' |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
499 |
// semantics, if the stored value is an object reference that might |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
500 |
// point to a new object and may become externally visible. |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
501 |
static StoreNode* make(PhaseGVN& gvn, Node *c, Node *mem, Node *adr, |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
502 |
const TypePtr* at, Node *val, BasicType bt, MemOrd mo); |
1 | 503 |
|
504 |
virtual uint hash() const; // Check the type |
|
505 |
||
506 |
// If the store is to Field memory and the pointer is non-null, we can |
|
507 |
// zero out the control input. |
|
508 |
virtual Node *Ideal(PhaseGVN *phase, bool can_reshape); |
|
509 |
||
510 |
// Compute a new Type for this node. Basically we just do the pre-check, |
|
511 |
// then call the virtual add() to set the type. |
|
512 |
virtual const Type *Value( PhaseTransform *phase ) const; |
|
513 |
||
514 |
// Check for identity function on memory (Load then Store at same address) |
|
515 |
virtual Node *Identity( PhaseTransform *phase ); |
|
516 |
||
517 |
// Do not match memory edge |
|
518 |
virtual uint match_edge(uint idx) const; |
|
519 |
||
520 |
virtual const Type *bottom_type() const; // returns Type::MEMORY |
|
521 |
||
522 |
// Map a store opcode to its corresponding own opcode, trivially. |
|
523 |
virtual int store_Opcode() const { return Opcode(); } |
|
524 |
||
525 |
// have all possible loads of the value stored been optimized away? |
|
526 |
bool value_never_loaded(PhaseTransform *phase) const; |
|
527 |
}; |
|
528 |
||
529 |
//------------------------------StoreBNode------------------------------------- |
|
530 |
// Store byte to memory |
|
531 |
class StoreBNode : public StoreNode { |
|
532 |
public: |
|
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
533 |
StoreBNode(Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val, MemOrd mo) |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
534 |
: StoreNode(c, mem, adr, at, val, mo) {} |
1 | 535 |
virtual int Opcode() const; |
536 |
virtual Node *Ideal(PhaseGVN *phase, bool can_reshape); |
|
537 |
virtual BasicType memory_type() const { return T_BYTE; } |
|
538 |
}; |
|
539 |
||
540 |
//------------------------------StoreCNode------------------------------------- |
|
541 |
// Store char/short to memory |
|
542 |
class StoreCNode : public StoreNode { |
|
543 |
public: |
|
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
544 |
StoreCNode(Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val, MemOrd mo) |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
545 |
: StoreNode(c, mem, adr, at, val, mo) {} |
1 | 546 |
virtual int Opcode() const; |
547 |
virtual Node *Ideal(PhaseGVN *phase, bool can_reshape); |
|
548 |
virtual BasicType memory_type() const { return T_CHAR; } |
|
549 |
}; |
|
550 |
||
551 |
//------------------------------StoreINode------------------------------------- |
|
552 |
// Store int to memory |
|
553 |
class StoreINode : public StoreNode { |
|
554 |
public: |
|
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
555 |
StoreINode(Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val, MemOrd mo) |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
556 |
: StoreNode(c, mem, adr, at, val, mo) {} |
1 | 557 |
virtual int Opcode() const; |
558 |
virtual BasicType memory_type() const { return T_INT; } |
|
559 |
}; |
|
560 |
||
561 |
//------------------------------StoreLNode------------------------------------- |
|
562 |
// Store long to memory |
|
563 |
class StoreLNode : public StoreNode { |
|
564 |
virtual uint hash() const { return StoreNode::hash() + _require_atomic_access; } |
|
565 |
virtual uint cmp( const Node &n ) const { |
|
566 |
return _require_atomic_access == ((StoreLNode&)n)._require_atomic_access |
|
567 |
&& StoreNode::cmp(n); |
|
568 |
} |
|
569 |
virtual uint size_of() const { return sizeof(*this); } |
|
570 |
const bool _require_atomic_access; // is piecewise store forbidden? |
|
571 |
||
572 |
public: |
|
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
573 |
StoreLNode(Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val, MemOrd mo, bool require_atomic_access = false) |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
574 |
: StoreNode(c, mem, adr, at, val, mo), _require_atomic_access(require_atomic_access) {} |
1 | 575 |
virtual int Opcode() const; |
576 |
virtual BasicType memory_type() const { return T_LONG; } |
|
577 |
bool require_atomic_access() { return _require_atomic_access; } |
|
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
578 |
static StoreLNode* make_atomic(Compile *C, Node* ctl, Node* mem, Node* adr, const TypePtr* adr_type, Node* val, MemOrd mo); |
1 | 579 |
#ifndef PRODUCT |
580 |
virtual void dump_spec(outputStream *st) const { |
|
581 |
StoreNode::dump_spec(st); |
|
582 |
if (_require_atomic_access) st->print(" Atomic!"); |
|
583 |
} |
|
584 |
#endif |
|
585 |
}; |
|
586 |
||
587 |
//------------------------------StoreFNode------------------------------------- |
|
588 |
// Store float to memory |
|
589 |
class StoreFNode : public StoreNode { |
|
590 |
public: |
|
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
591 |
StoreFNode(Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val, MemOrd mo) |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
592 |
: StoreNode(c, mem, adr, at, val, mo) {} |
1 | 593 |
virtual int Opcode() const; |
594 |
virtual BasicType memory_type() const { return T_FLOAT; } |
|
595 |
}; |
|
596 |
||
597 |
//------------------------------StoreDNode------------------------------------- |
|
598 |
// Store double to memory |
|
599 |
class StoreDNode : public StoreNode { |
|
600 |
public: |
|
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
601 |
StoreDNode(Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val, MemOrd mo) |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
602 |
: StoreNode(c, mem, adr, at, val, mo) {} |
1 | 603 |
virtual int Opcode() const; |
604 |
virtual BasicType memory_type() const { return T_DOUBLE; } |
|
605 |
}; |
|
606 |
||
607 |
//------------------------------StorePNode------------------------------------- |
|
608 |
// Store pointer to memory |
|
609 |
class StorePNode : public StoreNode { |
|
610 |
public: |
|
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
611 |
StorePNode(Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val, MemOrd mo) |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
612 |
: StoreNode(c, mem, adr, at, val, mo) {} |
1 | 613 |
virtual int Opcode() const; |
614 |
virtual BasicType memory_type() const { return T_ADDRESS; } |
|
615 |
}; |
|
616 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
247
diff
changeset
|
617 |
//------------------------------StoreNNode------------------------------------- |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
247
diff
changeset
|
618 |
// Store narrow oop to memory |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
247
diff
changeset
|
619 |
class StoreNNode : public StoreNode { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
247
diff
changeset
|
620 |
public: |
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
621 |
StoreNNode(Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val, MemOrd mo) |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
622 |
: StoreNode(c, mem, adr, at, val, mo) {} |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
247
diff
changeset
|
623 |
virtual int Opcode() const; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
247
diff
changeset
|
624 |
virtual BasicType memory_type() const { return T_NARROWOOP; } |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
247
diff
changeset
|
625 |
}; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
247
diff
changeset
|
626 |
|
13969
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13886
diff
changeset
|
627 |
//------------------------------StoreNKlassNode-------------------------------------- |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13886
diff
changeset
|
628 |
// Store narrow klass to memory |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13886
diff
changeset
|
629 |
class StoreNKlassNode : public StoreNNode { |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13886
diff
changeset
|
630 |
public: |
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
631 |
StoreNKlassNode(Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val, MemOrd mo) |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
632 |
: StoreNNode(c, mem, adr, at, val, mo) {} |
13969
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13886
diff
changeset
|
633 |
virtual int Opcode() const; |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13886
diff
changeset
|
634 |
virtual BasicType memory_type() const { return T_NARROWKLASS; } |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13886
diff
changeset
|
635 |
}; |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13886
diff
changeset
|
636 |
|
1 | 637 |
//------------------------------StoreCMNode----------------------------------- |
638 |
// Store card-mark byte to memory for CM |
|
639 |
// The last StoreCM before a SafePoint must be preserved and occur after its "oop" store |
|
640 |
// Preceeding equivalent StoreCMs may be eliminated. |
|
641 |
class StoreCMNode : public StoreNode { |
|
3904
007a45522a7f
6877254: Server vm crashes with no branches off of store slice" when run with CMS and UseSuperWord(default)
cfang
parents:
2348
diff
changeset
|
642 |
private: |
4746
c1d5f1b38289
6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents:
4470
diff
changeset
|
643 |
virtual uint hash() const { return StoreNode::hash() + _oop_alias_idx; } |
c1d5f1b38289
6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents:
4470
diff
changeset
|
644 |
virtual uint cmp( const Node &n ) const { |
c1d5f1b38289
6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents:
4470
diff
changeset
|
645 |
return _oop_alias_idx == ((StoreCMNode&)n)._oop_alias_idx |
c1d5f1b38289
6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents:
4470
diff
changeset
|
646 |
&& StoreNode::cmp(n); |
c1d5f1b38289
6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents:
4470
diff
changeset
|
647 |
} |
c1d5f1b38289
6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents:
4470
diff
changeset
|
648 |
virtual uint size_of() const { return sizeof(*this); } |
3904
007a45522a7f
6877254: Server vm crashes with no branches off of store slice" when run with CMS and UseSuperWord(default)
cfang
parents:
2348
diff
changeset
|
649 |
int _oop_alias_idx; // The alias_idx of OopStore |
4746
c1d5f1b38289
6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents:
4470
diff
changeset
|
650 |
|
1 | 651 |
public: |
4746
c1d5f1b38289
6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents:
4470
diff
changeset
|
652 |
StoreCMNode( Node *c, Node *mem, Node *adr, const TypePtr* at, Node *val, Node *oop_store, int oop_alias_idx ) : |
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
653 |
StoreNode(c, mem, adr, at, val, oop_store, MemNode::release), |
4746
c1d5f1b38289
6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents:
4470
diff
changeset
|
654 |
_oop_alias_idx(oop_alias_idx) { |
c1d5f1b38289
6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents:
4470
diff
changeset
|
655 |
assert(_oop_alias_idx >= Compile::AliasIdxRaw || |
c1d5f1b38289
6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents:
4470
diff
changeset
|
656 |
_oop_alias_idx == Compile::AliasIdxBot && Compile::current()->AliasLevel() == 0, |
c1d5f1b38289
6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents:
4470
diff
changeset
|
657 |
"bad oop alias idx"); |
c1d5f1b38289
6920346: G1: "must avoid base_memory and AliasIdxTop"
never
parents:
4470
diff
changeset
|
658 |
} |
1 | 659 |
virtual int Opcode() const; |
660 |
virtual Node *Identity( PhaseTransform *phase ); |
|
3904
007a45522a7f
6877254: Server vm crashes with no branches off of store slice" when run with CMS and UseSuperWord(default)
cfang
parents:
2348
diff
changeset
|
661 |
virtual Node *Ideal(PhaseGVN *phase, bool can_reshape); |
1 | 662 |
virtual const Type *Value( PhaseTransform *phase ) const; |
663 |
virtual BasicType memory_type() const { return T_VOID; } // unspecific |
|
3904
007a45522a7f
6877254: Server vm crashes with no branches off of store slice" when run with CMS and UseSuperWord(default)
cfang
parents:
2348
diff
changeset
|
664 |
int oop_alias_idx() const { return _oop_alias_idx; } |
1 | 665 |
}; |
666 |
||
667 |
//------------------------------LoadPLockedNode--------------------------------- |
|
668 |
// Load-locked a pointer from memory (either object or array). |
|
669 |
// On Sparc & Intel this is implemented as a normal pointer load. |
|
670 |
// On PowerPC and friends it's a real load-locked. |
|
671 |
class LoadPLockedNode : public LoadPNode { |
|
672 |
public: |
|
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
673 |
LoadPLockedNode(Node *c, Node *mem, Node *adr, MemOrd mo) |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
17383
diff
changeset
|
674 |
: LoadPNode(c, mem, adr, TypeRawPtr::BOTTOM, TypeRawPtr::BOTTOM, mo) {} |
1 | 675 |
virtual int Opcode() const; |
676 |
virtual int store_Opcode() const { return Op_StorePConditional; } |
|
677 |
virtual bool depends_only_on_test() const { return true; } |
|
678 |
}; |
|
679 |
||
680 |
//------------------------------SCMemProjNode--------------------------------------- |
|
681 |
// This class defines a projection of the memory state of a store conditional node. |
|
682 |
// These nodes return a value, but also update memory. |
|
683 |
class SCMemProjNode : public ProjNode { |
|
684 |
public: |
|
685 |
enum {SCMEMPROJCON = (uint)-2}; |
|
686 |
SCMemProjNode( Node *src) : ProjNode( src, SCMEMPROJCON) { } |
|
687 |
virtual int Opcode() const; |
|
688 |
virtual bool is_CFG() const { return false; } |
|
689 |
virtual const Type *bottom_type() const {return Type::MEMORY;} |
|
690 |
virtual const TypePtr *adr_type() const { return in(0)->in(MemNode::Memory)->adr_type();} |
|
691 |
virtual uint ideal_reg() const { return 0;} // memory projections don't have a register |
|
692 |
virtual const Type *Value( PhaseTransform *phase ) const; |
|
693 |
#ifndef PRODUCT |
|
694 |
virtual void dump_spec(outputStream *st) const {}; |
|
695 |
#endif |
|
696 |
}; |
|
697 |
||
698 |
//------------------------------LoadStoreNode--------------------------- |
|
961
7fb3b13d4205
6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents:
670
diff
changeset
|
699 |
// Note: is_Mem() method returns 'true' for this class. |
1 | 700 |
class LoadStoreNode : public Node { |
13886
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
701 |
private: |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
702 |
const Type* const _type; // What kind of value is loaded? |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
703 |
const TypePtr* _adr_type; // What kind of memory is being addressed? |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
704 |
virtual uint size_of() const; // Size is bigger |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
705 |
public: |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
706 |
LoadStoreNode( Node *c, Node *mem, Node *adr, Node *val, const TypePtr* at, const Type* rt, uint required ); |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
707 |
virtual bool depends_only_on_test() const { return false; } |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
708 |
virtual uint match_edge(uint idx) const { return idx == MemNode::Address || idx == MemNode::ValueIn; } |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
709 |
|
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
710 |
virtual const Type *bottom_type() const { return _type; } |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
711 |
virtual uint ideal_reg() const; |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
712 |
virtual const class TypePtr *adr_type() const { return _adr_type; } // returns bottom_type of address |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
713 |
|
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
714 |
bool result_not_used() const; |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
715 |
}; |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
716 |
|
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
717 |
class LoadStoreConditionalNode : public LoadStoreNode { |
1 | 718 |
public: |
719 |
enum { |
|
720 |
ExpectedIn = MemNode::ValueIn+1 // One more input than MemNode |
|
721 |
}; |
|
13886
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
722 |
LoadStoreConditionalNode(Node *c, Node *mem, Node *adr, Node *val, Node *ex); |
1 | 723 |
}; |
724 |
||
725 |
//------------------------------StorePConditionalNode--------------------------- |
|
726 |
// Conditionally store pointer to memory, if no change since prior |
|
727 |
// load-locked. Sets flags for success or failure of the store. |
|
13886
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
728 |
class StorePConditionalNode : public LoadStoreConditionalNode { |
1 | 729 |
public: |
13886
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
730 |
StorePConditionalNode( Node *c, Node *mem, Node *adr, Node *val, Node *ll ) : LoadStoreConditionalNode(c, mem, adr, val, ll) { } |
1 | 731 |
virtual int Opcode() const; |
732 |
// Produces flags |
|
733 |
virtual uint ideal_reg() const { return Op_RegFlags; } |
|
734 |
}; |
|
735 |
||
1500
bea9a90f3e8f
6462850: generate biased locking code in C2 ideal graph
kvn
parents:
1398
diff
changeset
|
736 |
//------------------------------StoreIConditionalNode--------------------------- |
bea9a90f3e8f
6462850: generate biased locking code in C2 ideal graph
kvn
parents:
1398
diff
changeset
|
737 |
// Conditionally store int to memory, if no change since prior |
bea9a90f3e8f
6462850: generate biased locking code in C2 ideal graph
kvn
parents:
1398
diff
changeset
|
738 |
// load-locked. Sets flags for success or failure of the store. |
13886
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
739 |
class StoreIConditionalNode : public LoadStoreConditionalNode { |
1500
bea9a90f3e8f
6462850: generate biased locking code in C2 ideal graph
kvn
parents:
1398
diff
changeset
|
740 |
public: |
13886
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
741 |
StoreIConditionalNode( Node *c, Node *mem, Node *adr, Node *val, Node *ii ) : LoadStoreConditionalNode(c, mem, adr, val, ii) { } |
1500
bea9a90f3e8f
6462850: generate biased locking code in C2 ideal graph
kvn
parents:
1398
diff
changeset
|
742 |
virtual int Opcode() const; |
bea9a90f3e8f
6462850: generate biased locking code in C2 ideal graph
kvn
parents:
1398
diff
changeset
|
743 |
// Produces flags |
bea9a90f3e8f
6462850: generate biased locking code in C2 ideal graph
kvn
parents:
1398
diff
changeset
|
744 |
virtual uint ideal_reg() const { return Op_RegFlags; } |
bea9a90f3e8f
6462850: generate biased locking code in C2 ideal graph
kvn
parents:
1398
diff
changeset
|
745 |
}; |
bea9a90f3e8f
6462850: generate biased locking code in C2 ideal graph
kvn
parents:
1398
diff
changeset
|
746 |
|
1 | 747 |
//------------------------------StoreLConditionalNode--------------------------- |
748 |
// Conditionally store long to memory, if no change since prior |
|
749 |
// load-locked. Sets flags for success or failure of the store. |
|
13886
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
750 |
class StoreLConditionalNode : public LoadStoreConditionalNode { |
1 | 751 |
public: |
13886
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
752 |
StoreLConditionalNode( Node *c, Node *mem, Node *adr, Node *val, Node *ll ) : LoadStoreConditionalNode(c, mem, adr, val, ll) { } |
1 | 753 |
virtual int Opcode() const; |
1500
bea9a90f3e8f
6462850: generate biased locking code in C2 ideal graph
kvn
parents:
1398
diff
changeset
|
754 |
// Produces flags |
bea9a90f3e8f
6462850: generate biased locking code in C2 ideal graph
kvn
parents:
1398
diff
changeset
|
755 |
virtual uint ideal_reg() const { return Op_RegFlags; } |
1 | 756 |
}; |
757 |
||
758 |
||
759 |
//------------------------------CompareAndSwapLNode--------------------------- |
|
13886
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
760 |
class CompareAndSwapLNode : public LoadStoreConditionalNode { |
1 | 761 |
public: |
13886
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
762 |
CompareAndSwapLNode( Node *c, Node *mem, Node *adr, Node *val, Node *ex) : LoadStoreConditionalNode(c, mem, adr, val, ex) { } |
1 | 763 |
virtual int Opcode() const; |
764 |
}; |
|
765 |
||
766 |
||
767 |
//------------------------------CompareAndSwapINode--------------------------- |
|
13886
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
768 |
class CompareAndSwapINode : public LoadStoreConditionalNode { |
1 | 769 |
public: |
13886
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
770 |
CompareAndSwapINode( Node *c, Node *mem, Node *adr, Node *val, Node *ex) : LoadStoreConditionalNode(c, mem, adr, val, ex) { } |
1 | 771 |
virtual int Opcode() const; |
772 |
}; |
|
773 |
||
774 |
||
775 |
//------------------------------CompareAndSwapPNode--------------------------- |
|
13886
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
776 |
class CompareAndSwapPNode : public LoadStoreConditionalNode { |
1 | 777 |
public: |
13886
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
778 |
CompareAndSwapPNode( Node *c, Node *mem, Node *adr, Node *val, Node *ex) : LoadStoreConditionalNode(c, mem, adr, val, ex) { } |
1 | 779 |
virtual int Opcode() const; |
780 |
}; |
|
781 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
247
diff
changeset
|
782 |
//------------------------------CompareAndSwapNNode--------------------------- |
13886
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
783 |
class CompareAndSwapNNode : public LoadStoreConditionalNode { |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
784 |
public: |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
785 |
CompareAndSwapNNode( Node *c, Node *mem, Node *adr, Node *val, Node *ex) : LoadStoreConditionalNode(c, mem, adr, val, ex) { } |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
786 |
virtual int Opcode() const; |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
787 |
}; |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
788 |
|
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
789 |
//------------------------------GetAndAddINode--------------------------- |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
790 |
class GetAndAddINode : public LoadStoreNode { |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
791 |
public: |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
792 |
GetAndAddINode( Node *c, Node *mem, Node *adr, Node *val, const TypePtr* at ) : LoadStoreNode(c, mem, adr, val, at, TypeInt::INT, 4) { } |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
793 |
virtual int Opcode() const; |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
794 |
}; |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
795 |
|
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
796 |
//------------------------------GetAndAddLNode--------------------------- |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
797 |
class GetAndAddLNode : public LoadStoreNode { |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
247
diff
changeset
|
798 |
public: |
13886
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
799 |
GetAndAddLNode( Node *c, Node *mem, Node *adr, Node *val, const TypePtr* at ) : LoadStoreNode(c, mem, adr, val, at, TypeLong::LONG, 4) { } |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
800 |
virtual int Opcode() const; |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
801 |
}; |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
802 |
|
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
803 |
|
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
804 |
//------------------------------GetAndSetINode--------------------------- |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
805 |
class GetAndSetINode : public LoadStoreNode { |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
806 |
public: |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
807 |
GetAndSetINode( Node *c, Node *mem, Node *adr, Node *val, const TypePtr* at ) : LoadStoreNode(c, mem, adr, val, at, TypeInt::INT, 4) { } |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
808 |
virtual int Opcode() const; |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
809 |
}; |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
810 |
|
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
811 |
//------------------------------GetAndSetINode--------------------------- |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
812 |
class GetAndSetLNode : public LoadStoreNode { |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
813 |
public: |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
814 |
GetAndSetLNode( Node *c, Node *mem, Node *adr, Node *val, const TypePtr* at ) : LoadStoreNode(c, mem, adr, val, at, TypeLong::LONG, 4) { } |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
815 |
virtual int Opcode() const; |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
816 |
}; |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
817 |
|
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
818 |
//------------------------------GetAndSetPNode--------------------------- |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
819 |
class GetAndSetPNode : public LoadStoreNode { |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
820 |
public: |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
821 |
GetAndSetPNode( Node *c, Node *mem, Node *adr, Node *val, const TypePtr* at, const Type* t ) : LoadStoreNode(c, mem, adr, val, at, t, 4) { } |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
822 |
virtual int Opcode() const; |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
823 |
}; |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
824 |
|
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
825 |
//------------------------------GetAndSetNNode--------------------------- |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
826 |
class GetAndSetNNode : public LoadStoreNode { |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
827 |
public: |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
12957
diff
changeset
|
828 |
GetAndSetNNode( Node *c, Node *mem, Node *adr, Node *val, const TypePtr* at, const Type* t ) : LoadStoreNode(c, mem, adr, val, at, t, 4) { } |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
247
diff
changeset
|
829 |
virtual int Opcode() const; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
247
diff
changeset
|
830 |
}; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
247
diff
changeset
|
831 |
|
1 | 832 |
//------------------------------ClearArray------------------------------------- |
833 |
class ClearArrayNode: public Node { |
|
834 |
public: |
|
4470
1e6edcab3109
6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
3905
diff
changeset
|
835 |
ClearArrayNode( Node *ctrl, Node *arymem, Node *word_cnt, Node *base ) |
1e6edcab3109
6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
3905
diff
changeset
|
836 |
: Node(ctrl,arymem,word_cnt,base) { |
1e6edcab3109
6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
3905
diff
changeset
|
837 |
init_class_id(Class_ClearArray); |
1e6edcab3109
6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
3905
diff
changeset
|
838 |
} |
1 | 839 |
virtual int Opcode() const; |
840 |
virtual const Type *bottom_type() const { return Type::MEMORY; } |
|
841 |
// ClearArray modifies array elements, and so affects only the |
|
842 |
// array memory addressed by the bottom_type of its base address. |
|
843 |
virtual const class TypePtr *adr_type() const; |
|
844 |
virtual Node *Identity( PhaseTransform *phase ); |
|
845 |
virtual Node *Ideal(PhaseGVN *phase, bool can_reshape); |
|
846 |
virtual uint match_edge(uint idx) const; |
|
847 |
||
848 |
// Clear the given area of an object or array. |
|
849 |
// The start offset must always be aligned mod BytesPerInt. |
|
850 |
// The end offset must always be aligned mod BytesPerLong. |
|
851 |
// Return the new memory. |
|
852 |
static Node* clear_memory(Node* control, Node* mem, Node* dest, |
|
853 |
intptr_t start_offset, |
|
854 |
intptr_t end_offset, |
|
855 |
PhaseGVN* phase); |
|
856 |
static Node* clear_memory(Node* control, Node* mem, Node* dest, |
|
857 |
intptr_t start_offset, |
|
858 |
Node* end_offset, |
|
859 |
PhaseGVN* phase); |
|
860 |
static Node* clear_memory(Node* control, Node* mem, Node* dest, |
|
861 |
Node* start_offset, |
|
862 |
Node* end_offset, |
|
863 |
PhaseGVN* phase); |
|
4470
1e6edcab3109
6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
3905
diff
changeset
|
864 |
// Return allocation input memory edge if it is different instance |
1e6edcab3109
6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
3905
diff
changeset
|
865 |
// or itself if it is the one we are looking for. |
1e6edcab3109
6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
3905
diff
changeset
|
866 |
static bool step_through(Node** np, uint instance_id, PhaseTransform* phase); |
1 | 867 |
}; |
868 |
||
8879
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
869 |
//------------------------------StrIntrinsic------------------------------- |
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
870 |
// Base class for Ideal nodes used in String instrinsic code. |
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
871 |
class StrIntrinsicNode: public Node { |
1 | 872 |
public: |
8879
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
873 |
StrIntrinsicNode(Node* control, Node* char_array_mem, |
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
874 |
Node* s1, Node* c1, Node* s2, Node* c2): |
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
875 |
Node(control, char_array_mem, s1, c1, s2, c2) { |
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
876 |
} |
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
877 |
|
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
878 |
StrIntrinsicNode(Node* control, Node* char_array_mem, |
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
879 |
Node* s1, Node* s2, Node* c): |
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
880 |
Node(control, char_array_mem, s1, s2, c) { |
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
881 |
} |
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
882 |
|
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
883 |
StrIntrinsicNode(Node* control, Node* char_array_mem, |
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
884 |
Node* s1, Node* s2): |
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
885 |
Node(control, char_array_mem, s1, s2) { |
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
886 |
} |
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
887 |
|
1 | 888 |
virtual bool depends_only_on_test() const { return false; } |
3905
7d725029ac85
6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents:
3904
diff
changeset
|
889 |
virtual const TypePtr* adr_type() const { return TypeAryPtr::CHARS; } |
1 | 890 |
virtual uint match_edge(uint idx) const; |
891 |
virtual uint ideal_reg() const { return Op_RegI; } |
|
892 |
virtual Node *Ideal(PhaseGVN *phase, bool can_reshape); |
|
11191 | 893 |
virtual const Type *Value(PhaseTransform *phase) const; |
1 | 894 |
}; |
895 |
||
8879
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
896 |
//------------------------------StrComp------------------------------------- |
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
897 |
class StrCompNode: public StrIntrinsicNode { |
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
898 |
public: |
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
899 |
StrCompNode(Node* control, Node* char_array_mem, |
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
900 |
Node* s1, Node* c1, Node* s2, Node* c2): |
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
901 |
StrIntrinsicNode(control, char_array_mem, s1, c1, s2, c2) {}; |
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
902 |
virtual int Opcode() const; |
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
903 |
virtual const Type* bottom_type() const { return TypeInt::INT; } |
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
904 |
}; |
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
905 |
|
2348 | 906 |
//------------------------------StrEquals------------------------------------- |
8879
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
907 |
class StrEqualsNode: public StrIntrinsicNode { |
2348 | 908 |
public: |
3905
7d725029ac85
6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents:
3904
diff
changeset
|
909 |
StrEqualsNode(Node* control, Node* char_array_mem, |
8879
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
910 |
Node* s1, Node* s2, Node* c): |
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
911 |
StrIntrinsicNode(control, char_array_mem, s1, s2, c) {}; |
2348 | 912 |
virtual int Opcode() const; |
913 |
virtual const Type* bottom_type() const { return TypeInt::BOOL; } |
|
914 |
}; |
|
915 |
||
916 |
//------------------------------StrIndexOf------------------------------------- |
|
8879
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
917 |
class StrIndexOfNode: public StrIntrinsicNode { |
2348 | 918 |
public: |
3905
7d725029ac85
6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents:
3904
diff
changeset
|
919 |
StrIndexOfNode(Node* control, Node* char_array_mem, |
8879
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
920 |
Node* s1, Node* c1, Node* s2, Node* c2): |
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
921 |
StrIntrinsicNode(control, char_array_mem, s1, c1, s2, c2) {}; |
2348 | 922 |
virtual int Opcode() const; |
923 |
virtual const Type* bottom_type() const { return TypeInt::INT; } |
|
924 |
}; |
|
925 |
||
595
a2be4c89de81
6695049: (coll) Create an x86 intrinsic for Arrays.equals
rasbold
parents:
590
diff
changeset
|
926 |
//------------------------------AryEq--------------------------------------- |
8879
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
927 |
class AryEqNode: public StrIntrinsicNode { |
595
a2be4c89de81
6695049: (coll) Create an x86 intrinsic for Arrays.equals
rasbold
parents:
590
diff
changeset
|
928 |
public: |
8879
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
929 |
AryEqNode(Node* control, Node* char_array_mem, Node* s1, Node* s2): |
e6ae9a7aa72a
7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents:
7397
diff
changeset
|
930 |
StrIntrinsicNode(control, char_array_mem, s1, s2) {}; |
595
a2be4c89de81
6695049: (coll) Create an x86 intrinsic for Arrays.equals
rasbold
parents:
590
diff
changeset
|
931 |
virtual int Opcode() const; |
a2be4c89de81
6695049: (coll) Create an x86 intrinsic for Arrays.equals
rasbold
parents:
590
diff
changeset
|
932 |
virtual const Type* bottom_type() const { return TypeInt::BOOL; } |
a2be4c89de81
6695049: (coll) Create an x86 intrinsic for Arrays.equals
rasbold
parents:
590
diff
changeset
|
933 |
}; |
a2be4c89de81
6695049: (coll) Create an x86 intrinsic for Arrays.equals
rasbold
parents:
590
diff
changeset
|
934 |
|
15242
695bb216be99
6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents:
13974
diff
changeset
|
935 |
|
695bb216be99
6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents:
13974
diff
changeset
|
936 |
//------------------------------EncodeISOArray-------------------------------- |
695bb216be99
6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents:
13974
diff
changeset
|
937 |
// encode char[] to byte[] in ISO_8859_1 |
695bb216be99
6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents:
13974
diff
changeset
|
938 |
class EncodeISOArrayNode: public Node { |
695bb216be99
6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents:
13974
diff
changeset
|
939 |
public: |
695bb216be99
6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents:
13974
diff
changeset
|
940 |
EncodeISOArrayNode(Node *control, Node* arymem, Node* s1, Node* s2, Node* c): Node(control, arymem, s1, s2, c) {}; |
695bb216be99
6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents:
13974
diff
changeset
|
941 |
virtual int Opcode() const; |
695bb216be99
6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents:
13974
diff
changeset
|
942 |
virtual bool depends_only_on_test() const { return false; } |
695bb216be99
6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents:
13974
diff
changeset
|
943 |
virtual const Type* bottom_type() const { return TypeInt::INT; } |
695bb216be99
6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents:
13974
diff
changeset
|
944 |
virtual const TypePtr* adr_type() const { return TypePtr::BOTTOM; } |
695bb216be99
6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents:
13974
diff
changeset
|
945 |
virtual uint match_edge(uint idx) const; |
695bb216be99
6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents:
13974
diff
changeset
|
946 |
virtual uint ideal_reg() const { return Op_RegI; } |
695bb216be99
6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents:
13974
diff
changeset
|
947 |
virtual Node *Ideal(PhaseGVN *phase, bool can_reshape); |
695bb216be99
6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents:
13974
diff
changeset
|
948 |
virtual const Type *Value(PhaseTransform *phase) const; |
695bb216be99
6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents:
13974
diff
changeset
|
949 |
}; |
695bb216be99
6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents:
13974
diff
changeset
|
950 |
|
1 | 951 |
//------------------------------MemBar----------------------------------------- |
952 |
// There are different flavors of Memory Barriers to match the Java Memory |
|
953 |
// Model. Monitor-enter and volatile-load act as Aquires: no following ref |
|
954 |
// can be moved to before them. We insert a MemBar-Acquire after a FastLock or |
|
955 |
// volatile-load. Monitor-exit and volatile-store act as Release: no |
|
2131 | 956 |
// preceding ref can be moved to after them. We insert a MemBar-Release |
1 | 957 |
// before a FastUnlock or volatile-store. All volatiles need to be |
958 |
// serialized, so we follow all volatile-stores with a MemBar-Volatile to |
|
2131 | 959 |
// separate it from any following volatile-load. |
1 | 960 |
class MemBarNode: public MultiNode { |
961 |
virtual uint hash() const ; // { return NO_HASH; } |
|
962 |
virtual uint cmp( const Node &n ) const ; // Always fail, except on self |
|
963 |
||
964 |
virtual uint size_of() const { return sizeof(*this); } |
|
965 |
// Memory type this node is serializing. Usually either rawptr or bottom. |
|
966 |
const TypePtr* _adr_type; |
|
967 |
||
968 |
public: |
|
969 |
enum { |
|
970 |
Precedent = TypeFunc::Parms // optional edge to force precedence |
|
971 |
}; |
|
972 |
MemBarNode(Compile* C, int alias_idx, Node* precedent); |
|
973 |
virtual int Opcode() const = 0; |
|
974 |
virtual const class TypePtr *adr_type() const { return _adr_type; } |
|
975 |
virtual const Type *Value( PhaseTransform *phase ) const; |
|
976 |
virtual Node *Ideal(PhaseGVN *phase, bool can_reshape); |
|
977 |
virtual uint match_edge(uint idx) const { return 0; } |
|
978 |
virtual const Type *bottom_type() const { return TypeTuple::MEMBAR; } |
|
979 |
virtual Node *match( const ProjNode *proj, const Matcher *m ); |
|
980 |
// Factory method. Builds a wide or narrow membar. |
|
981 |
// Optional 'precedent' becomes an extra edge if not null. |
|
982 |
static MemBarNode* make(Compile* C, int opcode, |
|
983 |
int alias_idx = Compile::AliasIdxBot, |
|
984 |
Node* precedent = NULL); |
|
985 |
}; |
|
986 |
||
987 |
// "Acquire" - no following ref can move before (but earlier refs can |
|
988 |
// follow, like an early Load stalled in cache). Requires multi-cpu |
|
10262
c5f62d314bee
7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents:
8921
diff
changeset
|
989 |
// visibility. Inserted after a volatile load. |
1 | 990 |
class MemBarAcquireNode: public MemBarNode { |
991 |
public: |
|
992 |
MemBarAcquireNode(Compile* C, int alias_idx, Node* precedent) |
|
993 |
: MemBarNode(C, alias_idx, precedent) {} |
|
994 |
virtual int Opcode() const; |
|
995 |
}; |
|
996 |
||
22855
d637fd28a6c3
8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents:
22851
diff
changeset
|
997 |
// "Acquire" - no following ref can move before (but earlier refs can |
d637fd28a6c3
8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents:
22851
diff
changeset
|
998 |
// follow, like an early Load stalled in cache). Requires multi-cpu |
d637fd28a6c3
8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents:
22851
diff
changeset
|
999 |
// visibility. Inserted independ of any load, as required |
d637fd28a6c3
8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents:
22851
diff
changeset
|
1000 |
// for intrinsic sun.misc.Unsafe.loadFence(). |
d637fd28a6c3
8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents:
22851
diff
changeset
|
1001 |
class LoadFenceNode: public MemBarNode { |
d637fd28a6c3
8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents:
22851
diff
changeset
|
1002 |
public: |
d637fd28a6c3
8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents:
22851
diff
changeset
|
1003 |
LoadFenceNode(Compile* C, int alias_idx, Node* precedent) |
d637fd28a6c3
8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents:
22851
diff
changeset
|
1004 |
: MemBarNode(C, alias_idx, precedent) {} |
d637fd28a6c3
8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents:
22851
diff
changeset
|
1005 |
virtual int Opcode() const; |
d637fd28a6c3
8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents:
22851
diff
changeset
|
1006 |
}; |
d637fd28a6c3
8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents:
22851
diff
changeset
|
1007 |
|
1 | 1008 |
// "Release" - no earlier ref can move after (but later refs can move |
1009 |
// up, like a speculative pipelined cache-hitting Load). Requires |
|
10262
c5f62d314bee
7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents:
8921
diff
changeset
|
1010 |
// multi-cpu visibility. Inserted before a volatile store. |
1 | 1011 |
class MemBarReleaseNode: public MemBarNode { |
1012 |
public: |
|
1013 |
MemBarReleaseNode(Compile* C, int alias_idx, Node* precedent) |
|
1014 |
: MemBarNode(C, alias_idx, precedent) {} |
|
1015 |
virtual int Opcode() const; |
|
1016 |
}; |
|
1017 |
||
22855
d637fd28a6c3
8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents:
22851
diff
changeset
|
1018 |
// "Release" - no earlier ref can move after (but later refs can move |
d637fd28a6c3
8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents:
22851
diff
changeset
|
1019 |
// up, like a speculative pipelined cache-hitting Load). Requires |
d637fd28a6c3
8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents:
22851
diff
changeset
|
1020 |
// multi-cpu visibility. Inserted independent of any store, as required |
d637fd28a6c3
8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents:
22851
diff
changeset
|
1021 |
// for intrinsic sun.misc.Unsafe.storeFence(). |
d637fd28a6c3
8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents:
22851
diff
changeset
|
1022 |
class StoreFenceNode: public MemBarNode { |
d637fd28a6c3
8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents:
22851
diff
changeset
|
1023 |
public: |
d637fd28a6c3
8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents:
22851
diff
changeset
|
1024 |
StoreFenceNode(Compile* C, int alias_idx, Node* precedent) |
d637fd28a6c3
8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents:
22851
diff
changeset
|
1025 |
: MemBarNode(C, alias_idx, precedent) {} |
d637fd28a6c3
8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents:
22851
diff
changeset
|
1026 |
virtual int Opcode() const; |
d637fd28a6c3
8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents:
22851
diff
changeset
|
1027 |
}; |
d637fd28a6c3
8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents:
22851
diff
changeset
|
1028 |
|
10262
c5f62d314bee
7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents:
8921
diff
changeset
|
1029 |
// "Acquire" - no following ref can move before (but earlier refs can |
c5f62d314bee
7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents:
8921
diff
changeset
|
1030 |
// follow, like an early Load stalled in cache). Requires multi-cpu |
c5f62d314bee
7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents:
8921
diff
changeset
|
1031 |
// visibility. Inserted after a FastLock. |
c5f62d314bee
7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents:
8921
diff
changeset
|
1032 |
class MemBarAcquireLockNode: public MemBarNode { |
c5f62d314bee
7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents:
8921
diff
changeset
|
1033 |
public: |
c5f62d314bee
7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents:
8921
diff
changeset
|
1034 |
MemBarAcquireLockNode(Compile* C, int alias_idx, Node* precedent) |
c5f62d314bee
7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents:
8921
diff
changeset
|
1035 |
: MemBarNode(C, alias_idx, precedent) {} |
c5f62d314bee
7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents:
8921
diff
changeset
|
1036 |
virtual int Opcode() const; |
c5f62d314bee
7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents:
8921
diff
changeset
|
1037 |
}; |
c5f62d314bee
7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents:
8921
diff
changeset
|
1038 |
|
c5f62d314bee
7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents:
8921
diff
changeset
|
1039 |
// "Release" - no earlier ref can move after (but later refs can move |
c5f62d314bee
7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents:
8921
diff
changeset
|
1040 |
// up, like a speculative pipelined cache-hitting Load). Requires |
c5f62d314bee
7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents:
8921
diff
changeset
|
1041 |
// multi-cpu visibility. Inserted before a FastUnLock. |
c5f62d314bee
7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents:
8921
diff
changeset
|
1042 |
class MemBarReleaseLockNode: public MemBarNode { |
c5f62d314bee
7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents:
8921
diff
changeset
|
1043 |
public: |
c5f62d314bee
7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents:
8921
diff
changeset
|
1044 |
MemBarReleaseLockNode(Compile* C, int alias_idx, Node* precedent) |
c5f62d314bee
7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents:
8921
diff
changeset
|
1045 |
: MemBarNode(C, alias_idx, precedent) {} |
c5f62d314bee
7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents:
8921
diff
changeset
|
1046 |
virtual int Opcode() const; |
c5f62d314bee
7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents:
8921
diff
changeset
|
1047 |
}; |
c5f62d314bee
7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents:
8921
diff
changeset
|
1048 |
|
11431
5ca3a19e559a
7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents:
11191
diff
changeset
|
1049 |
class MemBarStoreStoreNode: public MemBarNode { |
5ca3a19e559a
7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents:
11191
diff
changeset
|
1050 |
public: |
5ca3a19e559a
7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents:
11191
diff
changeset
|
1051 |
MemBarStoreStoreNode(Compile* C, int alias_idx, Node* precedent) |
5ca3a19e559a
7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents:
11191
diff
changeset
|
1052 |
: MemBarNode(C, alias_idx, precedent) { |
5ca3a19e559a
7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents:
11191
diff
changeset
|
1053 |
init_class_id(Class_MemBarStoreStore); |
5ca3a19e559a
7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents:
11191
diff
changeset
|
1054 |
} |
5ca3a19e559a
7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents:
11191
diff
changeset
|
1055 |
virtual int Opcode() const; |
5ca3a19e559a
7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents:
11191
diff
changeset
|
1056 |
}; |
5ca3a19e559a
7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents:
11191
diff
changeset
|
1057 |
|
1 | 1058 |
// Ordering between a volatile store and a following volatile load. |
1059 |
// Requires multi-CPU visibility? |
|
1060 |
class MemBarVolatileNode: public MemBarNode { |
|
1061 |
public: |
|
1062 |
MemBarVolatileNode(Compile* C, int alias_idx, Node* precedent) |
|
1063 |
: MemBarNode(C, alias_idx, precedent) {} |
|
1064 |
virtual int Opcode() const; |
|
1065 |
}; |
|
1066 |
||
1067 |
// Ordering within the same CPU. Used to order unsafe memory references |
|
1068 |
// inside the compiler when we lack alias info. Not needed "outside" the |
|
1069 |
// compiler because the CPU does all the ordering for us. |
|
1070 |
class MemBarCPUOrderNode: public MemBarNode { |
|
1071 |
public: |
|
1072 |
MemBarCPUOrderNode(Compile* C, int alias_idx, Node* precedent) |
|
1073 |
: MemBarNode(C, alias_idx, precedent) {} |
|
1074 |
virtual int Opcode() const; |
|
1075 |
virtual uint ideal_reg() const { return 0; } // not matched in the AD file |
|
1076 |
}; |
|
1077 |
||
1078 |
// Isolation of object setup after an AllocateNode and before next safepoint. |
|
1079 |
// (See comment in memnode.cpp near InitializeNode::InitializeNode for semantics.) |
|
1080 |
class InitializeNode: public MemBarNode { |
|
1081 |
friend class AllocateNode; |
|
1082 |
||
10566
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10267
diff
changeset
|
1083 |
enum { |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10267
diff
changeset
|
1084 |
Incomplete = 0, |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10267
diff
changeset
|
1085 |
Complete = 1, |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10267
diff
changeset
|
1086 |
WithArraycopy = 2 |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10267
diff
changeset
|
1087 |
}; |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10267
diff
changeset
|
1088 |
int _is_complete; |
1 | 1089 |
|
11431
5ca3a19e559a
7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents:
11191
diff
changeset
|
1090 |
bool _does_not_escape; |
5ca3a19e559a
7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents:
11191
diff
changeset
|
1091 |
|
1 | 1092 |
public: |
1093 |
enum { |
|
1094 |
Control = TypeFunc::Control, |
|
1095 |
Memory = TypeFunc::Memory, // MergeMem for states affected by this op |
|
1096 |
RawAddress = TypeFunc::Parms+0, // the newly-allocated raw address |
|
1097 |
RawStores = TypeFunc::Parms+1 // zero or more stores (or TOP) |
|
1098 |
}; |
|
1099 |
||
1100 |
InitializeNode(Compile* C, int adr_type, Node* rawoop); |
|
1101 |
virtual int Opcode() const; |
|
1102 |
virtual uint size_of() const { return sizeof(*this); } |
|
1103 |
virtual uint ideal_reg() const { return 0; } // not matched in the AD file |
|
1104 |
virtual const RegMask &in_RegMask(uint) const; // mask for RawAddress |
|
1105 |
||
1106 |
// Manage incoming memory edges via a MergeMem on in(Memory): |
|
1107 |
Node* memory(uint alias_idx); |
|
1108 |
||
1109 |
// The raw memory edge coming directly from the Allocation. |
|
1110 |
// The contents of this memory are *always* all-zero-bits. |
|
1111 |
Node* zero_memory() { return memory(Compile::AliasIdxRaw); } |
|
1112 |
||
1113 |
// Return the corresponding allocation for this initialization (or null if none). |
|
1114 |
// (Note: Both InitializeNode::allocation and AllocateNode::initialization |
|
1115 |
// are defined in graphKit.cpp, which sets up the bidirectional relation.) |
|
1116 |
AllocateNode* allocation(); |
|
1117 |
||
1118 |
// Anything other than zeroing in this init? |
|
1119 |
bool is_non_zero(); |
|
1120 |
||
1121 |
// An InitializeNode must completed before macro expansion is done. |
|
1122 |
// Completion requires that the AllocateNode must be followed by |
|
1123 |
// initialization of the new memory to zero, then to any initializers. |
|
10566
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10267
diff
changeset
|
1124 |
bool is_complete() { return _is_complete != Incomplete; } |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10267
diff
changeset
|
1125 |
bool is_complete_with_arraycopy() { return (_is_complete & WithArraycopy) != 0; } |
1 | 1126 |
|
1127 |
// Mark complete. (Must not yet be complete.) |
|
1128 |
void set_complete(PhaseGVN* phase); |
|
10566
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10267
diff
changeset
|
1129 |
void set_complete_with_arraycopy() { _is_complete = Complete | WithArraycopy; } |
1 | 1130 |
|
11431
5ca3a19e559a
7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents:
11191
diff
changeset
|
1131 |
bool does_not_escape() { return _does_not_escape; } |
5ca3a19e559a
7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents:
11191
diff
changeset
|
1132 |
void set_does_not_escape() { _does_not_escape = true; } |
5ca3a19e559a
7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents:
11191
diff
changeset
|
1133 |
|
1 | 1134 |
#ifdef ASSERT |
1135 |
// ensure all non-degenerate stores are ordered and non-overlapping |
|
1136 |
bool stores_are_sane(PhaseTransform* phase); |
|
1137 |
#endif //ASSERT |
|
1138 |
||
1139 |
// See if this store can be captured; return offset where it initializes. |
|
1140 |
// Return 0 if the store cannot be moved (any sort of problem). |
|
15813
6efd4c793e47
8007294: ReduceFieldZeroing doesn't check for dependent load and can lead to incorrect execution
roland
parents:
15242
diff
changeset
|
1141 |
intptr_t can_capture_store(StoreNode* st, PhaseTransform* phase, bool can_reshape); |
1 | 1142 |
|
1143 |
// Capture another store; reformat it to write my internal raw memory. |
|
1144 |
// Return the captured copy, else NULL if there is some sort of problem. |
|
15813
6efd4c793e47
8007294: ReduceFieldZeroing doesn't check for dependent load and can lead to incorrect execution
roland
parents:
15242
diff
changeset
|
1145 |
Node* capture_store(StoreNode* st, intptr_t start, PhaseTransform* phase, bool can_reshape); |
1 | 1146 |
|
1147 |
// Find captured store which corresponds to the range [start..start+size). |
|
1148 |
// Return my own memory projection (meaning the initial zero bits) |
|
1149 |
// if there is no such store. Return NULL if there is a problem. |
|
1150 |
Node* find_captured_store(intptr_t start, int size_in_bytes, PhaseTransform* phase); |
|
1151 |
||
1152 |
// Called when the associated AllocateNode is expanded into CFG. |
|
1153 |
Node* complete_stores(Node* rawctl, Node* rawmem, Node* rawptr, |
|
1154 |
intptr_t header_size, Node* size_in_bytes, |
|
1155 |
PhaseGVN* phase); |
|
1156 |
||
1157 |
private: |
|
1158 |
void remove_extra_zeroes(); |
|
1159 |
||
1160 |
// Find out where a captured store should be placed (or already is placed). |
|
1161 |
int captured_store_insertion_point(intptr_t start, int size_in_bytes, |
|
1162 |
PhaseTransform* phase); |
|
1163 |
||
1164 |
static intptr_t get_store_offset(Node* st, PhaseTransform* phase); |
|
1165 |
||
1166 |
Node* make_raw_address(intptr_t offset, PhaseTransform* phase); |
|
1167 |
||
17383 | 1168 |
bool detect_init_independence(Node* n, int& count); |
1 | 1169 |
|
1170 |
void coalesce_subword_stores(intptr_t header_size, Node* size_in_bytes, |
|
1171 |
PhaseGVN* phase); |
|
1172 |
||
1173 |
intptr_t find_next_fullword_store(uint i, PhaseGVN* phase); |
|
1174 |
}; |
|
1175 |
||
1176 |
//------------------------------MergeMem--------------------------------------- |
|
1177 |
// (See comment in memnode.cpp near MergeMemNode::MergeMemNode for semantics.) |
|
1178 |
class MergeMemNode: public Node { |
|
1179 |
virtual uint hash() const ; // { return NO_HASH; } |
|
1180 |
virtual uint cmp( const Node &n ) const ; // Always fail, except on self |
|
1181 |
friend class MergeMemStream; |
|
1182 |
MergeMemNode(Node* def); // clients use MergeMemNode::make |
|
1183 |
||
1184 |
public: |
|
1185 |
// If the input is a whole memory state, clone it with all its slices intact. |
|
1186 |
// Otherwise, make a new memory state with just that base memory input. |
|
1187 |
// In either case, the result is a newly created MergeMem. |
|
1188 |
static MergeMemNode* make(Compile* C, Node* base_memory); |
|
1189 |
||
1190 |
virtual int Opcode() const; |
|
1191 |
virtual Node *Identity( PhaseTransform *phase ); |
|
1192 |
virtual Node *Ideal(PhaseGVN *phase, bool can_reshape); |
|
1193 |
virtual uint ideal_reg() const { return NotAMachineReg; } |
|
1194 |
virtual uint match_edge(uint idx) const { return 0; } |
|
1195 |
virtual const RegMask &out_RegMask() const; |
|
1196 |
virtual const Type *bottom_type() const { return Type::MEMORY; } |
|
1197 |
virtual const TypePtr *adr_type() const { return TypePtr::BOTTOM; } |
|
1198 |
// sparse accessors |
|
1199 |
// Fetch the previously stored "set_memory_at", or else the base memory. |
|
1200 |
// (Caller should clone it if it is a phi-nest.) |
|
1201 |
Node* memory_at(uint alias_idx) const; |
|
1202 |
// set the memory, regardless of its previous value |
|
1203 |
void set_memory_at(uint alias_idx, Node* n); |
|
1204 |
// the "base" is the memory that provides the non-finite support |
|
1205 |
Node* base_memory() const { return in(Compile::AliasIdxBot); } |
|
1206 |
// warning: setting the base can implicitly set any of the other slices too |
|
1207 |
void set_base_memory(Node* def); |
|
1208 |
// sentinel value which denotes a copy of the base memory: |
|
1209 |
Node* empty_memory() const { return in(Compile::AliasIdxTop); } |
|
1210 |
static Node* make_empty_memory(); // where the sentinel comes from |
|
1211 |
bool is_empty_memory(Node* n) const { assert((n == empty_memory()) == n->is_top(), "sanity"); return n->is_top(); } |
|
1212 |
// hook for the iterator, to perform any necessary setup |
|
1213 |
void iteration_setup(const MergeMemNode* other = NULL); |
|
1214 |
// push sentinels until I am at least as long as the other (semantic no-op) |
|
1215 |
void grow_to_match(const MergeMemNode* other); |
|
1216 |
bool verify_sparse() const PRODUCT_RETURN0; |
|
1217 |
#ifndef PRODUCT |
|
1218 |
virtual void dump_spec(outputStream *st) const; |
|
1219 |
#endif |
|
1220 |
}; |
|
1221 |
||
1222 |
class MergeMemStream : public StackObj { |
|
1223 |
private: |
|
1224 |
MergeMemNode* _mm; |
|
1225 |
const MergeMemNode* _mm2; // optional second guy, contributes non-empty iterations |
|
1226 |
Node* _mm_base; // loop-invariant base memory of _mm |
|
1227 |
int _idx; |
|
1228 |
int _cnt; |
|
1229 |
Node* _mem; |
|
1230 |
Node* _mem2; |
|
1231 |
int _cnt2; |
|
1232 |
||
1233 |
void init(MergeMemNode* mm, const MergeMemNode* mm2 = NULL) { |
|
1234 |
// subsume_node will break sparseness at times, whenever a memory slice |
|
1235 |
// folds down to a copy of the base ("fat") memory. In such a case, |
|
1236 |
// the raw edge will update to base, although it should be top. |
|
1237 |
// This iterator will recognize either top or base_memory as an |
|
1238 |
// "empty" slice. See is_empty, is_empty2, and next below. |
|
1239 |
// |
|
1240 |
// The sparseness property is repaired in MergeMemNode::Ideal. |
|
1241 |
// As long as access to a MergeMem goes through this iterator |
|
1242 |
// or the memory_at accessor, flaws in the sparseness will |
|
1243 |
// never be observed. |
|
1244 |
// |
|
1245 |
// Also, iteration_setup repairs sparseness. |
|
1246 |
assert(mm->verify_sparse(), "please, no dups of base"); |
|
1247 |
assert(mm2==NULL || mm2->verify_sparse(), "please, no dups of base"); |
|
1248 |
||
1249 |
_mm = mm; |
|
1250 |
_mm_base = mm->base_memory(); |
|
1251 |
_mm2 = mm2; |
|
1252 |
_cnt = mm->req(); |
|
1253 |
_idx = Compile::AliasIdxBot-1; // start at the base memory |
|
1254 |
_mem = NULL; |
|
1255 |
_mem2 = NULL; |
|
1256 |
} |
|
1257 |
||
1258 |
#ifdef ASSERT |
|
1259 |
Node* check_memory() const { |
|
1260 |
if (at_base_memory()) |
|
1261 |
return _mm->base_memory(); |
|
1262 |
else if ((uint)_idx < _mm->req() && !_mm->in(_idx)->is_top()) |
|
1263 |
return _mm->memory_at(_idx); |
|
1264 |
else |
|
1265 |
return _mm_base; |
|
1266 |
} |
|
1267 |
Node* check_memory2() const { |
|
1268 |
return at_base_memory()? _mm2->base_memory(): _mm2->memory_at(_idx); |
|
1269 |
} |
|
1270 |
#endif |
|
1271 |
||
1272 |
static bool match_memory(Node* mem, const MergeMemNode* mm, int idx) PRODUCT_RETURN0; |
|
1273 |
void assert_synch() const { |
|
1274 |
assert(!_mem || _idx >= _cnt || match_memory(_mem, _mm, _idx), |
|
1275 |
"no side-effects except through the stream"); |
|
1276 |
} |
|
1277 |
||
1278 |
public: |
|
1279 |
||
1280 |
// expected usages: |
|
1281 |
// for (MergeMemStream mms(mem->is_MergeMem()); next_non_empty(); ) { ... } |
|
1282 |
// for (MergeMemStream mms(mem1, mem2); next_non_empty2(); ) { ... } |
|
1283 |
||
1284 |
// iterate over one merge |
|
1285 |
MergeMemStream(MergeMemNode* mm) { |
|
1286 |
mm->iteration_setup(); |
|
1287 |
init(mm); |
|
1288 |
debug_only(_cnt2 = 999); |
|
1289 |
} |
|
1290 |
// iterate in parallel over two merges |
|
1291 |
// only iterates through non-empty elements of mm2 |
|
1292 |
MergeMemStream(MergeMemNode* mm, const MergeMemNode* mm2) { |
|
1293 |
assert(mm2, "second argument must be a MergeMem also"); |
|
1294 |
((MergeMemNode*)mm2)->iteration_setup(); // update hidden state |
|
1295 |
mm->iteration_setup(mm2); |
|
1296 |
init(mm, mm2); |
|
1297 |
_cnt2 = mm2->req(); |
|
1298 |
} |
|
1299 |
#ifdef ASSERT |
|
1300 |
~MergeMemStream() { |
|
1301 |
assert_synch(); |
|
1302 |
} |
|
1303 |
#endif |
|
1304 |
||
1305 |
MergeMemNode* all_memory() const { |
|
1306 |
return _mm; |
|
1307 |
} |
|
1308 |
Node* base_memory() const { |
|
1309 |
assert(_mm_base == _mm->base_memory(), "no update to base memory, please"); |
|
1310 |
return _mm_base; |
|
1311 |
} |
|
1312 |
const MergeMemNode* all_memory2() const { |
|
1313 |
assert(_mm2 != NULL, ""); |
|
1314 |
return _mm2; |
|
1315 |
} |
|
1316 |
bool at_base_memory() const { |
|
1317 |
return _idx == Compile::AliasIdxBot; |
|
1318 |
} |
|
1319 |
int alias_idx() const { |
|
1320 |
assert(_mem, "must call next 1st"); |
|
1321 |
return _idx; |
|
1322 |
} |
|
1323 |
||
1324 |
const TypePtr* adr_type() const { |
|
1325 |
return Compile::current()->get_adr_type(alias_idx()); |
|
1326 |
} |
|
1327 |
||
1328 |
const TypePtr* adr_type(Compile* C) const { |
|
1329 |
return C->get_adr_type(alias_idx()); |
|
1330 |
} |
|
1331 |
bool is_empty() const { |
|
1332 |
assert(_mem, "must call next 1st"); |
|
1333 |
assert(_mem->is_top() == (_mem==_mm->empty_memory()), "correct sentinel"); |
|
1334 |
return _mem->is_top(); |
|
1335 |
} |
|
1336 |
bool is_empty2() const { |
|
1337 |
assert(_mem2, "must call next 1st"); |
|
1338 |
assert(_mem2->is_top() == (_mem2==_mm2->empty_memory()), "correct sentinel"); |
|
1339 |
return _mem2->is_top(); |
|
1340 |
} |
|
1341 |
Node* memory() const { |
|
1342 |
assert(!is_empty(), "must not be empty"); |
|
1343 |
assert_synch(); |
|
1344 |
return _mem; |
|
1345 |
} |
|
1346 |
// get the current memory, regardless of empty or non-empty status |
|
1347 |
Node* force_memory() const { |
|
1348 |
assert(!is_empty() || !at_base_memory(), ""); |
|
1349 |
// Use _mm_base to defend against updates to _mem->base_memory(). |
|
1350 |
Node *mem = _mem->is_top() ? _mm_base : _mem; |
|
1351 |
assert(mem == check_memory(), ""); |
|
1352 |
return mem; |
|
1353 |
} |
|
1354 |
Node* memory2() const { |
|
1355 |
assert(_mem2 == check_memory2(), ""); |
|
1356 |
return _mem2; |
|
1357 |
} |
|
1358 |
void set_memory(Node* mem) { |
|
1359 |
if (at_base_memory()) { |
|
1360 |
// Note that this does not change the invariant _mm_base. |
|
1361 |
_mm->set_base_memory(mem); |
|
1362 |
} else { |
|
1363 |
_mm->set_memory_at(_idx, mem); |
|
1364 |
} |
|
1365 |
_mem = mem; |
|
1366 |
assert_synch(); |
|
1367 |
} |
|
1368 |
||
1369 |
// Recover from a side effect to the MergeMemNode. |
|
1370 |
void set_memory() { |
|
1371 |
_mem = _mm->in(_idx); |
|
1372 |
} |
|
1373 |
||
1374 |
bool next() { return next(false); } |
|
1375 |
bool next2() { return next(true); } |
|
1376 |
||
1377 |
bool next_non_empty() { return next_non_empty(false); } |
|
1378 |
bool next_non_empty2() { return next_non_empty(true); } |
|
1379 |
// next_non_empty2 can yield states where is_empty() is true |
|
1380 |
||
1381 |
private: |
|
1382 |
// find the next item, which might be empty |
|
1383 |
bool next(bool have_mm2) { |
|
1384 |
assert((_mm2 != NULL) == have_mm2, "use other next"); |
|
1385 |
assert_synch(); |
|
1386 |
if (++_idx < _cnt) { |
|
1387 |
// Note: This iterator allows _mm to be non-sparse. |
|
1388 |
// It behaves the same whether _mem is top or base_memory. |
|
1389 |
_mem = _mm->in(_idx); |
|
1390 |
if (have_mm2) |
|
1391 |
_mem2 = _mm2->in((_idx < _cnt2) ? _idx : Compile::AliasIdxTop); |
|
1392 |
return true; |
|
1393 |
} |
|
1394 |
return false; |
|
1395 |
} |
|
1396 |
||
1397 |
// find the next non-empty item |
|
1398 |
bool next_non_empty(bool have_mm2) { |
|
1399 |
while (next(have_mm2)) { |
|
1400 |
if (!is_empty()) { |
|
1401 |
// make sure _mem2 is filled in sensibly |
|
1402 |
if (have_mm2 && _mem2->is_top()) _mem2 = _mm2->base_memory(); |
|
1403 |
return true; |
|
1404 |
} else if (have_mm2 && !is_empty2()) { |
|
1405 |
return true; // is_empty() == true |
|
1406 |
} |
|
1407 |
} |
|
1408 |
return false; |
|
1409 |
} |
|
1410 |
}; |
|
1411 |
||
1412 |
//------------------------------Prefetch--------------------------------------- |
|
1413 |
||
1414 |
// Non-faulting prefetch load. Prefetch for many reads. |
|
1415 |
class PrefetchReadNode : public Node { |
|
1416 |
public: |
|
1417 |
PrefetchReadNode(Node *abio, Node *adr) : Node(0,abio,adr) {} |
|
1418 |
virtual int Opcode() const; |
|
1419 |
virtual uint ideal_reg() const { return NotAMachineReg; } |
|
1420 |
virtual uint match_edge(uint idx) const { return idx==2; } |
|
1421 |
virtual const Type *bottom_type() const { return Type::ABIO; } |
|
1422 |
}; |
|
1423 |
||
1424 |
// Non-faulting prefetch load. Prefetch for many reads & many writes. |
|
1425 |
class PrefetchWriteNode : public Node { |
|
1426 |
public: |
|
1427 |
PrefetchWriteNode(Node *abio, Node *adr) : Node(0,abio,adr) {} |
|
1428 |
virtual int Opcode() const; |
|
1429 |
virtual uint ideal_reg() const { return NotAMachineReg; } |
|
1430 |
virtual uint match_edge(uint idx) const { return idx==2; } |
|
10267 | 1431 |
virtual const Type *bottom_type() const { return Type::ABIO; } |
1432 |
}; |
|
1433 |
||
1434 |
// Allocation prefetch which may fault, TLAB size have to be adjusted. |
|
1435 |
class PrefetchAllocationNode : public Node { |
|
1436 |
public: |
|
1437 |
PrefetchAllocationNode(Node *mem, Node *adr) : Node(0,mem,adr) {} |
|
1438 |
virtual int Opcode() const; |
|
1439 |
virtual uint ideal_reg() const { return NotAMachineReg; } |
|
1440 |
virtual uint match_edge(uint idx) const { return idx==2; } |
|
5251
f86f7a86d761
6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents:
4746
diff
changeset
|
1441 |
virtual const Type *bottom_type() const { return ( AllocatePrefetchStyle == 3 ) ? Type::MEMORY : Type::ABIO; } |
1 | 1442 |
}; |
7397 | 1443 |
|
1444 |
#endif // SHARE_VM_OPTO_MEMNODE_HPP |