1 /*
2  * Copyright (c) 1997, 2019, 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_OPTO_MACHNODE_HPP
26 #define SHARE_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 bool  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), _barrier(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 
barrier_data() const214   uint8_t barrier_data() const { return _barrier; }
set_barrier_data(uint data)215   void set_barrier_data(uint data) { _barrier = data; }
216 
217   // Copy inputs and operands to new node of instruction.
218   // Called from cisc_version() and short_branch_version().
219   // !!!! The method's body is defined in ad_<arch>.cpp file.
220   void fill_new_machnode(MachNode *n) const;
221 
222   // Return an equivalent instruction using memory for cisc_operand position
223   virtual MachNode *cisc_version(int offset);
224   // Modify this instruction's register mask to use stack version for cisc_operand
225   virtual void use_cisc_RegMask();
226 
227   // Support for short branches
may_be_short_branch() const228   bool may_be_short_branch() const { return (flags() & Flag_may_be_short_branch) != 0; }
229 
230   // Avoid back to back some instructions on some CPUs.
231   enum AvoidBackToBackFlag { AVOID_NONE = 0,
232                              AVOID_BEFORE = Flag_avoid_back_to_back_before,
233                              AVOID_AFTER = Flag_avoid_back_to_back_after,
234                              AVOID_BEFORE_AND_AFTER = AVOID_BEFORE | AVOID_AFTER };
235 
avoid_back_to_back(AvoidBackToBackFlag flag_value) const236   bool avoid_back_to_back(AvoidBackToBackFlag flag_value) const {
237     return (flags() & flag_value) == flag_value;
238   }
239 
240   // instruction implemented with a call
has_call() const241   bool has_call() const { return (flags() & Flag_has_call) != 0; }
242 
243   // First index in _in[] corresponding to operand, or -1 if there is none
244   int  operand_index(uint operand) const;
245   int  operand_index(const MachOper *oper) const;
246 
247   // Register class input is expected in
248   virtual const RegMask &in_RegMask(uint) const;
249 
250   // cisc-spillable instructions redefine for use by in_RegMask
cisc_RegMask() const251   virtual const RegMask *cisc_RegMask() const { return NULL; }
252 
253   // If this instruction is a 2-address instruction, then return the
254   // index of the input which must match the output.  Not nessecary
255   // for instructions which bind the input and output register to the
256   // same singleton regiser (e.g., Intel IDIV which binds AX to be
257   // both an input and an output).  It is nessecary when the input and
258   // output have choices - but they must use the same choice.
two_adr() const259   virtual uint two_adr( ) const { return 0; }
260 
261   // The GC might require some barrier metadata for machine code emission.
262   uint8_t _barrier;
263 
264   // Array of complex operand pointers.  Each corresponds to zero or
265   // more leafs.  Must be set by MachNode constructor to point to an
266   // internal array of MachOpers.  The MachOper array is sized by
267   // specific MachNodes described in the ADL.
268   uint _num_opnds;
269   MachOper **_opnds;
num_opnds() const270   uint  num_opnds() const { return _num_opnds; }
271 
272   // Emit bytes into cbuf
273   virtual void  emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const;
274   // Expand node after register allocation.
275   // Node is replaced by several nodes in the postalloc expand phase.
276   // Corresponding methods are generated for nodes if they specify
277   // postalloc_expand. See block.cpp for more documentation.
requires_postalloc_expand() const278   virtual bool requires_postalloc_expand() const { return false; }
279   virtual void postalloc_expand(GrowableArray <Node *> *nodes, PhaseRegAlloc *ra_);
280   // Size of instruction in bytes
281   virtual uint  size(PhaseRegAlloc *ra_) const;
282   // Helper function that computes size by emitting code
283   virtual uint  emit_size(PhaseRegAlloc *ra_) const;
284 
285   // Return the alignment required (in units of relocInfo::addr_unit())
286   // for this instruction (must be a power of 2)
alignment_required() const287   virtual int   alignment_required() const { return 1; }
288 
289   // Return the padding (in bytes) to be emitted before this
290   // instruction to properly align it.
compute_padding(int current_offset) const291   virtual int   compute_padding(int current_offset) const { return 0; }
292 
293   // Return number of relocatable values contained in this instruction
reloc() const294   virtual int   reloc() const { return 0; }
295 
296   // Return number of words used for double constants in this instruction
ins_num_consts() const297   virtual int   ins_num_consts() const { return 0; }
298 
299   // Hash and compare over operands.  Used to do GVN on machine Nodes.
300   virtual uint  hash() const;
301   virtual bool  cmp( const Node &n ) const;
302 
303   // Expand method for MachNode, replaces nodes representing pseudo
304   // instructions with a set of nodes which represent real machine
305   // instructions and compute the same value.
Expand(State *,Node_List & proj_list,Node * mem)306   virtual MachNode *Expand( State *, Node_List &proj_list, Node* mem ) { return this; }
307 
308   // Bottom_type call; value comes from operand0
bottom_type() const309   virtual const class Type *bottom_type() const { return _opnds[0]->type(); }
ideal_reg() const310   virtual uint ideal_reg() const {
311     const Type *t = _opnds[0]->type();
312     if (t == TypeInt::CC) {
313       return Op_RegFlags;
314     } else {
315       return t->ideal_reg();
316     }
317   }
318 
319   // If this is a memory op, return the base pointer and fixed offset.
320   // If there are no such, return NULL.  If there are multiple addresses
321   // or the address is indeterminate (rare cases) then return (Node*)-1,
322   // which serves as node bottom.
323   // If the offset is not statically determined, set it to Type::OffsetBot.
324   // This method is free to ignore stack slots if that helps.
325   #define TYPE_PTR_SENTINAL  ((const TypePtr*)-1)
326   // Passing TYPE_PTR_SENTINAL as adr_type asks for computation of the adr_type if possible
327   const Node* get_base_and_disp(intptr_t &offset, const TypePtr* &adr_type) const;
328 
329   // Helper for get_base_and_disp: find the base and index input nodes.
330   // Returns the MachOper as determined by memory_operand(), for use, if
331   // needed by the caller. If (MachOper *)-1 is returned, base and index
332   // are set to NodeSentinel. If (MachOper *) NULL is returned, base and
333   // index are set to NULL.
334   const MachOper* memory_inputs(Node* &base, Node* &index) const;
335 
336   // Helper for memory_inputs:  Which operand carries the necessary info?
337   // By default, returns NULL, which means there is no such operand.
338   // If it returns (MachOper*)-1, this means there are multiple memories.
memory_operand() const339   virtual const MachOper* memory_operand() const { return NULL; }
340 
341   // Call "get_base_and_disp" to decide which category of memory is used here.
342   virtual const class TypePtr *adr_type() const;
343 
344   // Apply peephole rule(s) to this instruction
345   virtual MachNode *peephole(Block *block, int block_index, PhaseRegAlloc *ra_, int &deleted);
346 
347   // Top-level ideal Opcode matched
ideal_Opcode() const348   virtual int ideal_Opcode()     const { return Op_Node; }
349 
350   // Adds the label for the case
351   virtual void add_case_label( int switch_val, Label* blockLabel);
352 
353   // Set the absolute address for methods
354   virtual void method_set( intptr_t addr );
355 
356   // Should we clone rather than spill this instruction?
357   bool rematerialize() const;
358 
359   // Get the pipeline info
360   static const Pipeline *pipeline_class();
361   virtual const Pipeline *pipeline() const;
362 
363   // Returns true if this node is a check that can be implemented with a trap.
is_TrapBasedCheckNode() const364   virtual bool is_TrapBasedCheckNode() const { return false; }
365 
366 #ifndef PRODUCT
367   virtual const char *Name() const = 0; // Machine-specific name
368   virtual void dump_spec(outputStream *st) const; // Print per-node info
369   void         dump_format(PhaseRegAlloc *ra, outputStream *st) const; // access to virtual
370 #endif
371 };
372 
373 //------------------------------MachIdealNode----------------------------
374 // Machine specific versions of nodes that must be defined by user.
375 // These are not converted by matcher from ideal nodes to machine nodes
376 // but are inserted into the code by the compiler.
377 class MachIdealNode : public MachNode {
378 public:
MachIdealNode()379   MachIdealNode( ) {}
380 
381   // Define the following defaults for non-matched machine nodes
oper_input_base() const382   virtual uint oper_input_base() const { return 0; }
rule() const383   virtual uint rule()            const { return 9999999; }
bottom_type() const384   virtual const class Type *bottom_type() const { return _opnds == NULL ? Type::CONTROL : MachNode::bottom_type(); }
385 };
386 
387 //------------------------------MachTypeNode----------------------------
388 // Machine Nodes that need to retain a known Type.
389 class MachTypeNode : public MachNode {
size_of() const390   virtual uint size_of() const { return sizeof(*this); } // Size is bigger
391 public:
MachTypeNode()392   MachTypeNode( ) {}
393   const Type *_bottom_type;
394 
bottom_type() const395   virtual const class Type *bottom_type() const { return _bottom_type; }
396 #ifndef PRODUCT
397   virtual void dump_spec(outputStream *st) const;
398 #endif
399 };
400 
401 //------------------------------MachBreakpointNode----------------------------
402 // Machine breakpoint or interrupt Node
403 class MachBreakpointNode : public MachIdealNode {
404 public:
MachBreakpointNode()405   MachBreakpointNode( ) {}
406   virtual void emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const;
407   virtual uint size(PhaseRegAlloc *ra_) const;
408 
409 #ifndef PRODUCT
Name() const410   virtual const char *Name() const { return "Breakpoint"; }
411   virtual void format( PhaseRegAlloc *, outputStream *st ) const;
412 #endif
413 };
414 
415 //------------------------------MachConstantBaseNode--------------------------
416 // Machine node that represents the base address of the constant table.
417 class MachConstantBaseNode : public MachIdealNode {
418 public:
419   static const RegMask& _out_RegMask;  // We need the out_RegMask statically in MachConstantNode::in_RegMask().
420 
421 public:
MachConstantBaseNode()422   MachConstantBaseNode() : MachIdealNode() {
423     init_class_id(Class_MachConstantBase);
424   }
bottom_type() const425   virtual const class Type* bottom_type() const { return TypeRawPtr::NOTNULL; }
ideal_reg() const426   virtual uint ideal_reg() const { return Op_RegP; }
oper_input_base() const427   virtual uint oper_input_base() const { return 1; }
428 
429   virtual bool requires_postalloc_expand() const;
430   virtual void postalloc_expand(GrowableArray <Node *> *nodes, PhaseRegAlloc *ra_);
431 
432   virtual void emit(CodeBuffer& cbuf, PhaseRegAlloc* ra_) const;
433   virtual uint size(PhaseRegAlloc* ra_) const;
pinned() const434   virtual bool pinned() const { return UseRDPCForConstantTableBase; }
435 
static_out_RegMask()436   static const RegMask& static_out_RegMask() { return _out_RegMask; }
out_RegMask() const437   virtual const RegMask& out_RegMask() const { return static_out_RegMask(); }
438 
439 #ifndef PRODUCT
Name() const440   virtual const char* Name() const { return "MachConstantBaseNode"; }
441   virtual void format(PhaseRegAlloc*, outputStream* st) const;
442 #endif
443 };
444 
445 //------------------------------MachConstantNode-------------------------------
446 // Machine node that holds a constant which is stored in the constant table.
447 class MachConstantNode : public MachTypeNode {
448 protected:
449   Compile::Constant _constant;  // This node's constant.
450 
451 public:
MachConstantNode()452   MachConstantNode() : MachTypeNode() {
453     init_class_id(Class_MachConstant);
454   }
455 
eval_constant(Compile * C)456   virtual void eval_constant(Compile* C) {
457 #ifdef ASSERT
458     tty->print("missing MachConstantNode eval_constant function: ");
459     dump();
460 #endif
461     ShouldNotCallThis();
462   }
463 
in_RegMask(uint idx) const464   virtual const RegMask &in_RegMask(uint idx) const {
465     if (idx == mach_constant_base_node_input())
466       return MachConstantBaseNode::static_out_RegMask();
467     return MachNode::in_RegMask(idx);
468   }
469 
470   // Input edge of MachConstantBaseNode.
mach_constant_base_node_input() const471   virtual uint mach_constant_base_node_input() const { return req() - 1; }
472 
473   int  constant_offset();
constant_offset() const474   int  constant_offset() const { return ((MachConstantNode*) this)->constant_offset(); }
475   // Unchecked version to avoid assertions in debug output.
476   int  constant_offset_unchecked() const;
477 };
478 
479 //------------------------------MachUEPNode-----------------------------------
480 // Machine Unvalidated Entry Point Node
481 class MachUEPNode : public MachIdealNode {
482 public:
MachUEPNode()483   MachUEPNode( ) {}
484   virtual void emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const;
485   virtual uint size(PhaseRegAlloc *ra_) const;
486 
487 #ifndef PRODUCT
Name() const488   virtual const char *Name() const { return "Unvalidated-Entry-Point"; }
489   virtual void format( PhaseRegAlloc *, outputStream *st ) const;
490 #endif
491 };
492 
493 //------------------------------MachPrologNode--------------------------------
494 // Machine function Prolog Node
495 class MachPrologNode : public MachIdealNode {
496 public:
MachPrologNode()497   MachPrologNode( ) {}
498   virtual void emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const;
499   virtual uint size(PhaseRegAlloc *ra_) const;
500   virtual int reloc() const;
501 
502 #ifndef PRODUCT
Name() const503   virtual const char *Name() const { return "Prolog"; }
504   virtual void format( PhaseRegAlloc *, outputStream *st ) const;
505 #endif
506 };
507 
508 //------------------------------MachEpilogNode--------------------------------
509 // Machine function Epilog Node
510 class MachEpilogNode : public MachIdealNode {
511 public:
MachEpilogNode(bool do_poll=false)512   MachEpilogNode(bool do_poll = false) : _do_polling(do_poll) {}
513   virtual void emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const;
514   virtual uint size(PhaseRegAlloc *ra_) const;
515   virtual int reloc() const;
516   virtual const Pipeline *pipeline() const;
517 
518 private:
519   bool _do_polling;
520 
521 public:
do_polling() const522   bool do_polling() const { return _do_polling; }
523 
524   // Offset of safepoint from the beginning of the node
525   int safepoint_offset() const;
526 
527 #ifndef PRODUCT
Name() const528   virtual const char *Name() const { return "Epilog"; }
529   virtual void format( PhaseRegAlloc *, outputStream *st ) const;
530 #endif
531 };
532 
533 //------------------------------MachNopNode-----------------------------------
534 // Machine function Nop Node
535 class MachNopNode : public MachIdealNode {
536 private:
537   int _count;
538 public:
MachNopNode()539   MachNopNode( ) : _count(1) {}
MachNopNode(int count)540   MachNopNode( int count ) : _count(count) {}
541   virtual void emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const;
542   virtual uint size(PhaseRegAlloc *ra_) const;
543 
bottom_type() const544   virtual const class Type *bottom_type() const { return Type::CONTROL; }
545 
ideal_Opcode() const546   virtual int ideal_Opcode() const { return Op_Con; } // bogus; see output.cpp
547   virtual const Pipeline *pipeline() const;
548 #ifndef PRODUCT
Name() const549   virtual const char *Name() const { return "Nop"; }
550   virtual void format( PhaseRegAlloc *, outputStream *st ) const;
dump_spec(outputStream * st) const551   virtual void dump_spec(outputStream *st) const { } // No per-operand info
552 #endif
553 };
554 
555 //------------------------------MachSpillCopyNode------------------------------
556 // Machine SpillCopy Node.  Copies 1 or 2 words from any location to any
557 // location (stack or register).
558 class MachSpillCopyNode : public MachIdealNode {
559 public:
560   enum SpillType {
561     TwoAddress,                        // Inserted when coalescing of a two-address-instruction node and its input fails
562     PhiInput,                          // Inserted when coalescing of a phi node and its input fails
563     DebugUse,                          // Inserted as debug info spills to safepoints in non-frequent blocks
564     LoopPhiInput,                      // Pre-split compares of loop-phis
565     Definition,                        // An lrg marked as spilled will be spilled to memory right after its definition,
566                                        // if in high pressure region or the lrg is bound
567     RegToReg,                          // A register to register move
568     RegToMem,                          // A register to memory move
569     MemToReg,                          // A memory to register move
570     PhiLocationDifferToInputLocation,  // When coalescing phi nodes in PhaseChaitin::Split(), a move spill is inserted if
571                                        // the phi and its input resides at different locations (i.e. reg or mem)
572     BasePointerToMem,                  // Spill base pointer to memory at safepoint
573     InputToRematerialization,          // When rematerializing a node we stretch the inputs live ranges, and they might be
574                                        // stretched beyond a new definition point, therefore we split out new copies instead
575     CallUse,                           // Spill use at a call
576     Bound                              // An lrg marked as spill that is bound and needs to be spilled at a use
577   };
578 private:
579   const RegMask *_in;           // RegMask for input
580   const RegMask *_out;          // RegMask for output
581   const Type *_type;
582   const SpillType _spill_type;
583 public:
MachSpillCopyNode(SpillType spill_type,Node * n,const RegMask & in,const RegMask & out)584   MachSpillCopyNode(SpillType spill_type, Node *n, const RegMask &in, const RegMask &out ) :
585     MachIdealNode(), _in(&in), _out(&out), _type(n->bottom_type()), _spill_type(spill_type) {
586     init_class_id(Class_MachSpillCopy);
587     init_flags(Flag_is_Copy);
588     add_req(NULL);
589     add_req(n);
590   }
size_of() const591   virtual uint size_of() const { return sizeof(*this); }
set_out_RegMask(const RegMask & out)592   void set_out_RegMask(const RegMask &out) { _out = &out; }
set_in_RegMask(const RegMask & in)593   void set_in_RegMask(const RegMask &in) { _in = &in; }
out_RegMask() const594   virtual const RegMask &out_RegMask() const { return *_out; }
in_RegMask(uint) const595   virtual const RegMask &in_RegMask(uint) const { return *_in; }
bottom_type() const596   virtual const class Type *bottom_type() const { return _type; }
ideal_reg() const597   virtual uint ideal_reg() const { return _type->ideal_reg(); }
oper_input_base() const598   virtual uint oper_input_base() const { return 1; }
599   uint implementation( CodeBuffer *cbuf, PhaseRegAlloc *ra_, bool do_size, outputStream* st ) const;
600 
601   virtual void emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const;
602   virtual uint size(PhaseRegAlloc *ra_) const;
603 
604 
605 #ifndef PRODUCT
spill_type(SpillType st)606   static const char *spill_type(SpillType st) {
607     switch (st) {
608       case TwoAddress:
609         return "TwoAddressSpillCopy";
610       case PhiInput:
611         return "PhiInputSpillCopy";
612       case DebugUse:
613         return "DebugUseSpillCopy";
614       case LoopPhiInput:
615         return "LoopPhiInputSpillCopy";
616       case Definition:
617         return "DefinitionSpillCopy";
618       case RegToReg:
619         return "RegToRegSpillCopy";
620       case RegToMem:
621         return "RegToMemSpillCopy";
622       case MemToReg:
623         return "MemToRegSpillCopy";
624       case PhiLocationDifferToInputLocation:
625         return "PhiLocationDifferToInputLocationSpillCopy";
626       case BasePointerToMem:
627         return "BasePointerToMemSpillCopy";
628       case InputToRematerialization:
629         return "InputToRematerializationSpillCopy";
630       case CallUse:
631         return "CallUseSpillCopy";
632       case Bound:
633         return "BoundSpillCopy";
634       default:
635         assert(false, "Must have valid spill type");
636         return "MachSpillCopy";
637     }
638   }
639 
Name() const640   virtual const char *Name() const {
641     return spill_type(_spill_type);
642   }
643 
644   virtual void format( PhaseRegAlloc *, outputStream *st ) const;
645 #endif
646 };
647 
648 // MachMergeNode is similar to a PhiNode in a sense it merges multiple values,
649 // however it doesn't have a control input and is more like a MergeMem.
650 // It is inserted after the register allocation is done to ensure that nodes use single
651 // definition of a multidef lrg in a block.
652 class MachMergeNode : public MachIdealNode {
653 public:
MachMergeNode(Node * n1)654   MachMergeNode(Node *n1) {
655     init_class_id(Class_MachMerge);
656     add_req(NULL);
657     add_req(n1);
658   }
out_RegMask() const659   virtual const RegMask &out_RegMask() const { return in(1)->out_RegMask(); }
in_RegMask(uint idx) const660   virtual const RegMask &in_RegMask(uint idx) const { return in(1)->in_RegMask(idx); }
bottom_type() const661   virtual const class Type *bottom_type() const { return in(1)->bottom_type(); }
ideal_reg() const662   virtual uint ideal_reg() const { return bottom_type()->ideal_reg(); }
oper_input_base() const663   virtual uint oper_input_base() const { return 1; }
emit(CodeBuffer & cbuf,PhaseRegAlloc * ra_) const664   virtual void emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const { }
size(PhaseRegAlloc * ra_) const665   virtual uint size(PhaseRegAlloc *ra_) const { return 0; }
666 #ifndef PRODUCT
Name() const667   virtual const char *Name() const { return "MachMerge"; }
668 #endif
669 };
670 
671 //------------------------------MachBranchNode--------------------------------
672 // Abstract machine branch Node
673 class MachBranchNode : public MachIdealNode {
674 public:
MachBranchNode()675   MachBranchNode() : MachIdealNode() {
676     init_class_id(Class_MachBranch);
677   }
678   virtual void label_set(Label* label, uint block_num) = 0;
679   virtual void save_label(Label** label, uint* block_num) = 0;
680 
681   // Support for short branches
short_branch_version()682   virtual MachNode *short_branch_version() { return NULL; }
683 
pinned() const684   virtual bool pinned() const { return true; };
685 };
686 
687 //------------------------------MachNullChkNode--------------------------------
688 // Machine-dependent null-pointer-check Node.  Points a real MachNode that is
689 // also some kind of memory op.  Turns the indicated MachNode into a
690 // conditional branch with good latency on the ptr-not-null path and awful
691 // latency on the pointer-is-null path.
692 
693 class MachNullCheckNode : public MachBranchNode {
694 public:
695   const uint _vidx;             // Index of memop being tested
MachNullCheckNode(Node * ctrl,Node * memop,uint vidx)696   MachNullCheckNode( Node *ctrl, Node *memop, uint vidx ) : MachBranchNode(), _vidx(vidx) {
697     init_class_id(Class_MachNullCheck);
698     add_req(ctrl);
699     add_req(memop);
700   }
size_of() const701   virtual uint size_of() const { return sizeof(*this); }
702 
703   virtual void emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const;
704   virtual void label_set(Label* label, uint block_num);
705   virtual void save_label(Label** label, uint* block_num);
negate()706   virtual void negate() { }
bottom_type() const707   virtual const class Type *bottom_type() const { return TypeTuple::IFBOTH; }
ideal_reg() const708   virtual uint ideal_reg() const { return NotAMachineReg; }
709   virtual const RegMask &in_RegMask(uint) const;
out_RegMask() const710   virtual const RegMask &out_RegMask() const { return RegMask::Empty; }
711 #ifndef PRODUCT
Name() const712   virtual const char *Name() const { return "NullCheck"; }
713   virtual void format( PhaseRegAlloc *, outputStream *st ) const;
714 #endif
715 };
716 
717 //------------------------------MachProjNode----------------------------------
718 // Machine-dependent Ideal projections (how is that for an oxymoron).  Really
719 // just MachNodes made by the Ideal world that replicate simple projections
720 // but with machine-dependent input & output register masks.  Generally
721 // produced as part of calling conventions.  Normally I make MachNodes as part
722 // of the Matcher process, but the Matcher is ill suited to issues involving
723 // frame handling, so frame handling is all done in the Ideal world with
724 // occasional callbacks to the machine model for important info.
725 class MachProjNode : public ProjNode {
726 public:
MachProjNode(Node * multi,uint con,const RegMask & out,uint ideal_reg)727   MachProjNode( Node *multi, uint con, const RegMask &out, uint ideal_reg ) : ProjNode(multi,con), _rout(out), _ideal_reg(ideal_reg) {
728     init_class_id(Class_MachProj);
729   }
730   RegMask _rout;
731   const uint  _ideal_reg;
732   enum projType {
733     unmatched_proj = 0,         // Projs for Control, I/O, memory not matched
734     fat_proj       = 999        // Projs killing many regs, defined by _rout
735   };
736   virtual int   Opcode() const;
737   virtual const Type *bottom_type() const;
738   virtual const TypePtr *adr_type() const;
in_RegMask(uint) const739   virtual const RegMask &in_RegMask(uint) const { return RegMask::Empty; }
out_RegMask() const740   virtual const RegMask &out_RegMask() const { return _rout; }
ideal_reg() const741   virtual uint  ideal_reg() const { return _ideal_reg; }
742   // Need size_of() for virtual ProjNode::clone()
size_of() const743   virtual uint  size_of() const { return sizeof(MachProjNode); }
744 #ifndef PRODUCT
745   virtual void dump_spec(outputStream *st) const;
746 #endif
747 };
748 
749 //------------------------------MachIfNode-------------------------------------
750 // Machine-specific versions of IfNodes
751 class MachIfNode : public MachBranchNode {
size_of() const752   virtual uint size_of() const { return sizeof(*this); } // Size is bigger
753 public:
754   float _prob;                  // Probability branch goes either way
755   float _fcnt;                  // Frequency counter
MachIfNode()756   MachIfNode() : MachBranchNode() {
757     init_class_id(Class_MachIf);
758   }
759   // Negate conditional branches.
760   virtual void negate() = 0;
761 #ifndef PRODUCT
762   virtual void dump_spec(outputStream *st) const;
763 #endif
764 };
765 
766 //------------------------------MachJumpNode-----------------------------------
767 // Machine-specific versions of JumpNodes
768 class MachJumpNode : public MachConstantNode {
769 public:
770   float* _probs;
MachJumpNode()771   MachJumpNode() : MachConstantNode() {
772     init_class_id(Class_MachJump);
773   }
774 };
775 
776 //------------------------------MachGotoNode-----------------------------------
777 // Machine-specific versions of GotoNodes
778 class MachGotoNode : public MachBranchNode {
779 public:
MachGotoNode()780   MachGotoNode() : MachBranchNode() {
781     init_class_id(Class_MachGoto);
782   }
783 };
784 
785 //------------------------------MachFastLockNode-------------------------------------
786 // Machine-specific versions of FastLockNodes
787 class MachFastLockNode : public MachNode {
size_of() const788   virtual uint size_of() const { return sizeof(*this); } // Size is bigger
789 public:
790   BiasedLockingCounters*        _counters;
791   RTMLockingCounters*       _rtm_counters; // RTM lock counters for inflated locks
792   RTMLockingCounters* _stack_rtm_counters; // RTM lock counters for stack locks
MachFastLockNode()793   MachFastLockNode() : MachNode() {}
794 };
795 
796 //------------------------------MachReturnNode--------------------------------
797 // Machine-specific versions of subroutine returns
798 class MachReturnNode : public MachNode {
799   virtual uint size_of() const; // Size is bigger
800 public:
801   RegMask *_in_rms;             // Input register masks, set during allocation
802   ReallocMark _nesting;         // assertion check for reallocations
803   const TypePtr* _adr_type;     // memory effects of call or return
MachReturnNode()804   MachReturnNode() : MachNode() {
805     init_class_id(Class_MachReturn);
806     _adr_type = TypePtr::BOTTOM; // the default: all of memory
807   }
808 
set_adr_type(const TypePtr * atp)809   void set_adr_type(const TypePtr* atp) { _adr_type = atp; }
810 
811   virtual const RegMask &in_RegMask(uint) const;
pinned() const812   virtual bool pinned() const { return true; };
813   virtual const TypePtr *adr_type() const;
814 };
815 
816 //------------------------------MachSafePointNode-----------------------------
817 // Machine-specific versions of safepoints
818 class MachSafePointNode : public MachReturnNode {
819 public:
820   OopMap*         _oop_map;     // Array of OopMap info (8-bit char) for GC
821   JVMState*       _jvms;        // Pointer to list of JVM State Objects
822   uint            _jvmadj;      // Extra delta to jvms indexes (mach. args)
oop_map() const823   OopMap*         oop_map() const { return _oop_map; }
set_oop_map(OopMap * om)824   void            set_oop_map(OopMap* om) { _oop_map = om; }
825 
MachSafePointNode()826   MachSafePointNode() : MachReturnNode(), _oop_map(NULL), _jvms(NULL), _jvmadj(0) {
827     init_class_id(Class_MachSafePoint);
828   }
829 
jvms() const830   virtual JVMState* jvms() const { return _jvms; }
set_jvms(JVMState * s)831   void set_jvms(JVMState* s) {
832     _jvms = s;
833   }
834   virtual const Type    *bottom_type() const;
835 
836   virtual const RegMask &in_RegMask(uint) const;
837 
838   // Functionality from old debug nodes
returnadr() const839   Node *returnadr() const { return in(TypeFunc::ReturnAdr); }
frameptr() const840   Node *frameptr () const { return in(TypeFunc::FramePtr); }
841 
local(const JVMState * jvms,uint idx) const842   Node *local(const JVMState* jvms, uint idx) const {
843     assert(verify_jvms(jvms), "jvms must match");
844     return in(_jvmadj + jvms->locoff() + idx);
845   }
stack(const JVMState * jvms,uint idx) const846   Node *stack(const JVMState* jvms, uint idx) const {
847     assert(verify_jvms(jvms), "jvms must match");
848     return in(_jvmadj + jvms->stkoff() + idx);
849  }
monitor_obj(const JVMState * jvms,uint idx) const850   Node *monitor_obj(const JVMState* jvms, uint idx) const {
851     assert(verify_jvms(jvms), "jvms must match");
852     return in(_jvmadj + jvms->monitor_obj_offset(idx));
853   }
monitor_box(const JVMState * jvms,uint idx) const854   Node *monitor_box(const JVMState* jvms, uint idx) const {
855     assert(verify_jvms(jvms), "jvms must match");
856     return in(_jvmadj + jvms->monitor_box_offset(idx));
857   }
set_local(const JVMState * jvms,uint idx,Node * c)858   void  set_local(const JVMState* jvms, uint idx, Node *c) {
859     assert(verify_jvms(jvms), "jvms must match");
860     set_req(_jvmadj + jvms->locoff() + idx, c);
861   }
set_stack(const JVMState * jvms,uint idx,Node * c)862   void  set_stack(const JVMState* jvms, uint idx, Node *c) {
863     assert(verify_jvms(jvms), "jvms must match");
864     set_req(_jvmadj + jvms->stkoff() + idx, c);
865   }
set_monitor(const JVMState * jvms,uint idx,Node * c)866   void  set_monitor(const JVMState* jvms, uint idx, Node *c) {
867     assert(verify_jvms(jvms), "jvms must match");
868     set_req(_jvmadj + jvms->monoff() + idx, c);
869   }
870 };
871 
872 //------------------------------MachCallNode----------------------------------
873 // Machine-specific versions of subroutine calls
874 class MachCallNode : public MachSafePointNode {
875 protected:
hash() const876   virtual uint hash() const { return NO_HASH; }  // CFG nodes do not hash
877   virtual bool cmp( const Node &n ) const;
878   virtual uint size_of() const = 0; // Size is bigger
879 public:
880   const TypeFunc *_tf;        // Function type
881   address      _entry_point;  // Address of the method being called
882   float        _cnt;          // Estimate of number of times called
883   uint         _argsize;      // Size of argument block on stack
884 
tf() const885   const TypeFunc* tf()        const { return _tf; }
entry_point() const886   const address entry_point() const { return _entry_point; }
cnt() const887   const float   cnt()         const { return _cnt; }
argsize() const888   uint argsize()              const { return _argsize; }
889 
set_tf(const TypeFunc * tf)890   void set_tf(const TypeFunc* tf) { _tf = tf; }
set_entry_point(address p)891   void set_entry_point(address p) { _entry_point = p; }
set_cnt(float c)892   void set_cnt(float c)           { _cnt = c; }
set_argsize(int s)893   void set_argsize(int s)         { _argsize = s; }
894 
MachCallNode()895   MachCallNode() : MachSafePointNode() {
896     init_class_id(Class_MachCall);
897   }
898 
899   virtual const Type *bottom_type() const;
pinned() const900   virtual bool  pinned() const { return false; }
901   virtual const Type* Value(PhaseGVN* phase) const;
902   virtual const RegMask &in_RegMask(uint) const;
ret_addr_offset()903   virtual int ret_addr_offset() { return 0; }
904 
returns_long() const905   bool returns_long() const { return tf()->return_type() == T_LONG; }
906   bool return_value_is_used() const;
907 
908   // Similar to cousin class CallNode::returns_pointer
909   bool returns_pointer() const;
910 
911 #ifndef PRODUCT
912   virtual void dump_spec(outputStream *st) const;
913 #endif
914 };
915 
916 //------------------------------MachCallJavaNode------------------------------
917 // "Base" class for machine-specific versions of subroutine calls
918 class MachCallJavaNode : public MachCallNode {
919 protected:
920   virtual bool cmp( const Node &n ) const;
921   virtual uint size_of() const; // Size is bigger
922 public:
923   ciMethod* _method;                 // Method being direct called
924   bool      _override_symbolic_info; // Override symbolic call site info from bytecode
925   int       _bci;                    // Byte Code index of call byte code
926   bool      _optimized_virtual;      // Tells if node is a static call or an optimized virtual
927   bool      _method_handle_invoke;   // Tells if the call has to preserve SP
MachCallJavaNode()928   MachCallJavaNode() : MachCallNode(), _override_symbolic_info(false) {
929     init_class_id(Class_MachCallJava);
930   }
931 
932   virtual const RegMask &in_RegMask(uint) const;
933 
resolved_method_index(CodeBuffer & cbuf) const934   int resolved_method_index(CodeBuffer &cbuf) const {
935     if (_override_symbolic_info) {
936       // Attach corresponding Method* to the call site, so VM can use it during resolution
937       // instead of querying symbolic info from bytecode.
938       assert(_method != NULL, "method should be set");
939       assert(_method->constant_encoding()->is_method(), "should point to a Method");
940       return cbuf.oop_recorder()->find_index(_method->constant_encoding());
941     }
942     return 0; // Use symbolic info from bytecode (resolved_method == NULL).
943   }
944 
945 #ifndef PRODUCT
946   virtual void dump_spec(outputStream *st) const;
947 #endif
948 };
949 
950 //------------------------------MachCallStaticJavaNode------------------------
951 // Machine-specific versions of monomorphic subroutine calls
952 class MachCallStaticJavaNode : public MachCallJavaNode {
953   virtual bool cmp( const Node &n ) const;
954   virtual uint size_of() const; // Size is bigger
955 public:
956   const char *_name;            // Runtime wrapper name
MachCallStaticJavaNode()957   MachCallStaticJavaNode() : MachCallJavaNode() {
958     init_class_id(Class_MachCallStaticJava);
959   }
960 
961   // If this is an uncommon trap, return the request code, else zero.
962   int uncommon_trap_request() const;
963 
964   virtual int ret_addr_offset();
965 #ifndef PRODUCT
966   virtual void dump_spec(outputStream *st) const;
967   void dump_trap_args(outputStream *st) const;
968 #endif
969 };
970 
971 //------------------------------MachCallDynamicJavaNode------------------------
972 // Machine-specific versions of possibly megamorphic subroutine calls
973 class MachCallDynamicJavaNode : public MachCallJavaNode {
974 public:
975   int _vtable_index;
MachCallDynamicJavaNode()976   MachCallDynamicJavaNode() : MachCallJavaNode() {
977     init_class_id(Class_MachCallDynamicJava);
978     DEBUG_ONLY(_vtable_index = -99);  // throw an assert if uninitialized
979   }
980   virtual int ret_addr_offset();
981 #ifndef PRODUCT
982   virtual void dump_spec(outputStream *st) const;
983 #endif
984 };
985 
986 //------------------------------MachCallRuntimeNode----------------------------
987 // Machine-specific versions of subroutine calls
988 class MachCallRuntimeNode : public MachCallNode {
989   virtual bool cmp( const Node &n ) const;
990   virtual uint size_of() const; // Size is bigger
991 public:
992   const char *_name;            // Printable name, if _method is NULL
MachCallRuntimeNode()993   MachCallRuntimeNode() : MachCallNode() {
994     init_class_id(Class_MachCallRuntime);
995   }
996   virtual int ret_addr_offset();
997 #ifndef PRODUCT
998   virtual void dump_spec(outputStream *st) const;
999 #endif
1000 };
1001 
1002 class MachCallLeafNode: public MachCallRuntimeNode {
1003 public:
MachCallLeafNode()1004   MachCallLeafNode() : MachCallRuntimeNode() {
1005     init_class_id(Class_MachCallLeaf);
1006   }
1007 };
1008 
1009 //------------------------------MachHaltNode-----------------------------------
1010 // Machine-specific versions of halt nodes
1011 class MachHaltNode : public MachReturnNode {
1012 public:
1013   bool _reachable;
1014   const char* _halt_reason;
1015   virtual JVMState* jvms() const;
is_reachable() const1016   bool is_reachable() const {
1017     return _reachable;
1018   }
1019 };
1020 
1021 class MachMemBarNode : public MachNode {
1022   virtual uint size_of() const; // Size is bigger
1023 public:
1024   const TypePtr* _adr_type;     // memory effects
MachMemBarNode()1025   MachMemBarNode() : MachNode() {
1026     init_class_id(Class_MachMemBar);
1027     _adr_type = TypePtr::BOTTOM; // the default: all of memory
1028   }
1029 
set_adr_type(const TypePtr * atp)1030   void set_adr_type(const TypePtr* atp) { _adr_type = atp; }
1031   virtual const TypePtr *adr_type() const;
1032 };
1033 
1034 
1035 //------------------------------MachTempNode-----------------------------------
1036 // Node used by the adlc to construct inputs to represent temporary registers
1037 class MachTempNode : public MachNode {
1038 private:
1039   MachOper *_opnd_array[1];
1040 
1041 public:
out_RegMask() const1042   virtual const RegMask &out_RegMask() const { return *_opnds[0]->in_RegMask(0); }
rule() const1043   virtual uint rule() const { return 9999999; }
emit(CodeBuffer & cbuf,PhaseRegAlloc * ra_) const1044   virtual void emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const {}
1045 
MachTempNode(MachOper * oper)1046   MachTempNode(MachOper* oper) {
1047     init_class_id(Class_MachTemp);
1048     _num_opnds = 1;
1049     _opnds = _opnd_array;
1050     add_req(NULL);
1051     _opnds[0] = oper;
1052   }
size_of() const1053   virtual uint size_of() const { return sizeof(MachTempNode); }
1054 
1055 #ifndef PRODUCT
format(PhaseRegAlloc *,outputStream * st) const1056   virtual void format(PhaseRegAlloc *, outputStream *st ) const {}
Name() const1057   virtual const char *Name() const { return "MachTemp";}
1058 #endif
1059 };
1060 
1061 
1062 
1063 //------------------------------labelOper--------------------------------------
1064 // Machine-independent version of label operand
1065 class labelOper : public MachOper {
1066 private:
num_edges() const1067   virtual uint           num_edges() const { return 0; }
1068 public:
1069   // Supported for fixed size branches
1070   Label* _label;                // Label for branch(es)
1071 
1072   uint _block_num;
1073 
labelOper()1074   labelOper() : _label(0), _block_num(0) {}
1075 
labelOper(Label * label,uint block_num)1076   labelOper(Label* label, uint block_num) : _label(label), _block_num(block_num) {}
1077 
labelOper(labelOper * l)1078   labelOper(labelOper* l) : _label(l->_label) , _block_num(l->_block_num) {}
1079 
1080   virtual MachOper *clone() const;
1081 
label() const1082   virtual Label *label() const { assert(_label != NULL, "need Label"); return _label; }
1083 
1084   virtual uint           opcode() const;
1085 
1086   virtual uint           hash()   const;
1087   virtual bool           cmp( const MachOper &oper ) const;
1088 #ifndef PRODUCT
Name() const1089   virtual const char    *Name()   const { return "Label";}
1090 
1091   virtual void int_format(PhaseRegAlloc *ra, const MachNode *node, outputStream *st) const;
ext_format(PhaseRegAlloc * ra,const MachNode * node,int idx,outputStream * st) const1092   virtual void ext_format(PhaseRegAlloc *ra, const MachNode *node, int idx, outputStream *st) const { int_format( ra, node, st ); }
1093 #endif
1094 };
1095 
1096 
1097 //------------------------------methodOper--------------------------------------
1098 // Machine-independent version of method operand
1099 class methodOper : public MachOper {
1100 private:
num_edges() const1101   virtual uint           num_edges() const { return 0; }
1102 public:
1103   intptr_t _method;             // Address of method
methodOper()1104   methodOper() :   _method(0) {}
methodOper(intptr_t method)1105   methodOper(intptr_t method) : _method(method)  {}
1106 
1107   virtual MachOper *clone() const;
1108 
method() const1109   virtual intptr_t method() const { return _method; }
1110 
1111   virtual uint           opcode() const;
1112 
1113   virtual uint           hash()   const;
1114   virtual bool           cmp( const MachOper &oper ) const;
1115 #ifndef PRODUCT
Name() const1116   virtual const char    *Name()   const { return "Method";}
1117 
1118   virtual void int_format(PhaseRegAlloc *ra, const MachNode *node, outputStream *st) const;
ext_format(PhaseRegAlloc * ra,const MachNode * node,int idx,outputStream * st) const1119   virtual void ext_format(PhaseRegAlloc *ra, const MachNode *node, int idx, outputStream *st) const { int_format( ra, node, st ); }
1120 #endif
1121 };
1122 
1123 #endif // SHARE_OPTO_MACHNODE_HPP
1124