src/share/vm/opto/callnode.hpp

Fri, 11 Jul 2014 19:51:36 -0400

author
drchase
date
Fri, 11 Jul 2014 19:51:36 -0400
changeset 7161
fc2c88ea11a9
parent 7041
411e30e5fbb8
child 7535
7ae4e26cb1e0
child 7605
6e8e0bf87bbe
permissions
-rw-r--r--

8036588: VerifyFieldClosure fails instanceKlass:3133
Summary: Changed deopt live-pointer test to use returns-object instead of live-and-returns-object
Reviewed-by: iveresov, kvn, jrose

duke@435 1 /*
coleenp@5614 2 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #ifndef SHARE_VM_OPTO_CALLNODE_HPP
stefank@2314 26 #define SHARE_VM_OPTO_CALLNODE_HPP
stefank@2314 27
stefank@2314 28 #include "opto/connode.hpp"
stefank@2314 29 #include "opto/mulnode.hpp"
stefank@2314 30 #include "opto/multnode.hpp"
stefank@2314 31 #include "opto/opcodes.hpp"
stefank@2314 32 #include "opto/phaseX.hpp"
roland@7041 33 #include "opto/replacednodes.hpp"
stefank@2314 34 #include "opto/type.hpp"
stefank@2314 35
duke@435 36 // Portions of code courtesy of Clifford Click
duke@435 37
duke@435 38 // Optimization - Graph Style
duke@435 39
duke@435 40 class Chaitin;
duke@435 41 class NamedCounter;
duke@435 42 class MultiNode;
duke@435 43 class SafePointNode;
duke@435 44 class CallNode;
duke@435 45 class CallJavaNode;
duke@435 46 class CallStaticJavaNode;
duke@435 47 class CallDynamicJavaNode;
duke@435 48 class CallRuntimeNode;
duke@435 49 class CallLeafNode;
duke@435 50 class CallLeafNoFPNode;
duke@435 51 class AllocateNode;
kvn@468 52 class AllocateArrayNode;
kvn@5110 53 class BoxLockNode;
duke@435 54 class LockNode;
duke@435 55 class UnlockNode;
duke@435 56 class JVMState;
duke@435 57 class OopMap;
duke@435 58 class State;
duke@435 59 class StartNode;
duke@435 60 class MachCallNode;
duke@435 61 class FastLockNode;
duke@435 62
duke@435 63 //------------------------------StartNode--------------------------------------
duke@435 64 // The method start node
duke@435 65 class StartNode : public MultiNode {
duke@435 66 virtual uint cmp( const Node &n ) const;
duke@435 67 virtual uint size_of() const; // Size is bigger
duke@435 68 public:
duke@435 69 const TypeTuple *_domain;
duke@435 70 StartNode( Node *root, const TypeTuple *domain ) : MultiNode(2), _domain(domain) {
duke@435 71 init_class_id(Class_Start);
duke@435 72 init_req(0,this);
duke@435 73 init_req(1,root);
duke@435 74 }
duke@435 75 virtual int Opcode() const;
duke@435 76 virtual bool pinned() const { return true; };
duke@435 77 virtual const Type *bottom_type() const;
duke@435 78 virtual const TypePtr *adr_type() const { return TypePtr::BOTTOM; }
duke@435 79 virtual const Type *Value( PhaseTransform *phase ) const;
duke@435 80 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
duke@435 81 virtual void calling_convention( BasicType* sig_bt, VMRegPair *parm_reg, uint length ) const;
duke@435 82 virtual const RegMask &in_RegMask(uint) const;
duke@435 83 virtual Node *match( const ProjNode *proj, const Matcher *m );
duke@435 84 virtual uint ideal_reg() const { return 0; }
duke@435 85 #ifndef PRODUCT
duke@435 86 virtual void dump_spec(outputStream *st) const;
duke@435 87 #endif
duke@435 88 };
duke@435 89
duke@435 90 //------------------------------StartOSRNode-----------------------------------
duke@435 91 // The method start node for on stack replacement code
duke@435 92 class StartOSRNode : public StartNode {
duke@435 93 public:
duke@435 94 StartOSRNode( Node *root, const TypeTuple *domain ) : StartNode(root, domain) {}
duke@435 95 virtual int Opcode() const;
duke@435 96 static const TypeTuple *osr_domain();
duke@435 97 };
duke@435 98
duke@435 99
duke@435 100 //------------------------------ParmNode---------------------------------------
duke@435 101 // Incoming parameters
duke@435 102 class ParmNode : public ProjNode {
duke@435 103 static const char * const names[TypeFunc::Parms+1];
duke@435 104 public:
kvn@468 105 ParmNode( StartNode *src, uint con ) : ProjNode(src,con) {
kvn@468 106 init_class_id(Class_Parm);
kvn@468 107 }
duke@435 108 virtual int Opcode() const;
duke@435 109 virtual bool is_CFG() const { return (_con == TypeFunc::Control); }
duke@435 110 virtual uint ideal_reg() const;
duke@435 111 #ifndef PRODUCT
duke@435 112 virtual void dump_spec(outputStream *st) const;
duke@435 113 #endif
duke@435 114 };
duke@435 115
duke@435 116
duke@435 117 //------------------------------ReturnNode-------------------------------------
duke@435 118 // Return from subroutine node
duke@435 119 class ReturnNode : public Node {
duke@435 120 public:
duke@435 121 ReturnNode( uint edges, Node *cntrl, Node *i_o, Node *memory, Node *retadr, Node *frameptr );
duke@435 122 virtual int Opcode() const;
duke@435 123 virtual bool is_CFG() const { return true; }
duke@435 124 virtual uint hash() const { return NO_HASH; } // CFG nodes do not hash
duke@435 125 virtual bool depends_only_on_test() const { return false; }
duke@435 126 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
duke@435 127 virtual const Type *Value( PhaseTransform *phase ) const;
duke@435 128 virtual uint ideal_reg() const { return NotAMachineReg; }
duke@435 129 virtual uint match_edge(uint idx) const;
duke@435 130 #ifndef PRODUCT
kvn@4478 131 virtual void dump_req(outputStream *st = tty) const;
duke@435 132 #endif
duke@435 133 };
duke@435 134
duke@435 135
duke@435 136 //------------------------------RethrowNode------------------------------------
duke@435 137 // Rethrow of exception at call site. Ends a procedure before rethrowing;
duke@435 138 // ends the current basic block like a ReturnNode. Restores registers and
duke@435 139 // unwinds stack. Rethrow happens in the caller's method.
duke@435 140 class RethrowNode : public Node {
duke@435 141 public:
duke@435 142 RethrowNode( Node *cntrl, Node *i_o, Node *memory, Node *frameptr, Node *ret_adr, Node *exception );
duke@435 143 virtual int Opcode() const;
duke@435 144 virtual bool is_CFG() const { return true; }
duke@435 145 virtual uint hash() const { return NO_HASH; } // CFG nodes do not hash
duke@435 146 virtual bool depends_only_on_test() const { return false; }
duke@435 147 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
duke@435 148 virtual const Type *Value( PhaseTransform *phase ) const;
duke@435 149 virtual uint match_edge(uint idx) const;
duke@435 150 virtual uint ideal_reg() const { return NotAMachineReg; }
duke@435 151 #ifndef PRODUCT
kvn@4478 152 virtual void dump_req(outputStream *st = tty) const;
duke@435 153 #endif
duke@435 154 };
duke@435 155
duke@435 156
duke@435 157 //------------------------------TailCallNode-----------------------------------
duke@435 158 // Pop stack frame and jump indirect
duke@435 159 class TailCallNode : public ReturnNode {
duke@435 160 public:
duke@435 161 TailCallNode( Node *cntrl, Node *i_o, Node *memory, Node *frameptr, Node *retadr, Node *target, Node *moop )
duke@435 162 : ReturnNode( TypeFunc::Parms+2, cntrl, i_o, memory, frameptr, retadr ) {
duke@435 163 init_req(TypeFunc::Parms, target);
duke@435 164 init_req(TypeFunc::Parms+1, moop);
duke@435 165 }
duke@435 166
duke@435 167 virtual int Opcode() const;
duke@435 168 virtual uint match_edge(uint idx) const;
duke@435 169 };
duke@435 170
duke@435 171 //------------------------------TailJumpNode-----------------------------------
duke@435 172 // Pop stack frame and jump indirect
duke@435 173 class TailJumpNode : public ReturnNode {
duke@435 174 public:
duke@435 175 TailJumpNode( Node *cntrl, Node *i_o, Node *memory, Node *frameptr, Node *target, Node *ex_oop)
duke@435 176 : ReturnNode(TypeFunc::Parms+2, cntrl, i_o, memory, frameptr, Compile::current()->top()) {
duke@435 177 init_req(TypeFunc::Parms, target);
duke@435 178 init_req(TypeFunc::Parms+1, ex_oop);
duke@435 179 }
duke@435 180
duke@435 181 virtual int Opcode() const;
duke@435 182 virtual uint match_edge(uint idx) const;
duke@435 183 };
duke@435 184
duke@435 185 //-------------------------------JVMState-------------------------------------
duke@435 186 // A linked list of JVMState nodes captures the whole interpreter state,
duke@435 187 // plus GC roots, for all active calls at some call site in this compilation
duke@435 188 // unit. (If there is no inlining, then the list has exactly one link.)
duke@435 189 // This provides a way to map the optimized program back into the interpreter,
duke@435 190 // or to let the GC mark the stack.
duke@435 191 class JVMState : public ResourceObj {
never@3138 192 friend class VMStructs;
cfang@1335 193 public:
cfang@1335 194 typedef enum {
cfang@1335 195 Reexecute_Undefined = -1, // not defined -- will be translated into false later
cfang@1335 196 Reexecute_False = 0, // false -- do not reexecute
cfang@1335 197 Reexecute_True = 1 // true -- reexecute the bytecode
cfang@1335 198 } ReexecuteState; //Reexecute State
cfang@1335 199
duke@435 200 private:
duke@435 201 JVMState* _caller; // List pointer for forming scope chains
twisti@3969 202 uint _depth; // One more than caller depth, or one.
duke@435 203 uint _locoff; // Offset to locals in input edge mapping
duke@435 204 uint _stkoff; // Offset to stack in input edge mapping
duke@435 205 uint _monoff; // Offset to monitors in input edge mapping
kvn@498 206 uint _scloff; // Offset to fields of scalar objs in input edge mapping
duke@435 207 uint _endoff; // Offset to end of input edge mapping
duke@435 208 uint _sp; // Jave Expression Stack Pointer for this state
duke@435 209 int _bci; // Byte Code Index of this JVM point
cfang@1335 210 ReexecuteState _reexecute; // Whether this bytecode need to be re-executed
duke@435 211 ciMethod* _method; // Method Pointer
duke@435 212 SafePointNode* _map; // Map node associated with this scope
duke@435 213 public:
duke@435 214 friend class Compile;
cfang@1335 215 friend class PreserveReexecuteState;
duke@435 216
duke@435 217 // Because JVMState objects live over the entire lifetime of the
duke@435 218 // Compile object, they are allocated into the comp_arena, which
duke@435 219 // does not get resource marked or reset during the compile process
coleenp@5614 220 void *operator new( size_t x, Compile* C ) throw() { return C->comp_arena()->Amalloc(x); }
duke@435 221 void operator delete( void * ) { } // fast deallocation
duke@435 222
duke@435 223 // Create a new JVMState, ready for abstract interpretation.
duke@435 224 JVMState(ciMethod* method, JVMState* caller);
duke@435 225 JVMState(int stack_size); // root state; has a null method
duke@435 226
duke@435 227 // Access functions for the JVM
twisti@3969 228 // ... --|--- loc ---|--- stk ---|--- arg ---|--- mon ---|--- scl ---|
twisti@3969 229 // \ locoff \ stkoff \ argoff \ monoff \ scloff \ endoff
duke@435 230 uint locoff() const { return _locoff; }
duke@435 231 uint stkoff() const { return _stkoff; }
duke@435 232 uint argoff() const { return _stkoff + _sp; }
duke@435 233 uint monoff() const { return _monoff; }
kvn@498 234 uint scloff() const { return _scloff; }
duke@435 235 uint endoff() const { return _endoff; }
duke@435 236 uint oopoff() const { return debug_end(); }
duke@435 237
twisti@3969 238 int loc_size() const { return stkoff() - locoff(); }
twisti@3969 239 int stk_size() const { return monoff() - stkoff(); }
twisti@3969 240 int mon_size() const { return scloff() - monoff(); }
twisti@3969 241 int scl_size() const { return endoff() - scloff(); }
duke@435 242
twisti@3969 243 bool is_loc(uint i) const { return locoff() <= i && i < stkoff(); }
twisti@3969 244 bool is_stk(uint i) const { return stkoff() <= i && i < monoff(); }
twisti@3969 245 bool is_mon(uint i) const { return monoff() <= i && i < scloff(); }
twisti@3969 246 bool is_scl(uint i) const { return scloff() <= i && i < endoff(); }
duke@435 247
cfang@1335 248 uint sp() const { return _sp; }
cfang@1335 249 int bci() const { return _bci; }
cfang@1335 250 bool should_reexecute() const { return _reexecute==Reexecute_True; }
cfang@1335 251 bool is_reexecute_undefined() const { return _reexecute==Reexecute_Undefined; }
cfang@1335 252 bool has_method() const { return _method != NULL; }
cfang@1335 253 ciMethod* method() const { assert(has_method(), ""); return _method; }
cfang@1335 254 JVMState* caller() const { return _caller; }
cfang@1335 255 SafePointNode* map() const { return _map; }
cfang@1335 256 uint depth() const { return _depth; }
cfang@1335 257 uint debug_start() const; // returns locoff of root caller
cfang@1335 258 uint debug_end() const; // returns endoff of self
cfang@1335 259 uint debug_size() const {
kvn@498 260 return loc_size() + sp() + mon_size() + scl_size();
kvn@498 261 }
duke@435 262 uint debug_depth() const; // returns sum of debug_size values at all depths
duke@435 263
duke@435 264 // Returns the JVM state at the desired depth (1 == root).
duke@435 265 JVMState* of_depth(int d) const;
duke@435 266
duke@435 267 // Tells if two JVM states have the same call chain (depth, methods, & bcis).
duke@435 268 bool same_calls_as(const JVMState* that) const;
duke@435 269
duke@435 270 // Monitors (monitors are stored as (boxNode, objNode) pairs
duke@435 271 enum { logMonitorEdges = 1 };
duke@435 272 int nof_monitors() const { return mon_size() >> logMonitorEdges; }
duke@435 273 int monitor_depth() const { return nof_monitors() + (caller() ? caller()->monitor_depth() : 0); }
duke@435 274 int monitor_box_offset(int idx) const { return monoff() + (idx << logMonitorEdges) + 0; }
duke@435 275 int monitor_obj_offset(int idx) const { return monoff() + (idx << logMonitorEdges) + 1; }
duke@435 276 bool is_monitor_box(uint off) const {
duke@435 277 assert(is_mon(off), "should be called only for monitor edge");
duke@435 278 return (0 == bitfield(off - monoff(), 0, logMonitorEdges));
duke@435 279 }
duke@435 280 bool is_monitor_use(uint off) const { return (is_mon(off)
duke@435 281 && is_monitor_box(off))
duke@435 282 || (caller() && caller()->is_monitor_use(off)); }
duke@435 283
duke@435 284 // Initialization functions for the JVM
duke@435 285 void set_locoff(uint off) { _locoff = off; }
duke@435 286 void set_stkoff(uint off) { _stkoff = off; }
duke@435 287 void set_monoff(uint off) { _monoff = off; }
kvn@498 288 void set_scloff(uint off) { _scloff = off; }
duke@435 289 void set_endoff(uint off) { _endoff = off; }
kvn@498 290 void set_offsets(uint off) {
kvn@498 291 _locoff = _stkoff = _monoff = _scloff = _endoff = off;
kvn@498 292 }
duke@435 293 void set_map(SafePointNode *map) { _map = map; }
duke@435 294 void set_sp(uint sp) { _sp = sp; }
cfang@1335 295 // _reexecute is initialized to "undefined" for a new bci
cfang@1335 296 void set_bci(int bci) {if(_bci != bci)_reexecute=Reexecute_Undefined; _bci = bci; }
cfang@1335 297 void set_should_reexecute(bool reexec) {_reexecute = reexec ? Reexecute_True : Reexecute_False;}
duke@435 298
duke@435 299 // Miscellaneous utility functions
duke@435 300 JVMState* clone_deep(Compile* C) const; // recursively clones caller chain
duke@435 301 JVMState* clone_shallow(Compile* C) const; // retains uncloned caller
kvn@5110 302 void set_map_deep(SafePointNode *map);// reset map for all callers
goetz@6499 303 void adapt_position(int delta); // Adapt offsets in in-array after adding an edge.
roland@6723 304 int interpreter_frame_size() const;
duke@435 305
duke@435 306 #ifndef PRODUCT
duke@435 307 void format(PhaseRegAlloc *regalloc, const Node *n, outputStream* st) const;
duke@435 308 void dump_spec(outputStream *st) const;
duke@435 309 void dump_on(outputStream* st) const;
duke@435 310 void dump() const {
duke@435 311 dump_on(tty);
duke@435 312 }
duke@435 313 #endif
duke@435 314 };
duke@435 315
duke@435 316 //------------------------------SafePointNode----------------------------------
duke@435 317 // A SafePointNode is a subclass of a MultiNode for convenience (and
duke@435 318 // potential code sharing) only - conceptually it is independent of
duke@435 319 // the Node semantics.
duke@435 320 class SafePointNode : public MultiNode {
duke@435 321 virtual uint cmp( const Node &n ) const;
duke@435 322 virtual uint size_of() const; // Size is bigger
duke@435 323
duke@435 324 public:
duke@435 325 SafePointNode(uint edges, JVMState* jvms,
duke@435 326 // A plain safepoint advertises no memory effects (NULL):
duke@435 327 const TypePtr* adr_type = NULL)
duke@435 328 : MultiNode( edges ),
duke@435 329 _jvms(jvms),
duke@435 330 _oop_map(NULL),
duke@435 331 _adr_type(adr_type)
duke@435 332 {
duke@435 333 init_class_id(Class_SafePoint);
duke@435 334 }
duke@435 335
duke@435 336 OopMap* _oop_map; // Array of OopMap info (8-bit char) for GC
duke@435 337 JVMState* const _jvms; // Pointer to list of JVM State objects
duke@435 338 const TypePtr* _adr_type; // What type of memory does this node produce?
roland@7041 339 ReplacedNodes _replaced_nodes; // During parsing: list of pair of nodes from calls to GraphKit::replace_in_map()
duke@435 340
duke@435 341 // Many calls take *all* of memory as input,
duke@435 342 // but some produce a limited subset of that memory as output.
duke@435 343 // The adr_type reports the call's behavior as a store, not a load.
duke@435 344
duke@435 345 virtual JVMState* jvms() const { return _jvms; }
duke@435 346 void set_jvms(JVMState* s) {
duke@435 347 *(JVMState**)&_jvms = s; // override const attribute in the accessor
duke@435 348 }
duke@435 349 OopMap *oop_map() const { return _oop_map; }
duke@435 350 void set_oop_map(OopMap *om) { _oop_map = om; }
duke@435 351
twisti@4313 352 private:
twisti@4313 353 void verify_input(JVMState* jvms, uint idx) const {
twisti@4313 354 assert(verify_jvms(jvms), "jvms must match");
twisti@4313 355 Node* n = in(idx);
twisti@4313 356 assert((!n->bottom_type()->isa_long() && !n->bottom_type()->isa_double()) ||
twisti@4313 357 in(idx + 1)->is_top(), "2nd half of long/double");
twisti@4313 358 }
twisti@4313 359
twisti@4313 360 public:
duke@435 361 // Functionality from old debug nodes which has changed
duke@435 362 Node *local(JVMState* jvms, uint idx) const {
twisti@4313 363 verify_input(jvms, jvms->locoff() + idx);
duke@435 364 return in(jvms->locoff() + idx);
duke@435 365 }
duke@435 366 Node *stack(JVMState* jvms, uint idx) const {
twisti@4313 367 verify_input(jvms, jvms->stkoff() + idx);
duke@435 368 return in(jvms->stkoff() + idx);
duke@435 369 }
duke@435 370 Node *argument(JVMState* jvms, uint idx) const {
twisti@4313 371 verify_input(jvms, jvms->argoff() + idx);
duke@435 372 return in(jvms->argoff() + idx);
duke@435 373 }
duke@435 374 Node *monitor_box(JVMState* jvms, uint idx) const {
duke@435 375 assert(verify_jvms(jvms), "jvms must match");
duke@435 376 return in(jvms->monitor_box_offset(idx));
duke@435 377 }
duke@435 378 Node *monitor_obj(JVMState* jvms, uint idx) const {
duke@435 379 assert(verify_jvms(jvms), "jvms must match");
duke@435 380 return in(jvms->monitor_obj_offset(idx));
duke@435 381 }
duke@435 382
duke@435 383 void set_local(JVMState* jvms, uint idx, Node *c);
duke@435 384
duke@435 385 void set_stack(JVMState* jvms, uint idx, Node *c) {
duke@435 386 assert(verify_jvms(jvms), "jvms must match");
duke@435 387 set_req(jvms->stkoff() + idx, c);
duke@435 388 }
duke@435 389 void set_argument(JVMState* jvms, uint idx, Node *c) {
duke@435 390 assert(verify_jvms(jvms), "jvms must match");
duke@435 391 set_req(jvms->argoff() + idx, c);
duke@435 392 }
duke@435 393 void ensure_stack(JVMState* jvms, uint stk_size) {
duke@435 394 assert(verify_jvms(jvms), "jvms must match");
duke@435 395 int grow_by = (int)stk_size - (int)jvms->stk_size();
duke@435 396 if (grow_by > 0) grow_stack(jvms, grow_by);
duke@435 397 }
duke@435 398 void grow_stack(JVMState* jvms, uint grow_by);
duke@435 399 // Handle monitor stack
duke@435 400 void push_monitor( const FastLockNode *lock );
duke@435 401 void pop_monitor ();
duke@435 402 Node *peek_monitor_box() const;
duke@435 403 Node *peek_monitor_obj() const;
duke@435 404
duke@435 405 // Access functions for the JVM
duke@435 406 Node *control () const { return in(TypeFunc::Control ); }
duke@435 407 Node *i_o () const { return in(TypeFunc::I_O ); }
duke@435 408 Node *memory () const { return in(TypeFunc::Memory ); }
duke@435 409 Node *returnadr() const { return in(TypeFunc::ReturnAdr); }
duke@435 410 Node *frameptr () const { return in(TypeFunc::FramePtr ); }
duke@435 411
duke@435 412 void set_control ( Node *c ) { set_req(TypeFunc::Control,c); }
duke@435 413 void set_i_o ( Node *c ) { set_req(TypeFunc::I_O ,c); }
duke@435 414 void set_memory ( Node *c ) { set_req(TypeFunc::Memory ,c); }
duke@435 415
duke@435 416 MergeMemNode* merged_memory() const {
duke@435 417 return in(TypeFunc::Memory)->as_MergeMem();
duke@435 418 }
duke@435 419
duke@435 420 // The parser marks useless maps as dead when it's done with them:
duke@435 421 bool is_killed() { return in(TypeFunc::Control) == NULL; }
duke@435 422
duke@435 423 // Exception states bubbling out of subgraphs such as inlined calls
duke@435 424 // are recorded here. (There might be more than one, hence the "next".)
duke@435 425 // This feature is used only for safepoints which serve as "maps"
duke@435 426 // for JVM states during parsing, intrinsic expansion, etc.
duke@435 427 SafePointNode* next_exception() const;
duke@435 428 void set_next_exception(SafePointNode* n);
duke@435 429 bool has_exceptions() const { return next_exception() != NULL; }
duke@435 430
roland@7041 431 // Helper methods to operate on replaced nodes
roland@7041 432 ReplacedNodes replaced_nodes() const {
roland@7041 433 return _replaced_nodes;
roland@7041 434 }
roland@7041 435
roland@7041 436 void set_replaced_nodes(ReplacedNodes replaced_nodes) {
roland@7041 437 _replaced_nodes = replaced_nodes;
roland@7041 438 }
roland@7041 439
roland@7041 440 void clone_replaced_nodes() {
roland@7041 441 _replaced_nodes.clone();
roland@7041 442 }
roland@7041 443 void record_replaced_node(Node* initial, Node* improved) {
roland@7041 444 _replaced_nodes.record(initial, improved);
roland@7041 445 }
roland@7041 446 void transfer_replaced_nodes_from(SafePointNode* sfpt, uint idx = 0) {
roland@7041 447 _replaced_nodes.transfer_from(sfpt->_replaced_nodes, idx);
roland@7041 448 }
roland@7041 449 void delete_replaced_nodes() {
roland@7041 450 _replaced_nodes.reset();
roland@7041 451 }
roland@7041 452 void apply_replaced_nodes() {
roland@7041 453 _replaced_nodes.apply(this);
roland@7041 454 }
roland@7041 455 void merge_replaced_nodes_with(SafePointNode* sfpt) {
roland@7041 456 _replaced_nodes.merge_with(sfpt->_replaced_nodes);
roland@7041 457 }
roland@7041 458 bool has_replaced_nodes() const {
roland@7041 459 return !_replaced_nodes.is_empty();
roland@7041 460 }
roland@7041 461
duke@435 462 // Standard Node stuff
duke@435 463 virtual int Opcode() const;
duke@435 464 virtual bool pinned() const { return true; }
duke@435 465 virtual const Type *Value( PhaseTransform *phase ) const;
duke@435 466 virtual const Type *bottom_type() const { return Type::CONTROL; }
duke@435 467 virtual const TypePtr *adr_type() const { return _adr_type; }
duke@435 468 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
duke@435 469 virtual Node *Identity( PhaseTransform *phase );
duke@435 470 virtual uint ideal_reg() const { return 0; }
duke@435 471 virtual const RegMask &in_RegMask(uint) const;
duke@435 472 virtual const RegMask &out_RegMask() const;
duke@435 473 virtual uint match_edge(uint idx) const;
duke@435 474
duke@435 475 static bool needs_polling_address_input();
duke@435 476
duke@435 477 #ifndef PRODUCT
kvn@5110 478 virtual void dump_spec(outputStream *st) const;
duke@435 479 #endif
duke@435 480 };
duke@435 481
kvn@498 482 //------------------------------SafePointScalarObjectNode----------------------
kvn@498 483 // A SafePointScalarObjectNode represents the state of a scalarized object
kvn@498 484 // at a safepoint.
kvn@498 485
kvn@498 486 class SafePointScalarObjectNode: public TypeNode {
kvn@5626 487 uint _first_index; // First input edge relative index of a SafePoint node where
kvn@498 488 // states of the scalarized object fields are collected.
kvn@5626 489 // It is relative to the last (youngest) jvms->_scloff.
kvn@498 490 uint _n_fields; // Number of non-static fields of the scalarized object.
kvn@509 491 DEBUG_ONLY(AllocateNode* _alloc;)
kvn@3311 492
kvn@3311 493 virtual uint hash() const ; // { return NO_HASH; }
kvn@3311 494 virtual uint cmp( const Node &n ) const;
kvn@3311 495
kvn@5626 496 uint first_index() const { return _first_index; }
kvn@5626 497
kvn@498 498 public:
kvn@498 499 SafePointScalarObjectNode(const TypeOopPtr* tp,
kvn@498 500 #ifdef ASSERT
kvn@498 501 AllocateNode* alloc,
kvn@498 502 #endif
kvn@498 503 uint first_index, uint n_fields);
kvn@498 504 virtual int Opcode() const;
kvn@498 505 virtual uint ideal_reg() const;
kvn@498 506 virtual const RegMask &in_RegMask(uint) const;
kvn@498 507 virtual const RegMask &out_RegMask() const;
kvn@498 508 virtual uint match_edge(uint idx) const;
kvn@498 509
kvn@5626 510 uint first_index(JVMState* jvms) const {
kvn@5626 511 assert(jvms != NULL, "missed JVMS");
kvn@5626 512 return jvms->scloff() + _first_index;
kvn@5626 513 }
kvn@498 514 uint n_fields() const { return _n_fields; }
kvn@498 515
kvn@3311 516 #ifdef ASSERT
kvn@3311 517 AllocateNode* alloc() const { return _alloc; }
kvn@3311 518 #endif
kvn@1036 519
kvn@498 520 virtual uint size_of() const { return sizeof(*this); }
kvn@498 521
kvn@498 522 // Assumes that "this" is an argument to a safepoint node "s", and that
kvn@498 523 // "new_call" is being created to correspond to "s". But the difference
kvn@498 524 // between the start index of the jvmstates of "new_call" and "s" is
kvn@498 525 // "jvms_adj". Produce and return a SafePointScalarObjectNode that
kvn@498 526 // corresponds appropriately to "this" in "new_call". Assumes that
kvn@498 527 // "sosn_map" is a map, specific to the translation of "s" to "new_call",
kvn@498 528 // mapping old SafePointScalarObjectNodes to new, to avoid multiple copies.
kvn@5626 529 SafePointScalarObjectNode* clone(Dict* sosn_map) const;
kvn@498 530
kvn@498 531 #ifndef PRODUCT
kvn@498 532 virtual void dump_spec(outputStream *st) const;
kvn@498 533 #endif
kvn@498 534 };
kvn@498 535
never@1515 536
never@1515 537 // Simple container for the outgoing projections of a call. Useful
never@1515 538 // for serious surgery on calls.
never@1515 539 class CallProjections : public StackObj {
never@1515 540 public:
never@1515 541 Node* fallthrough_proj;
never@1515 542 Node* fallthrough_catchproj;
never@1515 543 Node* fallthrough_memproj;
never@1515 544 Node* fallthrough_ioproj;
never@1515 545 Node* catchall_catchproj;
never@1515 546 Node* catchall_memproj;
never@1515 547 Node* catchall_ioproj;
never@1515 548 Node* resproj;
never@1515 549 Node* exobj;
never@1515 550 };
never@1515 551
roland@4409 552 class CallGenerator;
never@1515 553
duke@435 554 //------------------------------CallNode---------------------------------------
duke@435 555 // Call nodes now subsume the function of debug nodes at callsites, so they
duke@435 556 // contain the functionality of a full scope chain of debug nodes.
duke@435 557 class CallNode : public SafePointNode {
never@3138 558 friend class VMStructs;
duke@435 559 public:
duke@435 560 const TypeFunc *_tf; // Function type
duke@435 561 address _entry_point; // Address of method being called
duke@435 562 float _cnt; // Estimate of number of times called
roland@4409 563 CallGenerator* _generator; // corresponding CallGenerator for some late inline calls
duke@435 564
duke@435 565 CallNode(const TypeFunc* tf, address addr, const TypePtr* adr_type)
duke@435 566 : SafePointNode(tf->domain()->cnt(), NULL, adr_type),
duke@435 567 _tf(tf),
duke@435 568 _entry_point(addr),
roland@4409 569 _cnt(COUNT_UNKNOWN),
roland@4409 570 _generator(NULL)
duke@435 571 {
duke@435 572 init_class_id(Class_Call);
duke@435 573 }
duke@435 574
roland@4409 575 const TypeFunc* tf() const { return _tf; }
roland@4409 576 const address entry_point() const { return _entry_point; }
roland@4409 577 const float cnt() const { return _cnt; }
roland@4409 578 CallGenerator* generator() const { return _generator; }
duke@435 579
roland@4409 580 void set_tf(const TypeFunc* tf) { _tf = tf; }
roland@4409 581 void set_entry_point(address p) { _entry_point = p; }
roland@4409 582 void set_cnt(float c) { _cnt = c; }
roland@4409 583 void set_generator(CallGenerator* cg) { _generator = cg; }
duke@435 584
duke@435 585 virtual const Type *bottom_type() const;
duke@435 586 virtual const Type *Value( PhaseTransform *phase ) const;
roland@4409 587 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
duke@435 588 virtual Node *Identity( PhaseTransform *phase ) { return this; }
duke@435 589 virtual uint cmp( const Node &n ) const;
duke@435 590 virtual uint size_of() const = 0;
duke@435 591 virtual void calling_convention( BasicType* sig_bt, VMRegPair *parm_regs, uint argcnt ) const;
duke@435 592 virtual Node *match( const ProjNode *proj, const Matcher *m );
duke@435 593 virtual uint ideal_reg() const { return NotAMachineReg; }
duke@435 594 // Are we guaranteed that this node is a safepoint? Not true for leaf calls and
duke@435 595 // for some macro nodes whose expansion does not have a safepoint on the fast path.
duke@435 596 virtual bool guaranteed_safepoint() { return true; }
goetz@6499 597 // For macro nodes, the JVMState gets modified during expansion. If calls
goetz@6499 598 // use MachConstantBase, it gets modified during matching. So when cloning
goetz@6499 599 // the node the JVMState must be cloned. Default is not to clone.
goetz@6499 600 virtual void clone_jvms(Compile* C) {
goetz@6499 601 if (C->needs_clone_jvms() && jvms() != NULL) {
goetz@6499 602 set_jvms(jvms()->clone_deep(C));
goetz@6499 603 jvms()->set_map_deep(this);
goetz@6499 604 }
goetz@6499 605 }
duke@435 606
kvn@500 607 // Returns true if the call may modify n
kvn@5110 608 virtual bool may_modify(const TypeOopPtr *t_oop, PhaseTransform *phase);
kvn@500 609 // Does this node have a use of n other than in debug information?
kvn@603 610 bool has_non_debug_use(Node *n);
kvn@500 611 // Returns the unique CheckCastPP of a call
kvn@500 612 // or result projection is there are several CheckCastPP
kvn@500 613 // or returns NULL if there is no one.
kvn@500 614 Node *result_cast();
kvn@3651 615 // Does this node returns pointer?
kvn@3651 616 bool returns_pointer() const {
kvn@3651 617 const TypeTuple *r = tf()->range();
kvn@3651 618 return (r->cnt() > TypeFunc::Parms &&
kvn@3651 619 r->field_at(TypeFunc::Parms)->isa_ptr());
kvn@3651 620 }
kvn@500 621
never@1515 622 // Collect all the interesting edges from a call for use in
never@1515 623 // replacing the call by something else. Used by macro expansion
never@1515 624 // and the late inlining support.
never@1515 625 void extract_projections(CallProjections* projs, bool separate_io_proj);
never@1515 626
duke@435 627 virtual uint match_edge(uint idx) const;
duke@435 628
duke@435 629 #ifndef PRODUCT
kvn@4478 630 virtual void dump_req(outputStream *st = tty) const;
duke@435 631 virtual void dump_spec(outputStream *st) const;
duke@435 632 #endif
duke@435 633 };
duke@435 634
never@1515 635
duke@435 636 //------------------------------CallJavaNode-----------------------------------
duke@435 637 // Make a static or dynamic subroutine call node using Java calling
duke@435 638 // convention. (The "Java" calling convention is the compiler's calling
duke@435 639 // convention, as opposed to the interpreter's or that of native C.)
duke@435 640 class CallJavaNode : public CallNode {
never@3138 641 friend class VMStructs;
duke@435 642 protected:
duke@435 643 virtual uint cmp( const Node &n ) const;
duke@435 644 virtual uint size_of() const; // Size is bigger
duke@435 645
duke@435 646 bool _optimized_virtual;
twisti@1572 647 bool _method_handle_invoke;
duke@435 648 ciMethod* _method; // Method being direct called
duke@435 649 public:
duke@435 650 const int _bci; // Byte Code Index of call byte code
duke@435 651 CallJavaNode(const TypeFunc* tf , address addr, ciMethod* method, int bci)
duke@435 652 : CallNode(tf, addr, TypePtr::BOTTOM),
twisti@1572 653 _method(method), _bci(bci),
twisti@1572 654 _optimized_virtual(false),
twisti@1572 655 _method_handle_invoke(false)
duke@435 656 {
duke@435 657 init_class_id(Class_CallJava);
duke@435 658 }
duke@435 659
duke@435 660 virtual int Opcode() const;
duke@435 661 ciMethod* method() const { return _method; }
duke@435 662 void set_method(ciMethod *m) { _method = m; }
duke@435 663 void set_optimized_virtual(bool f) { _optimized_virtual = f; }
duke@435 664 bool is_optimized_virtual() const { return _optimized_virtual; }
twisti@1572 665 void set_method_handle_invoke(bool f) { _method_handle_invoke = f; }
twisti@1572 666 bool is_method_handle_invoke() const { return _method_handle_invoke; }
duke@435 667
duke@435 668 #ifndef PRODUCT
duke@435 669 virtual void dump_spec(outputStream *st) const;
duke@435 670 #endif
duke@435 671 };
duke@435 672
duke@435 673 //------------------------------CallStaticJavaNode-----------------------------
duke@435 674 // Make a direct subroutine call using Java calling convention (for static
duke@435 675 // calls and optimized virtual calls, plus calls to wrappers for run-time
duke@435 676 // routines); generates static stub.
duke@435 677 class CallStaticJavaNode : public CallJavaNode {
duke@435 678 virtual uint cmp( const Node &n ) const;
duke@435 679 virtual uint size_of() const; // Size is bigger
duke@435 680 public:
kvn@5110 681 CallStaticJavaNode(Compile* C, const TypeFunc* tf, address addr, ciMethod* method, int bci)
duke@435 682 : CallJavaNode(tf, addr, method, bci), _name(NULL) {
duke@435 683 init_class_id(Class_CallStaticJava);
kvn@5110 684 if (C->eliminate_boxing() && (method != NULL) && method->is_boxing_method()) {
kvn@5110 685 init_flags(Flag_is_macro);
kvn@5110 686 C->add_macro_node(this);
kvn@5110 687 }
kvn@5110 688 _is_scalar_replaceable = false;
kvn@5110 689 _is_non_escaping = false;
duke@435 690 }
duke@435 691 CallStaticJavaNode(const TypeFunc* tf, address addr, const char* name, int bci,
duke@435 692 const TypePtr* adr_type)
duke@435 693 : CallJavaNode(tf, addr, NULL, bci), _name(name) {
duke@435 694 init_class_id(Class_CallStaticJava);
duke@435 695 // This node calls a runtime stub, which often has narrow memory effects.
duke@435 696 _adr_type = adr_type;
kvn@5110 697 _is_scalar_replaceable = false;
kvn@5110 698 _is_non_escaping = false;
duke@435 699 }
kvn@5110 700 const char *_name; // Runtime wrapper name
kvn@5110 701
kvn@5110 702 // Result of Escape Analysis
kvn@5110 703 bool _is_scalar_replaceable;
kvn@5110 704 bool _is_non_escaping;
duke@435 705
duke@435 706 // If this is an uncommon trap, return the request code, else zero.
duke@435 707 int uncommon_trap_request() const;
duke@435 708 static int extract_uncommon_trap_request(const Node* call);
duke@435 709
kvn@5110 710 bool is_boxing_method() const {
kvn@5110 711 return is_macro() && (method() != NULL) && method()->is_boxing_method();
kvn@5110 712 }
kvn@5110 713 // Later inlining modifies the JVMState, so we need to clone it
kvn@5110 714 // when the call node is cloned (because it is macro node).
kvn@5110 715 virtual void clone_jvms(Compile* C) {
kvn@5110 716 if ((jvms() != NULL) && is_boxing_method()) {
kvn@5110 717 set_jvms(jvms()->clone_deep(C));
kvn@5110 718 jvms()->set_map_deep(this);
kvn@5110 719 }
kvn@5110 720 }
kvn@5110 721
duke@435 722 virtual int Opcode() const;
duke@435 723 #ifndef PRODUCT
duke@435 724 virtual void dump_spec(outputStream *st) const;
duke@435 725 #endif
duke@435 726 };
duke@435 727
duke@435 728 //------------------------------CallDynamicJavaNode----------------------------
duke@435 729 // Make a dispatched call using Java calling convention.
duke@435 730 class CallDynamicJavaNode : public CallJavaNode {
duke@435 731 virtual uint cmp( const Node &n ) const;
duke@435 732 virtual uint size_of() const; // Size is bigger
duke@435 733 public:
duke@435 734 CallDynamicJavaNode( const TypeFunc *tf , address addr, ciMethod* method, int vtable_index, int bci ) : CallJavaNode(tf,addr,method,bci), _vtable_index(vtable_index) {
duke@435 735 init_class_id(Class_CallDynamicJava);
duke@435 736 }
duke@435 737
duke@435 738 int _vtable_index;
duke@435 739 virtual int Opcode() const;
duke@435 740 #ifndef PRODUCT
duke@435 741 virtual void dump_spec(outputStream *st) const;
duke@435 742 #endif
duke@435 743 };
duke@435 744
duke@435 745 //------------------------------CallRuntimeNode--------------------------------
duke@435 746 // Make a direct subroutine call node into compiled C++ code.
duke@435 747 class CallRuntimeNode : public CallNode {
duke@435 748 virtual uint cmp( const Node &n ) const;
duke@435 749 virtual uint size_of() const; // Size is bigger
duke@435 750 public:
duke@435 751 CallRuntimeNode(const TypeFunc* tf, address addr, const char* name,
duke@435 752 const TypePtr* adr_type)
duke@435 753 : CallNode(tf, addr, adr_type),
duke@435 754 _name(name)
duke@435 755 {
duke@435 756 init_class_id(Class_CallRuntime);
duke@435 757 }
duke@435 758
duke@435 759 const char *_name; // Printable name, if _method is NULL
duke@435 760 virtual int Opcode() const;
duke@435 761 virtual void calling_convention( BasicType* sig_bt, VMRegPair *parm_regs, uint argcnt ) const;
duke@435 762
duke@435 763 #ifndef PRODUCT
duke@435 764 virtual void dump_spec(outputStream *st) const;
duke@435 765 #endif
duke@435 766 };
duke@435 767
duke@435 768 //------------------------------CallLeafNode-----------------------------------
duke@435 769 // Make a direct subroutine call node into compiled C++ code, without
duke@435 770 // safepoints
duke@435 771 class CallLeafNode : public CallRuntimeNode {
duke@435 772 public:
duke@435 773 CallLeafNode(const TypeFunc* tf, address addr, const char* name,
duke@435 774 const TypePtr* adr_type)
duke@435 775 : CallRuntimeNode(tf, addr, name, adr_type)
duke@435 776 {
duke@435 777 init_class_id(Class_CallLeaf);
duke@435 778 }
duke@435 779 virtual int Opcode() const;
duke@435 780 virtual bool guaranteed_safepoint() { return false; }
duke@435 781 #ifndef PRODUCT
duke@435 782 virtual void dump_spec(outputStream *st) const;
duke@435 783 #endif
duke@435 784 };
duke@435 785
duke@435 786 //------------------------------CallLeafNoFPNode-------------------------------
duke@435 787 // CallLeafNode, not using floating point or using it in the same manner as
duke@435 788 // the generated code
duke@435 789 class CallLeafNoFPNode : public CallLeafNode {
duke@435 790 public:
duke@435 791 CallLeafNoFPNode(const TypeFunc* tf, address addr, const char* name,
duke@435 792 const TypePtr* adr_type)
duke@435 793 : CallLeafNode(tf, addr, name, adr_type)
duke@435 794 {
duke@435 795 }
duke@435 796 virtual int Opcode() const;
duke@435 797 };
duke@435 798
duke@435 799
duke@435 800 //------------------------------Allocate---------------------------------------
duke@435 801 // High-level memory allocation
duke@435 802 //
duke@435 803 // AllocateNode and AllocateArrayNode are subclasses of CallNode because they will
duke@435 804 // get expanded into a code sequence containing a call. Unlike other CallNodes,
duke@435 805 // they have 2 memory projections and 2 i_o projections (which are distinguished by
duke@435 806 // the _is_io_use flag in the projection.) This is needed when expanding the node in
duke@435 807 // order to differentiate the uses of the projection on the normal control path from
duke@435 808 // those on the exception return path.
duke@435 809 //
duke@435 810 class AllocateNode : public CallNode {
duke@435 811 public:
duke@435 812 enum {
duke@435 813 // Output:
duke@435 814 RawAddress = TypeFunc::Parms, // the newly-allocated raw address
duke@435 815 // Inputs:
duke@435 816 AllocSize = TypeFunc::Parms, // size (in bytes) of the new object
duke@435 817 KlassNode, // type (maybe dynamic) of the obj.
duke@435 818 InitialTest, // slow-path test (may be constant)
duke@435 819 ALength, // array length (or TOP if none)
duke@435 820 ParmLimit
duke@435 821 };
duke@435 822
kvn@5110 823 static const TypeFunc* alloc_type(const Type* t) {
duke@435 824 const Type** fields = TypeTuple::fields(ParmLimit - TypeFunc::Parms);
duke@435 825 fields[AllocSize] = TypeInt::POS;
duke@435 826 fields[KlassNode] = TypeInstPtr::NOTNULL;
duke@435 827 fields[InitialTest] = TypeInt::BOOL;
kvn@5110 828 fields[ALength] = t; // length (can be a bad length)
duke@435 829
duke@435 830 const TypeTuple *domain = TypeTuple::make(ParmLimit, fields);
duke@435 831
duke@435 832 // create result type (range)
duke@435 833 fields = TypeTuple::fields(1);
duke@435 834 fields[TypeFunc::Parms+0] = TypeRawPtr::NOTNULL; // Returned oop
duke@435 835
duke@435 836 const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+1, fields);
duke@435 837
duke@435 838 return TypeFunc::make(domain, range);
duke@435 839 }
duke@435 840
kvn@5110 841 // Result of Escape Analysis
kvn@5110 842 bool _is_scalar_replaceable;
kvn@5110 843 bool _is_non_escaping;
kvn@474 844
duke@435 845 virtual uint size_of() const; // Size is bigger
duke@435 846 AllocateNode(Compile* C, const TypeFunc *atype, Node *ctrl, Node *mem, Node *abio,
duke@435 847 Node *size, Node *klass_node, Node *initial_test);
duke@435 848 // Expansion modifies the JVMState, so we need to clone it
kvn@5110 849 virtual void clone_jvms(Compile* C) {
kvn@5110 850 if (jvms() != NULL) {
kvn@5110 851 set_jvms(jvms()->clone_deep(C));
kvn@5110 852 jvms()->set_map_deep(this);
kvn@5110 853 }
duke@435 854 }
duke@435 855 virtual int Opcode() const;
duke@435 856 virtual uint ideal_reg() const { return Op_RegP; }
duke@435 857 virtual bool guaranteed_safepoint() { return false; }
duke@435 858
kvn@500 859 // allocations do not modify their arguments
kvn@5110 860 virtual bool may_modify(const TypeOopPtr *t_oop, PhaseTransform *phase) { return false;}
kvn@500 861
duke@435 862 // Pattern-match a possible usage of AllocateNode.
duke@435 863 // Return null if no allocation is recognized.
duke@435 864 // The operand is the pointer produced by the (possible) allocation.
duke@435 865 // It must be a projection of the Allocate or its subsequent CastPP.
duke@435 866 // (Note: This function is defined in file graphKit.cpp, near
duke@435 867 // GraphKit::new_instance/new_array, whose output it recognizes.)
duke@435 868 // The 'ptr' may not have an offset unless the 'offset' argument is given.
duke@435 869 static AllocateNode* Ideal_allocation(Node* ptr, PhaseTransform* phase);
duke@435 870
duke@435 871 // Fancy version which uses AddPNode::Ideal_base_and_offset to strip
duke@435 872 // an offset, which is reported back to the caller.
duke@435 873 // (Note: AllocateNode::Ideal_allocation is defined in graphKit.cpp.)
duke@435 874 static AllocateNode* Ideal_allocation(Node* ptr, PhaseTransform* phase,
duke@435 875 intptr_t& offset);
duke@435 876
duke@435 877 // Dig the klass operand out of a (possible) allocation site.
duke@435 878 static Node* Ideal_klass(Node* ptr, PhaseTransform* phase) {
duke@435 879 AllocateNode* allo = Ideal_allocation(ptr, phase);
duke@435 880 return (allo == NULL) ? NULL : allo->in(KlassNode);
duke@435 881 }
duke@435 882
duke@435 883 // Conservatively small estimate of offset of first non-header byte.
duke@435 884 int minimum_header_size() {
coleenp@548 885 return is_AllocateArray() ? arrayOopDesc::base_offset_in_bytes(T_BYTE) :
coleenp@548 886 instanceOopDesc::base_offset_in_bytes();
duke@435 887 }
duke@435 888
duke@435 889 // Return the corresponding initialization barrier (or null if none).
duke@435 890 // Walks out edges to find it...
duke@435 891 // (Note: Both InitializeNode::allocation and AllocateNode::initialization
duke@435 892 // are defined in graphKit.cpp, which sets up the bidirectional relation.)
duke@435 893 InitializeNode* initialization();
duke@435 894
duke@435 895 // Convenience for initialization->maybe_set_complete(phase)
duke@435 896 bool maybe_set_complete(PhaseGVN* phase);
duke@435 897 };
duke@435 898
duke@435 899 //------------------------------AllocateArray---------------------------------
duke@435 900 //
duke@435 901 // High-level array allocation
duke@435 902 //
duke@435 903 class AllocateArrayNode : public AllocateNode {
duke@435 904 public:
duke@435 905 AllocateArrayNode(Compile* C, const TypeFunc *atype, Node *ctrl, Node *mem, Node *abio,
duke@435 906 Node* size, Node* klass_node, Node* initial_test,
duke@435 907 Node* count_val
duke@435 908 )
duke@435 909 : AllocateNode(C, atype, ctrl, mem, abio, size, klass_node,
duke@435 910 initial_test)
duke@435 911 {
duke@435 912 init_class_id(Class_AllocateArray);
duke@435 913 set_req(AllocateNode::ALength, count_val);
duke@435 914 }
duke@435 915 virtual int Opcode() const;
kvn@1139 916 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
duke@435 917
rasbold@801 918 // Dig the length operand out of a array allocation site.
rasbold@801 919 Node* Ideal_length() {
rasbold@801 920 return in(AllocateNode::ALength);
rasbold@801 921 }
rasbold@801 922
rasbold@801 923 // Dig the length operand out of a array allocation site and narrow the
rasbold@801 924 // type with a CastII, if necesssary
rasbold@801 925 Node* make_ideal_length(const TypeOopPtr* ary_type, PhaseTransform *phase, bool can_create = true);
rasbold@801 926
duke@435 927 // Pattern-match a possible usage of AllocateArrayNode.
duke@435 928 // Return null if no allocation is recognized.
duke@435 929 static AllocateArrayNode* Ideal_array_allocation(Node* ptr, PhaseTransform* phase) {
duke@435 930 AllocateNode* allo = Ideal_allocation(ptr, phase);
duke@435 931 return (allo == NULL || !allo->is_AllocateArray())
duke@435 932 ? NULL : allo->as_AllocateArray();
duke@435 933 }
duke@435 934 };
duke@435 935
duke@435 936 //------------------------------AbstractLockNode-----------------------------------
duke@435 937 class AbstractLockNode: public CallNode {
duke@435 938 private:
kvn@3406 939 enum {
kvn@3406 940 Regular = 0, // Normal lock
kvn@3406 941 NonEscObj, // Lock is used for non escaping object
kvn@3406 942 Coarsened, // Lock was coarsened
kvn@3406 943 Nested // Nested lock
kvn@3406 944 } _kind;
duke@435 945 #ifndef PRODUCT
duke@435 946 NamedCounter* _counter;
duke@435 947 #endif
duke@435 948
duke@435 949 protected:
duke@435 950 // helper functions for lock elimination
duke@435 951 //
duke@435 952
duke@435 953 bool find_matching_unlock(const Node* ctrl, LockNode* lock,
duke@435 954 GrowableArray<AbstractLockNode*> &lock_ops);
duke@435 955 bool find_lock_and_unlock_through_if(Node* node, LockNode* lock,
duke@435 956 GrowableArray<AbstractLockNode*> &lock_ops);
duke@435 957 bool find_unlocks_for_region(const RegionNode* region, LockNode* lock,
duke@435 958 GrowableArray<AbstractLockNode*> &lock_ops);
duke@435 959 LockNode *find_matching_lock(UnlockNode* unlock);
duke@435 960
kvn@3406 961 // Update the counter to indicate that this lock was eliminated.
kvn@3406 962 void set_eliminated_lock_counter() PRODUCT_RETURN;
duke@435 963
duke@435 964 public:
duke@435 965 AbstractLockNode(const TypeFunc *tf)
duke@435 966 : CallNode(tf, NULL, TypeRawPtr::BOTTOM),
kvn@3406 967 _kind(Regular)
duke@435 968 {
duke@435 969 #ifndef PRODUCT
duke@435 970 _counter = NULL;
duke@435 971 #endif
duke@435 972 }
duke@435 973 virtual int Opcode() const = 0;
duke@435 974 Node * obj_node() const {return in(TypeFunc::Parms + 0); }
duke@435 975 Node * box_node() const {return in(TypeFunc::Parms + 1); }
duke@435 976 Node * fastlock_node() const {return in(TypeFunc::Parms + 2); }
kvn@3406 977 void set_box_node(Node* box) { set_req(TypeFunc::Parms + 1, box); }
kvn@3406 978
duke@435 979 const Type *sub(const Type *t1, const Type *t2) const { return TypeInt::CC;}
duke@435 980
duke@435 981 virtual uint size_of() const { return sizeof(*this); }
duke@435 982
kvn@3406 983 bool is_eliminated() const { return (_kind != Regular); }
kvn@3406 984 bool is_non_esc_obj() const { return (_kind == NonEscObj); }
kvn@3406 985 bool is_coarsened() const { return (_kind == Coarsened); }
kvn@3406 986 bool is_nested() const { return (_kind == Nested); }
duke@435 987
kvn@3406 988 void set_non_esc_obj() { _kind = NonEscObj; set_eliminated_lock_counter(); }
kvn@3406 989 void set_coarsened() { _kind = Coarsened; set_eliminated_lock_counter(); }
kvn@3406 990 void set_nested() { _kind = Nested; set_eliminated_lock_counter(); }
kvn@895 991
kvn@500 992 // locking does not modify its arguments
kvn@5110 993 virtual bool may_modify(const TypeOopPtr *t_oop, PhaseTransform *phase){ return false;}
kvn@500 994
duke@435 995 #ifndef PRODUCT
duke@435 996 void create_lock_counter(JVMState* s);
duke@435 997 NamedCounter* counter() const { return _counter; }
duke@435 998 #endif
duke@435 999 };
duke@435 1000
duke@435 1001 //------------------------------Lock---------------------------------------
duke@435 1002 // High-level lock operation
duke@435 1003 //
duke@435 1004 // This is a subclass of CallNode because it is a macro node which gets expanded
duke@435 1005 // into a code sequence containing a call. This node takes 3 "parameters":
duke@435 1006 // 0 - object to lock
duke@435 1007 // 1 - a BoxLockNode
duke@435 1008 // 2 - a FastLockNode
duke@435 1009 //
duke@435 1010 class LockNode : public AbstractLockNode {
duke@435 1011 public:
duke@435 1012
duke@435 1013 static const TypeFunc *lock_type() {
duke@435 1014 // create input type (domain)
duke@435 1015 const Type **fields = TypeTuple::fields(3);
duke@435 1016 fields[TypeFunc::Parms+0] = TypeInstPtr::NOTNULL; // Object to be Locked
duke@435 1017 fields[TypeFunc::Parms+1] = TypeRawPtr::BOTTOM; // Address of stack location for lock
duke@435 1018 fields[TypeFunc::Parms+2] = TypeInt::BOOL; // FastLock
duke@435 1019 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+3,fields);
duke@435 1020
duke@435 1021 // create result type (range)
duke@435 1022 fields = TypeTuple::fields(0);
duke@435 1023
duke@435 1024 const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+0,fields);
duke@435 1025
duke@435 1026 return TypeFunc::make(domain,range);
duke@435 1027 }
duke@435 1028
duke@435 1029 virtual int Opcode() const;
duke@435 1030 virtual uint size_of() const; // Size is bigger
duke@435 1031 LockNode(Compile* C, const TypeFunc *tf) : AbstractLockNode( tf ) {
duke@435 1032 init_class_id(Class_Lock);
duke@435 1033 init_flags(Flag_is_macro);
duke@435 1034 C->add_macro_node(this);
duke@435 1035 }
duke@435 1036 virtual bool guaranteed_safepoint() { return false; }
duke@435 1037
duke@435 1038 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
duke@435 1039 // Expansion modifies the JVMState, so we need to clone it
kvn@5110 1040 virtual void clone_jvms(Compile* C) {
kvn@5110 1041 if (jvms() != NULL) {
kvn@5110 1042 set_jvms(jvms()->clone_deep(C));
kvn@5110 1043 jvms()->set_map_deep(this);
kvn@5110 1044 }
duke@435 1045 }
kvn@3406 1046
kvn@3406 1047 bool is_nested_lock_region(); // Is this Lock nested?
duke@435 1048 };
duke@435 1049
duke@435 1050 //------------------------------Unlock---------------------------------------
duke@435 1051 // High-level unlock operation
duke@435 1052 class UnlockNode : public AbstractLockNode {
duke@435 1053 public:
duke@435 1054 virtual int Opcode() const;
duke@435 1055 virtual uint size_of() const; // Size is bigger
duke@435 1056 UnlockNode(Compile* C, const TypeFunc *tf) : AbstractLockNode( tf ) {
duke@435 1057 init_class_id(Class_Unlock);
duke@435 1058 init_flags(Flag_is_macro);
duke@435 1059 C->add_macro_node(this);
duke@435 1060 }
duke@435 1061 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
duke@435 1062 // unlock is never a safepoint
duke@435 1063 virtual bool guaranteed_safepoint() { return false; }
duke@435 1064 };
stefank@2314 1065
stefank@2314 1066 #endif // SHARE_VM_OPTO_CALLNODE_HPP

mercurial