1 /*
2  * Copyright (c) 1997, 2021, Oracle and/or its affiliates. All rights reserved.
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  *
19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20  * or visit www.oracle.com if you need additional information or have any
21  * questions.
22  *
23  */
24 
25 #ifndef SHARE_VM_OPTO_MACHNODE_HPP
26 #define SHARE_VM_OPTO_MACHNODE_HPP
27 
28 #include "opto/callnode.hpp"
29 #include "opto/matcher.hpp"
30 #include "opto/multnode.hpp"
31 #include "opto/node.hpp"
32 #include "opto/regmask.hpp"
33 
34 class BiasedLockingCounters;
35 class BufferBlob;
36 class CodeBuffer;
37 class JVMState;
38 class MachCallDynamicJavaNode;
39 class MachCallJavaNode;
40 class MachCallLeafNode;
41 class MachCallNode;
42 class MachCallRuntimeNode;
43 class MachCallStaticJavaNode;
44 class MachEpilogNode;
45 class MachIfNode;
46 class MachNullCheckNode;
47 class MachOper;
48 class MachProjNode;
49 class MachPrologNode;
50 class MachReturnNode;
51 class MachSafePointNode;
52 class MachSpillCopyNode;
53 class Matcher;
54 class PhaseRegAlloc;
55 class RegMask;
56 class RTMLockingCounters;
57 class State;
58 
59 //---------------------------MachOper------------------------------------------
60 class MachOper : public ResourceObj {
61 public:
62   // Allocate right next to the MachNodes in the same arena
operator new(size_t x)63   void *operator new(size_t x) throw() {
64     Compile* C = Compile::current();
65     return C->node_arena()->Amalloc_D(x);
66   }
67 
68   // Opcode
69   virtual uint opcode() const = 0;
70 
71   // Number of input edges.
72   // Generally at least 1
num_edges() const73   virtual uint num_edges() const { return 1; }
74   // Array of Register masks
75   virtual const RegMask *in_RegMask(int index) const;
76 
77   // Methods to output the encoding of the operand
78 
79   // Negate conditional branches.  Error for non-branch Nodes
80   virtual void negate();
81 
82   // Return the value requested
83   // result register lookup, corresponding to int_format
84   virtual int  reg(PhaseRegAlloc *ra_, const Node *node)   const;
85   // input register lookup, corresponding to ext_format
86   virtual int  reg(PhaseRegAlloc *ra_, const Node *node, int idx)   const;
87 
88   // helpers for MacroAssembler generation from ADLC
as_Register(PhaseRegAlloc * ra_,const Node * node) const89   Register  as_Register(PhaseRegAlloc *ra_, const Node *node)   const {
90     return ::as_Register(reg(ra_, node));
91   }
as_Register(PhaseRegAlloc * ra_,const Node * node,int idx) const92   Register  as_Register(PhaseRegAlloc *ra_, const Node *node, int idx)   const {
93     return ::as_Register(reg(ra_, node, idx));
94   }
as_FloatRegister(PhaseRegAlloc * ra_,const Node * node) const95   FloatRegister  as_FloatRegister(PhaseRegAlloc *ra_, const Node *node)   const {
96     return ::as_FloatRegister(reg(ra_, node));
97   }
as_FloatRegister(PhaseRegAlloc * ra_,const Node * node,int idx) const98   FloatRegister  as_FloatRegister(PhaseRegAlloc *ra_, const Node *node, int idx)   const {
99     return ::as_FloatRegister(reg(ra_, node, idx));
100   }
101 
102 #if defined(IA32) || defined(AMD64)
as_XMMRegister(PhaseRegAlloc * ra_,const Node * node) const103   XMMRegister  as_XMMRegister(PhaseRegAlloc *ra_, const Node *node)   const {
104     return ::as_XMMRegister(reg(ra_, node));
105   }
as_XMMRegister(PhaseRegAlloc * ra_,const Node * node,int idx) const106   XMMRegister  as_XMMRegister(PhaseRegAlloc *ra_, const Node *node, int idx)   const {
107     return ::as_XMMRegister(reg(ra_, node, idx));
108   }
109 #endif
110   // CondRegister reg converter
111 #if defined(PPC64)
as_ConditionRegister(PhaseRegAlloc * ra_,const Node * node) const112   ConditionRegister as_ConditionRegister(PhaseRegAlloc *ra_, const Node *node) const {
113     return ::as_ConditionRegister(reg(ra_, node));
114   }
as_ConditionRegister(PhaseRegAlloc * ra_,const Node * node,int idx) const115   ConditionRegister as_ConditionRegister(PhaseRegAlloc *ra_, const Node *node, int idx) const {
116     return ::as_ConditionRegister(reg(ra_, node, idx));
117   }
as_VectorRegister(PhaseRegAlloc * ra_,const Node * node) const118   VectorRegister as_VectorRegister(PhaseRegAlloc *ra_, const Node *node) const {
119     return ::as_VectorRegister(reg(ra_, node));
120   }
as_VectorRegister(PhaseRegAlloc * ra_,const Node * node,int idx) const121   VectorRegister as_VectorRegister(PhaseRegAlloc *ra_, const Node *node, int idx) const {
122     return ::as_VectorRegister(reg(ra_, node, idx));
123   }
as_VectorSRegister(PhaseRegAlloc * ra_,const Node * node) const124   VectorSRegister as_VectorSRegister(PhaseRegAlloc *ra_, const Node *node) const {
125     return ::as_VectorSRegister(reg(ra_, node));
126   }
as_VectorSRegister(PhaseRegAlloc * ra_,const Node * node,int idx) const127   VectorSRegister as_VectorSRegister(PhaseRegAlloc *ra_, const Node *node, int idx) const {
128     return ::as_VectorSRegister(reg(ra_, node, idx));
129   }
130 #endif
131 
132   virtual intptr_t  constant() const;
133   virtual relocInfo::relocType constant_reloc() const;
134   virtual jdouble constantD() const;
135   virtual jfloat  constantF() const;
136   virtual jlong   constantL() const;
137   virtual TypeOopPtr *oop() const;
138   virtual int  ccode() const;
139   // A zero, default, indicates this value is not needed.
140   // May need to lookup the base register, as done in int_ and ext_format
141   virtual int  base (PhaseRegAlloc *ra_, const Node *node, int idx) const;
142   virtual int  index(PhaseRegAlloc *ra_, const Node *node, int idx) const;
143   virtual int  scale() const;
144   // Parameters needed to support MEMORY_INTERFACE access to stackSlot
145   virtual int  disp (PhaseRegAlloc *ra_, const Node *node, int idx) const;
146   // Check for PC-Relative displacement
147   virtual relocInfo::relocType disp_reloc() const;
148   virtual int  constant_disp() const;   // usu. 0, may return Type::OffsetBot
149   virtual int  base_position()  const;  // base edge position, or -1
150   virtual int  index_position() const;  // index edge position, or -1
151 
152   // Access the TypeKlassPtr of operands with a base==RegI and disp==RegP
153   // Only returns non-null value for i486.ad's indOffset32X
disp_as_type() const154   virtual const TypePtr *disp_as_type() const { return NULL; }
155 
156   // Return the label
157   virtual Label *label() const;
158 
159   // Return the method's address
160   virtual intptr_t  method() const;
161 
162   // Hash and compare over operands are currently identical
163   virtual uint  hash() const;
164   virtual uint  cmp( const MachOper &oper ) const;
165 
166   // Virtual clone, since I do not know how big the MachOper is.
167   virtual MachOper *clone() const = 0;
168 
169   // Return ideal Type from simple operands.  Fail for complex operands.
170   virtual const Type *type() const;
171 
172   // Set an integer offset if we have one, or error otherwise
set_con(jint c0)173   virtual void set_con( jint c0 ) { ShouldNotReachHere();  }
174 
175 #ifndef PRODUCT
176   // Return name of operand
Name() const177   virtual const char    *Name() const { return "???";}
178 
179   // Methods to output the text version of the operand
180   virtual void int_format(PhaseRegAlloc *,const MachNode *node, outputStream *st) const = 0;
181   virtual void ext_format(PhaseRegAlloc *,const MachNode *node,int idx, outputStream *st) const=0;
182 
183   virtual void dump_spec(outputStream *st) const; // Print per-operand info
184 
185   // Check whether o is a valid oper.
notAnOper(const MachOper * o)186   static bool notAnOper(const MachOper *o) {
187     if (o == NULL)                   return true;
188     if (((intptr_t)o & 1) != 0)      return true;
189     if (*(address*)o == badAddress)  return true;  // kill by Node::destruct
190     return false;
191   }
192 #endif // !PRODUCT
193 };
194 
195 //------------------------------MachNode---------------------------------------
196 // Base type for all machine specific nodes.  All node classes generated by the
197 // ADLC inherit from this class.
198 class MachNode : public Node {
199 public:
MachNode()200   MachNode() : Node((uint)0), _num_opnds(0), _opnds(NULL) {
201     init_class_id(Class_Mach);
202   }
203   // Required boilerplate
size_of() const204   virtual uint size_of() const { return sizeof(MachNode); }
205   virtual int  Opcode() const;          // Always equal to MachNode
206   virtual uint rule() const = 0;        // Machine-specific opcode
207   // Number of inputs which come before the first operand.
208   // Generally at least 1, to skip the Control input
oper_input_base() const209   virtual uint oper_input_base() const { return 1; }
210   // Position of constant base node in node's inputs. -1 if
211   // no constant base node input.
mach_constant_base_node_input() const212   virtual uint mach_constant_base_node_input() const { return (uint)-1; }
213 
214   // Copy inputs and operands to new node of instruction.
215   // Called from cisc_version() and short_branch_version().
216   // !!!! The method's body is defined in ad_<arch>.cpp file.
217   void fill_new_machnode(MachNode *n) const;
218 
219   // Return an equivalent instruction using memory for cisc_operand position
220   virtual MachNode *cisc_version(int offset);
221   // Modify this instruction's register mask to use stack version for cisc_operand
222   virtual void use_cisc_RegMask();
223 
224   // Support for short branches
may_be_short_branch() const225   bool may_be_short_branch() const { return (flags() & Flag_may_be_short_branch) != 0; }
226 
227   // Avoid back to back some instructions on some CPUs.
228   enum AvoidBackToBackFlag { AVOID_NONE = 0,
229                              AVOID_BEFORE = Flag_avoid_back_to_back_before,
230                              AVOID_AFTER = Flag_avoid_back_to_back_after,
231                              AVOID_BEFORE_AND_AFTER = AVOID_BEFORE | AVOID_AFTER };
232 
avoid_back_to_back(AvoidBackToBackFlag flag_value) const233   bool avoid_back_to_back(AvoidBackToBackFlag flag_value) const {
234     return (flags() & flag_value) == flag_value;
235   }
236 
237   // instruction implemented with a call
has_call() const238   bool has_call() const { return (flags() & Flag_has_call) != 0; }
239 
240   // First index in _in[] corresponding to operand, or -1 if there is none
241   int  operand_index(uint operand) const;
242   int  operand_index(const MachOper *oper) const;
243 
244   // Register class input is expected in
245   virtual const RegMask &in_RegMask(uint) const;
246 
247   // cisc-spillable instructions redefine for use by in_RegMask
cisc_RegMask() const248   virtual const RegMask *cisc_RegMask() const { return NULL; }
249 
250   // If this instruction is a 2-address instruction, then return the
251   // index of the input which must match the output.  Not nessecary
252   // for instructions which bind the input and output register to the
253   // same singleton regiser (e.g., Intel IDIV which binds AX to be
254   // both an input and an output).  It is nessecary when the input and
255   // output have choices - but they must use the same choice.
two_adr() const256   virtual uint two_adr( ) const { return 0; }
257 
258   // Array of complex operand pointers.  Each corresponds to zero or
259   // more leafs.  Must be set by MachNode constructor to point to an
260   // internal array of MachOpers.  The MachOper array is sized by
261   // specific MachNodes described in the ADL.
262   uint _num_opnds;
263   MachOper **_opnds;
num_opnds() const264   uint  num_opnds() const { return _num_opnds; }
265 
266   // Emit bytes into cbuf
267   virtual void  emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const;
268   // Expand node after register allocation.
269   // Node is replaced by several nodes in the postalloc expand phase.
270   // Corresponding methods are generated for nodes if they specify
271   // postalloc_expand. See block.cpp for more documentation.
requires_postalloc_expand() const272   virtual bool requires_postalloc_expand() const { return false; }
273   virtual void postalloc_expand(GrowableArray <Node *> *nodes, PhaseRegAlloc *ra_);
274   // Size of instruction in bytes
275   virtual uint  size(PhaseRegAlloc *ra_) const;
276   // Helper function that computes size by emitting code
277   virtual uint  emit_size(PhaseRegAlloc *ra_) const;
278 
279   // Return the alignment required (in units of relocInfo::addr_unit())
280   // for this instruction (must be a power of 2)
alignment_required() const281   virtual int   alignment_required() const { return 1; }
282 
283   // Return the padding (in bytes) to be emitted before this
284   // instruction to properly align it.
compute_padding(int current_offset) const285   virtual int   compute_padding(int current_offset) const { return 0; }
286 
287   // Return number of relocatable values contained in this instruction
reloc() const288   virtual int   reloc() const { return 0; }
289 
290   // Return number of words used for double constants in this instruction
ins_num_consts() const291   virtual int   ins_num_consts() const { return 0; }
292 
293   // Hash and compare over operands.  Used to do GVN on machine Nodes.
294   virtual uint  hash() const;
295   virtual uint  cmp( const Node &n ) const;
296 
297   // Expand method for MachNode, replaces nodes representing pseudo
298   // instructions with a set of nodes which represent real machine
299   // instructions and compute the same value.
Expand(State *,Node_List & proj_list,Node * mem)300   virtual MachNode *Expand( State *, Node_List &proj_list, Node* mem ) { return this; }
301 
302   // Bottom_type call; value comes from operand0
bottom_type() const303   virtual const class Type *bottom_type() const { return _opnds[0]->type(); }
ideal_reg() const304   virtual uint ideal_reg() const { const Type *t = _opnds[0]->type(); return t == TypeInt::CC ? Op_RegFlags : t->ideal_reg(); }
305 
306   // If this is a memory op, return the base pointer and fixed offset.
307   // If there are no such, return NULL.  If there are multiple addresses
308   // or the address is indeterminate (rare cases) then return (Node*)-1,
309   // which serves as node bottom.
310   // If the offset is not statically determined, set it to Type::OffsetBot.
311   // This method is free to ignore stack slots if that helps.
312   #define TYPE_PTR_SENTINAL  ((const TypePtr*)-1)
313   // Passing TYPE_PTR_SENTINAL as adr_type asks for computation of the adr_type if possible
314   const Node* get_base_and_disp(intptr_t &offset, const TypePtr* &adr_type) const;
315 
316   // Helper for get_base_and_disp: find the base and index input nodes.
317   // Returns the MachOper as determined by memory_operand(), for use, if
318   // needed by the caller. If (MachOper *)-1 is returned, base and index
319   // are set to NodeSentinel. If (MachOper *) NULL is returned, base and
320   // index are set to NULL.
321   const MachOper* memory_inputs(Node* &base, Node* &index) const;
322 
323   // Helper for memory_inputs:  Which operand carries the necessary info?
324   // By default, returns NULL, which means there is no such operand.
325   // If it returns (MachOper*)-1, this means there are multiple memories.
memory_operand() const326   virtual const MachOper* memory_operand() const { return NULL; }
327 
328   // Call "get_base_and_disp" to decide which category of memory is used here.
329   virtual const class TypePtr *adr_type() const;
330 
331   // Apply peephole rule(s) to this instruction
332   virtual MachNode *peephole(Block *block, int block_index, PhaseRegAlloc *ra_, int &deleted);
333 
334   // Top-level ideal Opcode matched
ideal_Opcode() const335   virtual int ideal_Opcode()     const { return Op_Node; }
336 
337   // Adds the label for the case
338   virtual void add_case_label( int switch_val, Label* blockLabel);
339 
340   // Set the absolute address for methods
341   virtual void method_set( intptr_t addr );
342 
343   // Should we clone rather than spill this instruction?
344   bool rematerialize() const;
345 
346   // Get the pipeline info
347   static const Pipeline *pipeline_class();
348   virtual const Pipeline *pipeline() const;
349 
350   // Returns true if this node is a check that can be implemented with a trap.
is_TrapBasedCheckNode() const351   virtual bool is_TrapBasedCheckNode() const { return false; }
352 
353 #ifndef PRODUCT
354   virtual const char *Name() const = 0; // Machine-specific name
355   virtual void dump_spec(outputStream *st) const; // Print per-node info
356   void         dump_format(PhaseRegAlloc *ra, outputStream *st) const; // access to virtual
357 #endif
358 };
359 
360 //------------------------------MachIdealNode----------------------------
361 // Machine specific versions of nodes that must be defined by user.
362 // These are not converted by matcher from ideal nodes to machine nodes
363 // but are inserted into the code by the compiler.
364 class MachIdealNode : public MachNode {
365 public:
MachIdealNode()366   MachIdealNode( ) {}
367 
368   // Define the following defaults for non-matched machine nodes
oper_input_base() const369   virtual uint oper_input_base() const { return 0; }
rule() const370   virtual uint rule()            const { return 9999999; }
bottom_type() const371   virtual const class Type *bottom_type() const { return _opnds == NULL ? Type::CONTROL : MachNode::bottom_type(); }
372 };
373 
374 //------------------------------MachTypeNode----------------------------
375 // Machine Nodes that need to retain a known Type.
376 class MachTypeNode : public MachNode {
size_of() const377   virtual uint size_of() const { return sizeof(*this); } // Size is bigger
378 public:
MachTypeNode()379   MachTypeNode( ) {}
380   const Type *_bottom_type;
381 
bottom_type() const382   virtual const class Type *bottom_type() const { return _bottom_type; }
383 #ifndef PRODUCT
384   virtual void dump_spec(outputStream *st) const;
385 #endif
386 };
387 
388 //------------------------------MachBreakpointNode----------------------------
389 // Machine breakpoint or interrupt Node
390 class MachBreakpointNode : public MachIdealNode {
391 public:
MachBreakpointNode()392   MachBreakpointNode( ) {}
393   virtual void emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const;
394   virtual uint size(PhaseRegAlloc *ra_) const;
395 
396 #ifndef PRODUCT
Name() const397   virtual const char *Name() const { return "Breakpoint"; }
398   virtual void format( PhaseRegAlloc *, outputStream *st ) const;
399 #endif
400 };
401 
402 //------------------------------MachConstantBaseNode--------------------------
403 // Machine node that represents the base address of the constant table.
404 class MachConstantBaseNode : public MachIdealNode {
405 public:
406   static const RegMask& _out_RegMask;  // We need the out_RegMask statically in MachConstantNode::in_RegMask().
407 
408 public:
MachConstantBaseNode()409   MachConstantBaseNode() : MachIdealNode() {
410     init_class_id(Class_MachConstantBase);
411   }
bottom_type() const412   virtual const class Type* bottom_type() const { return TypeRawPtr::NOTNULL; }
ideal_reg() const413   virtual uint ideal_reg() const { return Op_RegP; }
oper_input_base() const414   virtual uint oper_input_base() const { return 1; }
415 
416   virtual bool requires_postalloc_expand() const;
417   virtual void postalloc_expand(GrowableArray <Node *> *nodes, PhaseRegAlloc *ra_);
418 
419   virtual void emit(CodeBuffer& cbuf, PhaseRegAlloc* ra_) const;
420   virtual uint size(PhaseRegAlloc* ra_) const;
pinned() const421   virtual bool pinned() const { return UseRDPCForConstantTableBase; }
422 
static_out_RegMask()423   static const RegMask& static_out_RegMask() { return _out_RegMask; }
out_RegMask() const424   virtual const RegMask& out_RegMask() const { return static_out_RegMask(); }
425 
426 #ifndef PRODUCT
Name() const427   virtual const char* Name() const { return "MachConstantBaseNode"; }
428   virtual void format(PhaseRegAlloc*, outputStream* st) const;
429 #endif
430 };
431 
432 //------------------------------MachConstantNode-------------------------------
433 // Machine node that holds a constant which is stored in the constant table.
434 class MachConstantNode : public MachTypeNode {
435 protected:
436   Compile::Constant _constant;  // This node's constant.
437 
438 public:
MachConstantNode()439   MachConstantNode() : MachTypeNode() {
440     init_class_id(Class_MachConstant);
441   }
442 
eval_constant(Compile * C)443   virtual void eval_constant(Compile* C) {
444 #ifdef ASSERT
445     tty->print("missing MachConstantNode eval_constant function: ");
446     dump();
447 #endif
448     ShouldNotCallThis();
449   }
450 
in_RegMask(uint idx) const451   virtual const RegMask &in_RegMask(uint idx) const {
452     if (idx == mach_constant_base_node_input())
453       return MachConstantBaseNode::static_out_RegMask();
454     return MachNode::in_RegMask(idx);
455   }
456 
457   // Input edge of MachConstantBaseNode.
mach_constant_base_node_input() const458   virtual uint mach_constant_base_node_input() const { return req() - 1; }
459 
460   int  constant_offset();
constant_offset() const461   int  constant_offset() const { return ((MachConstantNode*) this)->constant_offset(); }
462   // Unchecked version to avoid assertions in debug output.
463   int  constant_offset_unchecked() const;
464 };
465 
466 //------------------------------MachUEPNode-----------------------------------
467 // Machine Unvalidated Entry Point Node
468 class MachUEPNode : public MachIdealNode {
469 public:
MachUEPNode()470   MachUEPNode( ) {}
471   virtual void emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const;
472   virtual uint size(PhaseRegAlloc *ra_) const;
473 
474 #ifndef PRODUCT
Name() const475   virtual const char *Name() const { return "Unvalidated-Entry-Point"; }
476   virtual void format( PhaseRegAlloc *, outputStream *st ) const;
477 #endif
478 };
479 
480 //------------------------------MachPrologNode--------------------------------
481 // Machine function Prolog Node
482 class MachPrologNode : public MachIdealNode {
483 public:
MachPrologNode()484   MachPrologNode( ) {}
485   virtual void emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const;
486   virtual uint size(PhaseRegAlloc *ra_) const;
487   virtual int reloc() const;
488 
489 #ifndef PRODUCT
Name() const490   virtual const char *Name() const { return "Prolog"; }
491   virtual void format( PhaseRegAlloc *, outputStream *st ) const;
492 #endif
493 };
494 
495 //------------------------------MachEpilogNode--------------------------------
496 // Machine function Epilog Node
497 class MachEpilogNode : public MachIdealNode {
498 public:
MachEpilogNode(bool do_poll=false)499   MachEpilogNode(bool do_poll = false) : _do_polling(do_poll) {}
500   virtual void emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const;
501   virtual uint size(PhaseRegAlloc *ra_) const;
502   virtual int reloc() const;
503   virtual const Pipeline *pipeline() const;
504 
505 private:
506   bool _do_polling;
507 
508 public:
do_polling() const509   bool do_polling() const { return _do_polling; }
510 
511   // Offset of safepoint from the beginning of the node
512   int safepoint_offset() const;
513 
514 #ifndef PRODUCT
Name() const515   virtual const char *Name() const { return "Epilog"; }
516   virtual void format( PhaseRegAlloc *, outputStream *st ) const;
517 #endif
518 };
519 
520 //------------------------------MachNopNode-----------------------------------
521 // Machine function Nop Node
522 class MachNopNode : public MachIdealNode {
523 private:
524   int _count;
525 public:
MachNopNode()526   MachNopNode( ) : _count(1) {}
MachNopNode(int count)527   MachNopNode( int count ) : _count(count) {}
528   virtual void emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const;
529   virtual uint size(PhaseRegAlloc *ra_) const;
530 
bottom_type() const531   virtual const class Type *bottom_type() const { return Type::CONTROL; }
532 
ideal_Opcode() const533   virtual int ideal_Opcode() const { return Op_Con; } // bogus; see output.cpp
534   virtual const Pipeline *pipeline() const;
535 #ifndef PRODUCT
Name() const536   virtual const char *Name() const { return "Nop"; }
537   virtual void format( PhaseRegAlloc *, outputStream *st ) const;
dump_spec(outputStream * st) const538   virtual void dump_spec(outputStream *st) const { } // No per-operand info
539 #endif
540 };
541 
542 //------------------------------MachSpillCopyNode------------------------------
543 // Machine SpillCopy Node.  Copies 1 or 2 words from any location to any
544 // location (stack or register).
545 class MachSpillCopyNode : public MachIdealNode {
546 public:
547   enum SpillType {
548     TwoAddress,                        // Inserted when coalescing of a two-address-instruction node and its input fails
549     PhiInput,                          // Inserted when coalescing of a phi node and its input fails
550     DebugUse,                          // Inserted as debug info spills to safepoints in non-frequent blocks
551     LoopPhiInput,                      // Pre-split compares of loop-phis
552     Definition,                        // An lrg marked as spilled will be spilled to memory right after its definition,
553                                        // if in high pressure region or the lrg is bound
554     RegToReg,                          // A register to register move
555     RegToMem,                          // A register to memory move
556     MemToReg,                          // A memory to register move
557     PhiLocationDifferToInputLocation,  // When coalescing phi nodes in PhaseChaitin::Split(), a move spill is inserted if
558                                        // the phi and its input resides at different locations (i.e. reg or mem)
559     BasePointerToMem,                  // Spill base pointer to memory at safepoint
560     InputToRematerialization,          // When rematerializing a node we stretch the inputs live ranges, and they might be
561                                        // stretched beyond a new definition point, therefore we split out new copies instead
562     CallUse,                           // Spill use at a call
563     Bound                              // An lrg marked as spill that is bound and needs to be spilled at a use
564   };
565 private:
566   const RegMask *_in;           // RegMask for input
567   const RegMask *_out;          // RegMask for output
568   const Type *_type;
569   const SpillType _spill_type;
570 public:
MachSpillCopyNode(SpillType spill_type,Node * n,const RegMask & in,const RegMask & out)571   MachSpillCopyNode(SpillType spill_type, Node *n, const RegMask &in, const RegMask &out ) :
572     MachIdealNode(), _spill_type(spill_type), _in(&in), _out(&out), _type(n->bottom_type()) {
573     init_class_id(Class_MachSpillCopy);
574     init_flags(Flag_is_Copy);
575     add_req(NULL);
576     add_req(n);
577   }
size_of() const578   virtual uint size_of() const { return sizeof(*this); }
set_out_RegMask(const RegMask & out)579   void set_out_RegMask(const RegMask &out) { _out = &out; }
set_in_RegMask(const RegMask & in)580   void set_in_RegMask(const RegMask &in) { _in = &in; }
out_RegMask() const581   virtual const RegMask &out_RegMask() const { return *_out; }
in_RegMask(uint) const582   virtual const RegMask &in_RegMask(uint) const { return *_in; }
bottom_type() const583   virtual const class Type *bottom_type() const { return _type; }
ideal_reg() const584   virtual uint ideal_reg() const { return _type->ideal_reg(); }
oper_input_base() const585   virtual uint oper_input_base() const { return 1; }
586   uint implementation( CodeBuffer *cbuf, PhaseRegAlloc *ra_, bool do_size, outputStream* st ) const;
587 
588   virtual void emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const;
589   virtual uint size(PhaseRegAlloc *ra_) const;
590 
591 
592 #ifndef PRODUCT
spill_type(SpillType st)593   static const char *spill_type(SpillType st) {
594     switch (st) {
595       case TwoAddress:
596         return "TwoAddressSpillCopy";
597       case PhiInput:
598         return "PhiInputSpillCopy";
599       case DebugUse:
600         return "DebugUseSpillCopy";
601       case LoopPhiInput:
602         return "LoopPhiInputSpillCopy";
603       case Definition:
604         return "DefinitionSpillCopy";
605       case RegToReg:
606         return "RegToRegSpillCopy";
607       case RegToMem:
608         return "RegToMemSpillCopy";
609       case MemToReg:
610         return "MemToRegSpillCopy";
611       case PhiLocationDifferToInputLocation:
612         return "PhiLocationDifferToInputLocationSpillCopy";
613       case BasePointerToMem:
614         return "BasePointerToMemSpillCopy";
615       case InputToRematerialization:
616         return "InputToRematerializationSpillCopy";
617       case CallUse:
618         return "CallUseSpillCopy";
619       case Bound:
620         return "BoundSpillCopy";
621       default:
622         assert(false, "Must have valid spill type");
623         return "MachSpillCopy";
624     }
625   }
626 
Name() const627   virtual const char *Name() const {
628     return spill_type(_spill_type);
629   }
630 
631   virtual void format( PhaseRegAlloc *, outputStream *st ) const;
632 #endif
633 };
634 
635 // MachMergeNode is similar to a PhiNode in a sense it merges multiple values,
636 // however it doesn't have a control input and is more like a MergeMem.
637 // It is inserted after the register allocation is done to ensure that nodes use single
638 // definition of a multidef lrg in a block.
639 class MachMergeNode : public MachIdealNode {
640 public:
MachMergeNode(Node * n1)641   MachMergeNode(Node *n1) {
642     init_class_id(Class_MachMerge);
643     add_req(NULL);
644     add_req(n1);
645   }
out_RegMask() const646   virtual const RegMask &out_RegMask() const { return in(1)->out_RegMask(); }
in_RegMask(uint idx) const647   virtual const RegMask &in_RegMask(uint idx) const { return in(1)->in_RegMask(idx); }
bottom_type() const648   virtual const class Type *bottom_type() const { return in(1)->bottom_type(); }
ideal_reg() const649   virtual uint ideal_reg() const { return bottom_type()->ideal_reg(); }
oper_input_base() const650   virtual uint oper_input_base() const { return 1; }
emit(CodeBuffer & cbuf,PhaseRegAlloc * ra_) const651   virtual void emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const { }
size(PhaseRegAlloc * ra_) const652   virtual uint size(PhaseRegAlloc *ra_) const { return 0; }
653 #ifndef PRODUCT
Name() const654   virtual const char *Name() const { return "MachMerge"; }
655 #endif
656 };
657 
658 //------------------------------MachBranchNode--------------------------------
659 // Abstract machine branch Node
660 class MachBranchNode : public MachIdealNode {
661 public:
MachBranchNode()662   MachBranchNode() : MachIdealNode() {
663     init_class_id(Class_MachBranch);
664   }
665   virtual void label_set(Label* label, uint block_num) = 0;
666   virtual void save_label(Label** label, uint* block_num) = 0;
667 
668   // Support for short branches
short_branch_version()669   virtual MachNode *short_branch_version() { return NULL; }
670 
pinned() const671   virtual bool pinned() const { return true; };
672 };
673 
674 //------------------------------MachNullChkNode--------------------------------
675 // Machine-dependent null-pointer-check Node.  Points a real MachNode that is
676 // also some kind of memory op.  Turns the indicated MachNode into a
677 // conditional branch with good latency on the ptr-not-null path and awful
678 // latency on the pointer-is-null path.
679 
680 class MachNullCheckNode : public MachBranchNode {
681 public:
682   const uint _vidx;             // Index of memop being tested
MachNullCheckNode(Node * ctrl,Node * memop,uint vidx)683   MachNullCheckNode( Node *ctrl, Node *memop, uint vidx ) : MachBranchNode(), _vidx(vidx) {
684     init_class_id(Class_MachNullCheck);
685     add_req(ctrl);
686     add_req(memop);
687   }
688   virtual int Opcode() const;
size_of() const689   virtual uint size_of() const { return sizeof(*this); }
690 
691   virtual void emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const;
692   virtual void label_set(Label* label, uint block_num);
693   virtual void save_label(Label** label, uint* block_num);
negate()694   virtual void negate() { }
bottom_type() const695   virtual const class Type *bottom_type() const { return TypeTuple::IFBOTH; }
ideal_reg() const696   virtual uint ideal_reg() const { return NotAMachineReg; }
697   virtual const RegMask &in_RegMask(uint) const;
out_RegMask() const698   virtual const RegMask &out_RegMask() const { return RegMask::Empty; }
699 #ifndef PRODUCT
Name() const700   virtual const char *Name() const { return "NullCheck"; }
701   virtual void format( PhaseRegAlloc *, outputStream *st ) const;
702 #endif
703 };
704 
705 //------------------------------MachProjNode----------------------------------
706 // Machine-dependent Ideal projections (how is that for an oxymoron).  Really
707 // just MachNodes made by the Ideal world that replicate simple projections
708 // but with machine-dependent input & output register masks.  Generally
709 // produced as part of calling conventions.  Normally I make MachNodes as part
710 // of the Matcher process, but the Matcher is ill suited to issues involving
711 // frame handling, so frame handling is all done in the Ideal world with
712 // occasional callbacks to the machine model for important info.
713 class MachProjNode : public ProjNode {
714 public:
MachProjNode(Node * multi,uint con,const RegMask & out,uint ideal_reg)715   MachProjNode( Node *multi, uint con, const RegMask &out, uint ideal_reg ) : ProjNode(multi,con), _rout(out), _ideal_reg(ideal_reg) {
716     init_class_id(Class_MachProj);
717   }
718   RegMask _rout;
719   const uint  _ideal_reg;
720   enum projType {
721     unmatched_proj = 0,         // Projs for Control, I/O, memory not matched
722     fat_proj       = 999        // Projs killing many regs, defined by _rout
723   };
724   virtual int   Opcode() const;
725   virtual const Type *bottom_type() const;
726   virtual const TypePtr *adr_type() const;
in_RegMask(uint) const727   virtual const RegMask &in_RegMask(uint) const { return RegMask::Empty; }
out_RegMask() const728   virtual const RegMask &out_RegMask() const { return _rout; }
ideal_reg() const729   virtual uint  ideal_reg() const { return _ideal_reg; }
730   // Need size_of() for virtual ProjNode::clone()
size_of() const731   virtual uint  size_of() const { return sizeof(MachProjNode); }
732 #ifndef PRODUCT
733   virtual void dump_spec(outputStream *st) const;
734 #endif
735 };
736 
737 //------------------------------MachIfNode-------------------------------------
738 // Machine-specific versions of IfNodes
739 class MachIfNode : public MachBranchNode {
size_of() const740   virtual uint size_of() const { return sizeof(*this); } // Size is bigger
741 public:
742   float _prob;                  // Probability branch goes either way
743   float _fcnt;                  // Frequency counter
MachIfNode()744   MachIfNode() : MachBranchNode() {
745     init_class_id(Class_MachIf);
746   }
747   // Negate conditional branches.
748   virtual void negate() = 0;
749 #ifndef PRODUCT
750   virtual void dump_spec(outputStream *st) const;
751 #endif
752 };
753 
754 //------------------------------MachJumpNode-----------------------------------
755 // Machine-specific versions of JumpNodes
756 class MachJumpNode : public MachConstantNode {
757 public:
758   float* _probs;
MachJumpNode()759   MachJumpNode() : MachConstantNode() {
760     init_class_id(Class_MachJump);
761   }
762 };
763 
764 //------------------------------MachGotoNode-----------------------------------
765 // Machine-specific versions of GotoNodes
766 class MachGotoNode : public MachBranchNode {
767 public:
MachGotoNode()768   MachGotoNode() : MachBranchNode() {
769     init_class_id(Class_MachGoto);
770   }
771 };
772 
773 //------------------------------MachFastLockNode-------------------------------------
774 // Machine-specific versions of FastLockNodes
775 class MachFastLockNode : public MachNode {
size_of() const776   virtual uint size_of() const { return sizeof(*this); } // Size is bigger
777 public:
778   BiasedLockingCounters*        _counters;
779   RTMLockingCounters*       _rtm_counters; // RTM lock counters for inflated locks
780   RTMLockingCounters* _stack_rtm_counters; // RTM lock counters for stack locks
MachFastLockNode()781   MachFastLockNode() : MachNode() {}
782 };
783 
784 //------------------------------MachReturnNode--------------------------------
785 // Machine-specific versions of subroutine returns
786 class MachReturnNode : public MachNode {
787   virtual uint size_of() const; // Size is bigger
788 public:
789   RegMask *_in_rms;             // Input register masks, set during allocation
790   ReallocMark _nesting;         // assertion check for reallocations
791   const TypePtr* _adr_type;     // memory effects of call or return
MachReturnNode()792   MachReturnNode() : MachNode() {
793     init_class_id(Class_MachReturn);
794     _adr_type = TypePtr::BOTTOM; // the default: all of memory
795   }
796 
set_adr_type(const TypePtr * atp)797   void set_adr_type(const TypePtr* atp) { _adr_type = atp; }
798 
799   virtual const RegMask &in_RegMask(uint) const;
pinned() const800   virtual bool pinned() const { return true; };
801   virtual const TypePtr *adr_type() const;
802 };
803 
804 //------------------------------MachSafePointNode-----------------------------
805 // Machine-specific versions of safepoints
806 class MachSafePointNode : public MachReturnNode {
807 public:
808   OopMap*         _oop_map;     // Array of OopMap info (8-bit char) for GC
809   JVMState*       _jvms;        // Pointer to list of JVM State Objects
810   uint            _jvmadj;      // Extra delta to jvms indexes (mach. args)
oop_map() const811   OopMap*         oop_map() const { return _oop_map; }
set_oop_map(OopMap * om)812   void            set_oop_map(OopMap* om) { _oop_map = om; }
813 
MachSafePointNode()814   MachSafePointNode() : MachReturnNode(), _oop_map(NULL), _jvms(NULL), _jvmadj(0) {
815     init_class_id(Class_MachSafePoint);
816   }
817 
jvms() const818   virtual JVMState* jvms() const { return _jvms; }
set_jvms(JVMState * s)819   void set_jvms(JVMState* s) {
820     _jvms = s;
821   }
822   virtual const Type    *bottom_type() const;
823 
824   virtual const RegMask &in_RegMask(uint) const;
825 
826   // Functionality from old debug nodes
returnadr() const827   Node *returnadr() const { return in(TypeFunc::ReturnAdr); }
frameptr() const828   Node *frameptr () const { return in(TypeFunc::FramePtr); }
829 
local(const JVMState * jvms,uint idx) const830   Node *local(const JVMState* jvms, uint idx) const {
831     assert(verify_jvms(jvms), "jvms must match");
832     return in(_jvmadj + jvms->locoff() + idx);
833   }
stack(const JVMState * jvms,uint idx) const834   Node *stack(const JVMState* jvms, uint idx) const {
835     assert(verify_jvms(jvms), "jvms must match");
836     return in(_jvmadj + jvms->stkoff() + idx);
837  }
monitor_obj(const JVMState * jvms,uint idx) const838   Node *monitor_obj(const JVMState* jvms, uint idx) const {
839     assert(verify_jvms(jvms), "jvms must match");
840     return in(_jvmadj + jvms->monitor_obj_offset(idx));
841   }
monitor_box(const JVMState * jvms,uint idx) const842   Node *monitor_box(const JVMState* jvms, uint idx) const {
843     assert(verify_jvms(jvms), "jvms must match");
844     return in(_jvmadj + jvms->monitor_box_offset(idx));
845   }
set_local(const JVMState * jvms,uint idx,Node * c)846   void  set_local(const JVMState* jvms, uint idx, Node *c) {
847     assert(verify_jvms(jvms), "jvms must match");
848     set_req(_jvmadj + jvms->locoff() + idx, c);
849   }
set_stack(const JVMState * jvms,uint idx,Node * c)850   void  set_stack(const JVMState* jvms, uint idx, Node *c) {
851     assert(verify_jvms(jvms), "jvms must match");
852     set_req(_jvmadj + jvms->stkoff() + idx, c);
853   }
set_monitor(const JVMState * jvms,uint idx,Node * c)854   void  set_monitor(const JVMState* jvms, uint idx, Node *c) {
855     assert(verify_jvms(jvms), "jvms must match");
856     set_req(_jvmadj + jvms->monoff() + idx, c);
857   }
858 };
859 
860 //------------------------------MachCallNode----------------------------------
861 // Machine-specific versions of subroutine calls
862 class MachCallNode : public MachSafePointNode {
863 protected:
hash() const864   virtual uint hash() const { return NO_HASH; }  // CFG nodes do not hash
865   virtual uint cmp( const Node &n ) const;
866   virtual uint size_of() const = 0; // Size is bigger
867 public:
868   const TypeFunc *_tf;        // Function type
869   address      _entry_point;  // Address of the method being called
870   float        _cnt;          // Estimate of number of times called
871   uint         _argsize;      // Size of argument block on stack
872 
tf() const873   const TypeFunc* tf()        const { return _tf; }
entry_point() const874   const address entry_point() const { return _entry_point; }
cnt() const875   const float   cnt()         const { return _cnt; }
argsize() const876   uint argsize()              const { return _argsize; }
877 
set_tf(const TypeFunc * tf)878   void set_tf(const TypeFunc* tf) { _tf = tf; }
set_entry_point(address p)879   void set_entry_point(address p) { _entry_point = p; }
set_cnt(float c)880   void set_cnt(float c)           { _cnt = c; }
set_argsize(int s)881   void set_argsize(int s)         { _argsize = s; }
882 
MachCallNode()883   MachCallNode() : MachSafePointNode() {
884     init_class_id(Class_MachCall);
885   }
886 
887   virtual const Type *bottom_type() const;
pinned() const888   virtual bool  pinned() const { return false; }
889   virtual const Type* Value(PhaseGVN* phase) const;
890   virtual const RegMask &in_RegMask(uint) const;
ret_addr_offset()891   virtual int ret_addr_offset() { return 0; }
892 
returns_long() const893   bool returns_long() const { return tf()->return_type() == T_LONG; }
894   bool return_value_is_used() const;
895 
896   // Similar to cousin class CallNode::returns_pointer
897   bool returns_pointer() const;
898 
899 #ifndef PRODUCT
900   virtual void dump_spec(outputStream *st) const;
901 #endif
902 };
903 
904 //------------------------------MachCallJavaNode------------------------------
905 // "Base" class for machine-specific versions of subroutine calls
906 class MachCallJavaNode : public MachCallNode {
907 protected:
908   virtual uint cmp( const Node &n ) const;
909   virtual uint size_of() const; // Size is bigger
910 public:
911   ciMethod* _method;                 // Method being direct called
912   bool      _override_symbolic_info; // Override symbolic call site info from bytecode
913   int       _bci;                    // Byte Code index of call byte code
914   bool      _optimized_virtual;      // Tells if node is a static call or an optimized virtual
915   bool      _method_handle_invoke;   // Tells if the call has to preserve SP
MachCallJavaNode()916   MachCallJavaNode() : MachCallNode(), _override_symbolic_info(false) {
917     init_class_id(Class_MachCallJava);
918   }
919 
920   virtual const RegMask &in_RegMask(uint) const;
921 
resolved_method_index(CodeBuffer & cbuf) const922   int resolved_method_index(CodeBuffer &cbuf) const {
923     if (_override_symbolic_info) {
924       // Attach corresponding Method* to the call site, so VM can use it during resolution
925       // instead of querying symbolic info from bytecode.
926       assert(_method != NULL, "method should be set");
927       assert(_method->constant_encoding()->is_method(), "should point to a Method");
928       return cbuf.oop_recorder()->find_index(_method->constant_encoding());
929     }
930     return 0; // Use symbolic info from bytecode (resolved_method == NULL).
931   }
932 
933 #ifndef PRODUCT
934   virtual void dump_spec(outputStream *st) const;
935 #endif
936 };
937 
938 //------------------------------MachCallStaticJavaNode------------------------
939 // Machine-specific versions of monomorphic subroutine calls
940 class MachCallStaticJavaNode : public MachCallJavaNode {
941   virtual uint cmp( const Node &n ) const;
942   virtual uint size_of() const; // Size is bigger
943 public:
944   const char *_name;            // Runtime wrapper name
MachCallStaticJavaNode()945   MachCallStaticJavaNode() : MachCallJavaNode() {
946     init_class_id(Class_MachCallStaticJava);
947   }
948 
949   // If this is an uncommon trap, return the request code, else zero.
950   int uncommon_trap_request() const;
951 
952   virtual int ret_addr_offset();
953 #ifndef PRODUCT
954   virtual void dump_spec(outputStream *st) const;
955   void dump_trap_args(outputStream *st) const;
956 #endif
957 };
958 
959 //------------------------------MachCallDynamicJavaNode------------------------
960 // Machine-specific versions of possibly megamorphic subroutine calls
961 class MachCallDynamicJavaNode : public MachCallJavaNode {
962 public:
963   int _vtable_index;
MachCallDynamicJavaNode()964   MachCallDynamicJavaNode() : MachCallJavaNode() {
965     init_class_id(Class_MachCallDynamicJava);
966     DEBUG_ONLY(_vtable_index = -99);  // throw an assert if uninitialized
967   }
968   virtual int ret_addr_offset();
969 #ifndef PRODUCT
970   virtual void dump_spec(outputStream *st) const;
971 #endif
972 };
973 
974 //------------------------------MachCallRuntimeNode----------------------------
975 // Machine-specific versions of subroutine calls
976 class MachCallRuntimeNode : public MachCallNode {
977   virtual uint cmp( const Node &n ) const;
978   virtual uint size_of() const; // Size is bigger
979 public:
980   const char *_name;            // Printable name, if _method is NULL
981   bool _leaf_no_fp;             // Is this CallLeafNoFP?
MachCallRuntimeNode()982   MachCallRuntimeNode() : MachCallNode() {
983     init_class_id(Class_MachCallRuntime);
984   }
985   virtual int ret_addr_offset();
986 #ifndef PRODUCT
987   virtual void dump_spec(outputStream *st) const;
988 #endif
989 };
990 
991 class MachCallLeafNode: public MachCallRuntimeNode {
992 public:
MachCallLeafNode()993   MachCallLeafNode() : MachCallRuntimeNode() {
994     init_class_id(Class_MachCallLeaf);
995   }
996 };
997 
998 //------------------------------MachHaltNode-----------------------------------
999 // Machine-specific versions of halt nodes
1000 class MachHaltNode : public MachReturnNode {
1001 public:
1002   bool _reachable;
1003   const char* _halt_reason;
1004   virtual JVMState* jvms() const;
is_reachable() const1005   bool is_reachable() const {
1006     return _reachable;
1007   }
1008 };
1009 
1010 class MachMemBarNode : public MachNode {
1011   virtual uint size_of() const; // Size is bigger
1012 public:
1013   const TypePtr* _adr_type;     // memory effects
MachMemBarNode()1014   MachMemBarNode() : MachNode() {
1015     init_class_id(Class_MachMemBar);
1016     _adr_type = TypePtr::BOTTOM; // the default: all of memory
1017   }
1018 
set_adr_type(const TypePtr * atp)1019   void set_adr_type(const TypePtr* atp) { _adr_type = atp; }
1020   virtual const TypePtr *adr_type() const;
1021 };
1022 
1023 
1024 //------------------------------MachTempNode-----------------------------------
1025 // Node used by the adlc to construct inputs to represent temporary registers
1026 class MachTempNode : public MachNode {
1027 private:
1028   MachOper *_opnd_array[1];
1029 
1030 public:
out_RegMask() const1031   virtual const RegMask &out_RegMask() const { return *_opnds[0]->in_RegMask(0); }
rule() const1032   virtual uint rule() const { return 9999999; }
emit(CodeBuffer & cbuf,PhaseRegAlloc * ra_) const1033   virtual void emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const {}
1034 
MachTempNode(MachOper * oper)1035   MachTempNode(MachOper* oper) {
1036     init_class_id(Class_MachTemp);
1037     _num_opnds = 1;
1038     _opnds = _opnd_array;
1039     add_req(NULL);
1040     _opnds[0] = oper;
1041   }
size_of() const1042   virtual uint size_of() const { return sizeof(MachTempNode); }
1043 
1044 #ifndef PRODUCT
format(PhaseRegAlloc *,outputStream * st) const1045   virtual void format(PhaseRegAlloc *, outputStream *st ) const {}
Name() const1046   virtual const char *Name() const { return "MachTemp";}
1047 #endif
1048 };
1049 
1050 
1051 
1052 //------------------------------labelOper--------------------------------------
1053 // Machine-independent version of label operand
1054 class labelOper : public MachOper {
1055 private:
num_edges() const1056   virtual uint           num_edges() const { return 0; }
1057 public:
1058   // Supported for fixed size branches
1059   Label* _label;                // Label for branch(es)
1060 
1061   uint _block_num;
1062 
labelOper()1063   labelOper() : _block_num(0), _label(0) {}
1064 
labelOper(Label * label,uint block_num)1065   labelOper(Label* label, uint block_num) : _label(label), _block_num(block_num) {}
1066 
labelOper(labelOper * l)1067   labelOper(labelOper* l) : _label(l->_label) , _block_num(l->_block_num) {}
1068 
1069   virtual MachOper *clone() const;
1070 
label() const1071   virtual Label *label() const { assert(_label != NULL, "need Label"); return _label; }
1072 
1073   virtual uint           opcode() const;
1074 
1075   virtual uint           hash()   const;
1076   virtual uint           cmp( const MachOper &oper ) const;
1077 #ifndef PRODUCT
Name() const1078   virtual const char    *Name()   const { return "Label";}
1079 
1080   virtual void int_format(PhaseRegAlloc *ra, const MachNode *node, outputStream *st) const;
ext_format(PhaseRegAlloc * ra,const MachNode * node,int idx,outputStream * st) const1081   virtual void ext_format(PhaseRegAlloc *ra, const MachNode *node, int idx, outputStream *st) const { int_format( ra, node, st ); }
1082 #endif
1083 };
1084 
1085 
1086 //------------------------------methodOper--------------------------------------
1087 // Machine-independent version of method operand
1088 class methodOper : public MachOper {
1089 private:
num_edges() const1090   virtual uint           num_edges() const { return 0; }
1091 public:
1092   intptr_t _method;             // Address of method
methodOper()1093   methodOper() :   _method(0) {}
methodOper(intptr_t method)1094   methodOper(intptr_t method) : _method(method)  {}
1095 
1096   virtual MachOper *clone() const;
1097 
method() const1098   virtual intptr_t method() const { return _method; }
1099 
1100   virtual uint           opcode() const;
1101 
1102   virtual uint           hash()   const;
1103   virtual uint           cmp( const MachOper &oper ) const;
1104 #ifndef PRODUCT
Name() const1105   virtual const char    *Name()   const { return "Method";}
1106 
1107   virtual void int_format(PhaseRegAlloc *ra, const MachNode *node, outputStream *st) const;
ext_format(PhaseRegAlloc * ra,const MachNode * node,int idx,outputStream * st) const1108   virtual void ext_format(PhaseRegAlloc *ra, const MachNode *node, int idx, outputStream *st) const { int_format( ra, node, st ); }
1109 #endif
1110 };
1111 
1112 #endif // SHARE_VM_OPTO_MACHNODE_HPP
1113