1 /*
  2  * Copyright (c) 1997, 2023, 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_MATCHER_HPP
 26 #define SHARE_OPTO_MATCHER_HPP
 27 
 28 #include "libadt/vectset.hpp"
 29 #include "memory/resourceArea.hpp"
 30 #include "oops/compressedKlass.hpp"
 31 #include "oops/compressedOops.hpp"
 32 #include "opto/node.hpp"
 33 #include "opto/phaseX.hpp"
 34 #include "opto/regmask.hpp"
 35 #include "opto/subnode.hpp"
 36 #include "runtime/vm_version.hpp"
 37 
 38 class Compile;
 39 class Node;
 40 class MachNode;
 41 class MachTypeNode;
 42 class MachOper;
 43 
 44 //---------------------------Matcher-------------------------------------------
 45 class Matcher : public PhaseTransform {
 46   friend class VMStructs;
 47 
 48 public:
 49 
 50   // Machine-dependent definitions
 51 #include CPU_HEADER(matcher)
 52 
 53   // State and MStack class used in xform() and find_shared() iterative methods.
 54   enum Node_State { Pre_Visit,  // node has to be pre-visited
 55                     Visit,  // visit node
 56                     Post_Visit,  // post-visit node
 57                     Alt_Post_Visit   // alternative post-visit path
 58   };
 59 
 60   class MStack: public Node_Stack {
 61   public:
 62     MStack(int size) : Node_Stack(size) { }
 63 
 64     void push(Node *n, Node_State ns) {
 65       Node_Stack::push(n, (uint)ns);
 66     }
 67     void push(Node *n, Node_State ns, Node *parent, int indx) {
 68       ++_inode_top;
 69       if ((_inode_top + 1) >= _inode_max) grow();
 70       _inode_top->node = parent;
 71       _inode_top->indx = (uint)indx;
 72       ++_inode_top;
 73       _inode_top->node = n;
 74       _inode_top->indx = (uint)ns;
 75     }
 76     Node *parent() {
 77       pop();
 78       return node();
 79     }
 80     Node_State state() const {
 81       return (Node_State)index();
 82     }
 83     void set_state(Node_State ns) {
 84       set_index((uint)ns);
 85     }
 86   };
 87 
 88 private:
 89   // Private arena of State objects
 90   ResourceArea _states_arena;
 91 
 92   // Map old nodes to new nodes
 93   Node_List   _new_nodes;
 94 
 95   VectorSet   _visited;         // Visit bits
 96 
 97   // Used to control the Label pass
 98   VectorSet   _shared;          // Shared Ideal Node
 99   VectorSet   _dontcare;        // Nothing the matcher cares about
100 
101   // Private methods which perform the actual matching and reduction
102   // Walks the label tree, generating machine nodes
103   MachNode *ReduceInst( State *s, int rule, Node *&mem);
104   void ReduceInst_Chain_Rule( State *s, int rule, Node *&mem, MachNode *mach);
105   uint ReduceInst_Interior(State *s, int rule, Node *&mem, MachNode *mach, uint num_opnds);
106   void ReduceOper( State *s, int newrule, Node *&mem, MachNode *mach );
107 
108   // If this node already matched using "rule", return the MachNode for it.
109   MachNode* find_shared_node(Node* n, uint rule);
110 
111   // Convert a dense opcode number to an expanded rule number
112   const int *_reduceOp;
113   const int *_leftOp;
114   const int *_rightOp;
115 
116   // Map dense opcode number to info on when rule is swallowed constant.
117   const bool *_swallowed;
118 
119   // Map dense rule number to determine if this is an instruction chain rule
120   const uint _begin_inst_chain_rule;
121   const uint _end_inst_chain_rule;
122 
123   // We want to clone constants and possible CmpI-variants.
124   // If we do not clone CmpI, then we can have many instances of
125   // condition codes alive at once.  This is OK on some chips and
126   // bad on others.  Hence the machine-dependent table lookup.
127   const char *_must_clone;
128 
129   // Find shared Nodes, or Nodes that otherwise are Matcher roots
130   void find_shared( Node *n );
131   bool find_shared_visit(MStack& mstack, Node* n, uint opcode, bool& mem_op, int& mem_addr_idx);
132   void find_shared_post_visit(Node* n, uint opcode);
133 
134   bool is_vshift_con_pattern(Node* n, Node* m);
135 
136   // Debug and profile information for nodes in old space:
137   GrowableArray<Node_Notes*>* _old_node_note_array;
138 
139   // Node labeling iterator for instruction selection
140   Node* Label_Root(const Node* n, State* svec, Node* control, Node*& mem);
141 
142   Node *transform( Node *dummy );
143 
144   Node_List _projection_list;        // For Machine nodes killing many values
145 
146   Node_Array _shared_nodes;
147 
148 #ifndef PRODUCT
149   Node_Array _old2new_map;    // Map roots of ideal-trees to machine-roots
150   Node_Array _new2old_map;    // Maps machine nodes back to ideal
151   VectorSet _reused;          // Ideal IGV identifiers reused by machine nodes
152 #endif // !PRODUCT
153 
154   void   grow_new_node_array(uint idx_limit) {
155     _new_nodes.map(idx_limit-1, nullptr);
156   }
157   bool    has_new_node(const Node* n) const {
158     return _new_nodes.at(n->_idx) != nullptr;
159   }
160   Node*       new_node(const Node* n) const {
161     assert(has_new_node(n), "set before get");
162     return _new_nodes.at(n->_idx);
163   }
164   void    set_new_node(const Node* n, Node *nn) {
165     assert(!has_new_node(n), "set only once");
166     _new_nodes.map(n->_idx, nn);
167   }
168 
169 #ifdef ASSERT
170   // Make sure only new nodes are reachable from this node
171   void verify_new_nodes_only(Node* root);
172 
173   Node* _mem_node;   // Ideal memory node consumed by mach node
174 #endif
175 
176   // Mach node for ConP #null
177   MachNode* _mach_null;
178 
179   void handle_precedence_edges(Node* n, MachNode *mach);
180 
181 public:
182   int LabelRootDepth;
183   // Convert ideal machine register to a register mask for spill-loads
184   static const RegMask *idealreg2regmask[];
185   RegMask *idealreg2spillmask  [_last_machine_leaf];
186   RegMask *idealreg2debugmask  [_last_machine_leaf];
187   RegMask *idealreg2mhdebugmask[_last_machine_leaf];
188   void init_spill_mask( Node *ret );
189   // Convert machine register number to register mask
190   static uint mreg2regmask_max;
191   static RegMask mreg2regmask[];
192   static RegMask STACK_ONLY_mask;
193   static RegMask caller_save_regmask;
194   static RegMask caller_save_regmask_exclude_soe;
195   static RegMask mh_caller_save_regmask;
196   static RegMask mh_caller_save_regmask_exclude_soe;
197 
198   MachNode* mach_null() const { return _mach_null; }
199 
200   bool    is_shared( Node *n ) { return _shared.test(n->_idx) != 0; }
201   void   set_shared( Node *n ) {  _shared.set(n->_idx); }
202   bool   is_visited( Node *n ) { return _visited.test(n->_idx) != 0; }
203   void  set_visited( Node *n ) { _visited.set(n->_idx); }
204   bool  is_dontcare( Node *n ) { return _dontcare.test(n->_idx) != 0; }
205   void set_dontcare( Node *n ) {  _dontcare.set(n->_idx); }
206 
207   // Mode bit to tell DFA and expand rules whether we are running after
208   // (or during) register selection.  Usually, the matcher runs before,
209   // but it will also get called to generate post-allocation spill code.
210   // In this situation, it is a deadly error to attempt to allocate more
211   // temporary registers.
212   bool _allocation_started;
213 
214   // Machine register names
215   static const char *regName[];
216   // Machine register encodings
217   static const unsigned char _regEncode[];
218   // Machine Node names
219   const char **_ruleName;
220   // Rules that are cheaper to rematerialize than to spill
221   static const uint _begin_rematerialize;
222   static const uint _end_rematerialize;
223 
224   // An array of chars, from 0 to _last_Mach_Reg.
225   // No Save       = 'N' (for register windows)
226   // Save on Entry = 'E'
227   // Save on Call  = 'C'
228   // Always Save   = 'A' (same as SOE + SOC)
229   const char *_register_save_policy;
230   const char *_c_reg_save_policy;
231   // Convert a machine register to a machine register type, so-as to
232   // properly match spill code.
233   const int *_register_save_type;
234   // Maps from machine register to boolean; true if machine register can
235   // be holding a call argument in some signature.
236   static bool can_be_java_arg( int reg );
237   // Maps from machine register to boolean; true if machine register holds
238   // a spillable argument.
239   static bool is_spillable_arg( int reg );
240   // Number of integer live ranges that constitute high register pressure
241   static uint int_pressure_limit();
242   // Number of float live ranges that constitute high register pressure
243   static uint float_pressure_limit();
244 
245   // List of IfFalse or IfTrue Nodes that indicate a taken null test.
246   // List is valid in the post-matching space.
247   Node_List _null_check_tests;
248   void collect_null_checks( Node *proj, Node *orig_proj );
249   void validate_null_checks( );
250 
251   Matcher();
252 
253   // Get a projection node at position pos
254   Node* get_projection(uint pos) {
255     return _projection_list[pos];
256   }
257 
258   // Push a projection node onto the projection list
259   void push_projection(Node* node) {
260     _projection_list.push(node);
261   }
262 
263   Node* pop_projection() {
264     return _projection_list.pop();
265   }
266 
267   // Number of nodes in the projection list
268   uint number_of_projections() const {
269     return _projection_list.size();
270   }
271 
272   // Select instructions for entire method
273   void match();
274 
275   // Helper for match
276   OptoReg::Name warp_incoming_stk_arg( VMReg reg );
277 
278   RegMask* return_values_mask(const TypeFunc* tf);
279 
280   // Transform, then walk.  Does implicit DCE while walking.
281   // Name changed from "transform" to avoid it being virtual.
282   Node *xform( Node *old_space_node, int Nodes );
283 
284   // Match a single Ideal Node - turn it into a 1-Node tree; Label & Reduce.
285   MachNode *match_tree( const Node *n );
286   MachNode *match_sfpt( SafePointNode *sfpt );
287   // Helper for match_sfpt
288   OptoReg::Name warp_outgoing_stk_arg( VMReg reg, OptoReg::Name begin_out_arg_area, OptoReg::Name &out_arg_limit_per_call );
289 
290   // Initialize first stack mask and related masks.
291   void init_first_stack_mask();
292 
293   // If we should save-on-entry this register
294   bool is_save_on_entry( int reg );
295 
296   // Fixup the save-on-entry registers
297   void Fixup_Save_On_Entry( );
298 
299   // --- Frame handling ---
300 
301   // Register number of the stack slot corresponding to the incoming SP.
302   // Per the Big Picture in the AD file, it is:
303   //   SharedInfo::stack0 + locks + in_preserve_stack_slots + pad2.
304   OptoReg::Name _old_SP;
305 
306   // Register number of the stack slot corresponding to the highest incoming
307   // argument on the stack.  Per the Big Picture in the AD file, it is:
308   //   _old_SP + out_preserve_stack_slots + incoming argument size.
309   OptoReg::Name _in_arg_limit;
310 
311   // Register number of the stack slot corresponding to the new SP.
312   // Per the Big Picture in the AD file, it is:
313   //   _in_arg_limit + pad0
314   OptoReg::Name _new_SP;
315 
316   // Register number of the stack slot corresponding to the highest outgoing
317   // argument on the stack.  Per the Big Picture in the AD file, it is:
318   //   _new_SP + max outgoing arguments of all calls
319   OptoReg::Name _out_arg_limit;
320 
321   OptoRegPair *_parm_regs;        // Array of machine registers per argument
322   RegMask *_calling_convention_mask; // Array of RegMasks per argument
323 
324   // Does matcher have a match rule for this ideal node?
325   static bool has_match_rule(int opcode);
326   static const bool _hasMatchRule[_last_opcode];
327 
328   // Does matcher have a match rule for this ideal node and is the
329   // predicate (if there is one) true?
330   // NOTE: If this function is used more commonly in the future, ADLC
331   // should generate this one.
332   static bool match_rule_supported(int opcode);
333 
334   // Identify extra cases that we might want to vectorize automatically
335   // And exclude cases which are not profitable to auto-vectorize.
336   static bool match_rule_supported_superword(int opcode, int vlen, BasicType bt);
337 
338   // identify extra cases that we might want to provide match rules for
339   // e.g. Op_ vector nodes and other intrinsics while guarding with vlen
340   static bool match_rule_supported_vector(int opcode, int vlen, BasicType bt);
341 
342   static bool match_rule_supported_vector_masked(int opcode, int vlen, BasicType bt);
343 
344   static bool vector_needs_partial_operations(Node* node, const TypeVect* vt);
345 
346   static const RegMask* predicate_reg_mask(void);
347   static const TypeVectMask* predicate_reg_type(const Type* elemTy, int length);
348 
349   // Vector width in bytes
350   static int vector_width_in_bytes(BasicType bt);
351 
352   // Limits on vector size (number of elements).
353   static int max_vector_size(const BasicType bt);
354   static int min_vector_size(const BasicType bt);
355   static bool vector_size_supported(const BasicType bt, int size) {
356     return (Matcher::max_vector_size(bt) >= size &&
357             Matcher::min_vector_size(bt) <= size);
358   }
359   // Limits on max vector size (number of elements) for auto-vectorization.
360   static int superword_max_vector_size(const BasicType bt);
361 
362   // Actual max scalable vector register length.
363   static int scalable_vector_reg_size(const BasicType bt);
364   // Actual max scalable predicate register length.
365   static int scalable_predicate_reg_slots();
366 
367   // Vector ideal reg
368   static uint vector_ideal_reg(int len);
369 
370   // Vector length
371   static uint vector_length(const Node* n);
372   static uint vector_length(const MachNode* use, const MachOper* opnd);
373 
374   // Vector length in bytes
375   static uint vector_length_in_bytes(const Node* n);
376   static uint vector_length_in_bytes(const MachNode* use, const MachOper* opnd);
377 
378   // Vector element basic type
379   static BasicType vector_element_basic_type(const Node* n);
380   static BasicType vector_element_basic_type(const MachNode* use, const MachOper* opnd);
381 
382   // Vector element basic type is non double word integral type.
383   static bool is_non_long_integral_vector(const Node* n);
384 
385   // Check if given booltest condition is unsigned or not
386   static inline bool is_unsigned_booltest_pred(int bt) {
387     return ((bt & BoolTest::unsigned_compare) == BoolTest::unsigned_compare);
388   }
389 
390   // These calls are all generated by the ADLC
391 
392   // Java-Java calling convention
393   // (what you use when Java calls Java)
394 
395   // Alignment of stack in bytes, standard Intel word alignment is 4.
396   // Sparc probably wants at least double-word (8).
397   static uint stack_alignment_in_bytes();
398   // Alignment of stack, measured in stack slots.
399   // The size of stack slots is defined by VMRegImpl::stack_slot_size.
400   static uint stack_alignment_in_slots() {
401     return stack_alignment_in_bytes() / (VMRegImpl::stack_slot_size);
402   }
403 
404   // Convert a sig into a calling convention register layout
405   // and find interesting things about it.
406   static OptoReg::Name  find_receiver();
407   // Return address register.  On Intel it is a stack-slot.  On PowerPC
408   // it is the Link register.  On Sparc it is r31?
409   virtual OptoReg::Name return_addr() const;
410   RegMask              _return_addr_mask;
411   // Return value register.  On Intel it is EAX.
412   static OptoRegPair   return_value(uint ideal_reg);
413   static OptoRegPair c_return_value(uint ideal_reg);
414   RegMask*            _return_values_mask;
415   // Inline Cache Register
416   static OptoReg::Name  inline_cache_reg();
417   static int            inline_cache_reg_encode();
418 
419   // Register for DIVI projection of divmodI
420   static RegMask divI_proj_mask();
421   // Register for MODI projection of divmodI
422   static RegMask modI_proj_mask();
423 
424   // Register for DIVL projection of divmodL
425   static RegMask divL_proj_mask();
426   // Register for MODL projection of divmodL
427   static RegMask modL_proj_mask();
428 
429   // Use hardware DIV instruction when it is faster than
430   // a code which use multiply for division by constant.
431   static bool use_asm_for_ldiv_by_con( jlong divisor );
432 
433   static const RegMask method_handle_invoke_SP_save_mask();
434 
435   // Java-Interpreter calling convention
436   // (what you use when calling between compiled-Java and Interpreted-Java
437 
438   // Number of callee-save + always-save registers
439   // Ignores frame pointer and "special" registers
440   static int  number_of_saved_registers();
441 
442   // The Method-klass-holder may be passed in the inline_cache_reg
443   // and then expanded into the inline_cache_reg and a method_ptr register
444 
445   // Interpreter's Frame Pointer Register
446   static OptoReg::Name  interpreter_frame_pointer_reg();
447 
448   // Java-Native calling convention
449   // (what you use when intercalling between Java and C++ code)
450 
451   // Frame pointer. The frame pointer is kept at the base of the stack
452   // and so is probably the stack pointer for most machines.  On Intel
453   // it is ESP.  On the PowerPC it is R1.  On Sparc it is SP.
454   OptoReg::Name  c_frame_pointer() const;
455   static RegMask c_frame_ptr_mask;
456 
457   // Java-Native vector calling convention
458   static bool supports_vector_calling_convention();
459   static OptoRegPair vector_return_value(uint ideal_reg);
460 
461   // Is this branch offset small enough to be addressed by a short branch?
462   bool is_short_branch_offset(int rule, int br_size, int offset);
463 
464   // Should the input 'm' of node 'n' be cloned during matching?
465   // Reports back whether the node was cloned or not.
466   bool    clone_node(Node* n, Node* m, Matcher::MStack& mstack);
467   bool pd_clone_node(Node* n, Node* m, Matcher::MStack& mstack);
468 
469   // Should the Matcher clone shifts on addressing modes, expecting them to
470   // be subsumed into complex addressing expressions or compute them into
471   // registers?  True for Intel but false for most RISCs
472   bool pd_clone_address_expressions(AddPNode* m, MStack& mstack, VectorSet& address_visited);
473   // Clone base + offset address expression
474   bool clone_base_plus_offset_address(AddPNode* m, MStack& mstack, VectorSet& address_visited);
475 
476   // Generate implicit null check for narrow oops if it can fold
477   // into address expression (x64).
478   //
479   // [R12 + narrow_oop_reg<<3 + offset] // fold into address expression
480   // NullCheck narrow_oop_reg
481   //
482   // When narrow oops can't fold into address expression (Sparc) and
483   // base is not null use decode_not_null and normal implicit null check.
484   // Note, decode_not_null node can be used here since it is referenced
485   // only on non null path but it requires special handling, see
486   // collect_null_checks():
487   //
488   // decode_not_null narrow_oop_reg, oop_reg // 'shift' and 'add base'
489   // [oop_reg + offset]
490   // NullCheck oop_reg
491   //
492   // With Zero base and when narrow oops can not fold into address
493   // expression use normal implicit null check since only shift
494   // is needed to decode narrow oop.
495   //
496   // decode narrow_oop_reg, oop_reg // only 'shift'
497   // [oop_reg + offset]
498   // NullCheck oop_reg
499   //
500   static bool gen_narrow_oop_implicit_null_checks();
501 
502  private:
503   void do_postselect_cleanup();
504 
505   void specialize_generic_vector_operands();
506   void specialize_mach_node(MachNode* m);
507   void specialize_temp_node(MachTempNode* tmp, MachNode* use, uint idx);
508   MachOper* specialize_vector_operand(MachNode* m, uint opnd_idx);
509 
510   static MachOper* pd_specialize_generic_vector_operand(MachOper* generic_opnd, uint ideal_reg, bool is_temp);
511   static bool is_reg2reg_move(MachNode* m);
512   static bool is_generic_vector(MachOper* opnd);
513 
514   const RegMask* regmask_for_ideal_register(uint ideal_reg, Node* ret);
515 
516   // Graph verification code
517   DEBUG_ONLY( bool verify_after_postselect_cleanup(); )
518 
519  public:
520   // This routine is run whenever a graph fails to match.
521   // If it returns, the compiler should bailout to interpreter without error.
522   // In non-product mode, SoftMatchFailure is false to detect non-canonical
523   // graphs.  Print a message and exit.
524   static void soft_match_failure() {
525     if( SoftMatchFailure ) return;
526     else { fatal("SoftMatchFailure is not allowed except in product"); }
527   }
528 
529   // Check for a following volatile memory barrier without an
530   // intervening load and thus we don't need a barrier here.  We
531   // retain the Node to act as a compiler ordering barrier.
532   static bool post_store_load_barrier(const Node* mb);
533 
534   // Does n lead to an uncommon trap that can cause deoptimization?
535   static bool branches_to_uncommon_trap(const Node *n);
536 
537 #ifndef PRODUCT
538   // Record mach-to-Ideal mapping, reusing the Ideal IGV identifier if possible.
539   void record_new2old(Node* newn, Node* old);
540 
541   void dump_old2new_map();      // machine-independent to machine-dependent
542 
543   Node* find_old_node(const Node* new_node) {
544     return _new2old_map[new_node->_idx];
545   }
546 #endif // !PRODUCT
547 };
548 
549 #endif // SHARE_OPTO_MATCHER_HPP