src/share/vm/c1/c1_LIRGenerator.hpp

Fri, 15 Jan 2016 22:33:15 +0000

author
kevinw
date
Fri, 15 Jan 2016 22:33:15 +0000
changeset 8368
32b682649973
parent 7598
ddce0b7cee93
child 8415
d109bda16490
permissions
-rw-r--r--

8132051: Better byte behavior
Reviewed-by: coleenp, roland

     1 /*
     2  * Copyright (c) 2005, 2016, 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  */
    25 #ifndef SHARE_VM_C1_C1_LIRGENERATOR_HPP
    26 #define SHARE_VM_C1_C1_LIRGENERATOR_HPP
    28 #include "c1/c1_Instruction.hpp"
    29 #include "c1/c1_LIR.hpp"
    30 #include "ci/ciMethodData.hpp"
    31 #include "utilities/sizes.hpp"
    33 // The classes responsible for code emission and register allocation
    36 class LIRGenerator;
    37 class LIREmitter;
    38 class Invoke;
    39 class SwitchRange;
    40 class LIRItem;
    42 define_array(LIRItemArray, LIRItem*)
    43 define_stack(LIRItemList, LIRItemArray)
    45 class SwitchRange: public CompilationResourceObj {
    46  private:
    47   int _low_key;
    48   int _high_key;
    49   BlockBegin* _sux;
    50  public:
    51   SwitchRange(int start_key, BlockBegin* sux): _low_key(start_key), _high_key(start_key), _sux(sux) {}
    52   void set_high_key(int key) { _high_key = key; }
    54   int high_key() const { return _high_key; }
    55   int low_key() const { return _low_key; }
    56   BlockBegin* sux() const { return _sux; }
    57 };
    59 define_array(SwitchRangeArray, SwitchRange*)
    60 define_stack(SwitchRangeList, SwitchRangeArray)
    63 class ResolveNode;
    65 define_array(NodeArray, ResolveNode*);
    66 define_stack(NodeList, NodeArray);
    69 // Node objects form a directed graph of LIR_Opr
    70 // Edges between Nodes represent moves from one Node to its destinations
    71 class ResolveNode: public CompilationResourceObj {
    72  private:
    73   LIR_Opr    _operand;       // the source or destinaton
    74   NodeList   _destinations;  // for the operand
    75   bool       _assigned;      // Value assigned to this Node?
    76   bool       _visited;       // Node already visited?
    77   bool       _start_node;    // Start node already visited?
    79  public:
    80   ResolveNode(LIR_Opr operand)
    81     : _operand(operand)
    82     , _assigned(false)
    83     , _visited(false)
    84     , _start_node(false) {};
    86   // accessors
    87   LIR_Opr operand() const           { return _operand; }
    88   int no_of_destinations() const    { return _destinations.length(); }
    89   ResolveNode* destination_at(int i)     { return _destinations[i]; }
    90   bool assigned() const             { return _assigned; }
    91   bool visited() const              { return _visited; }
    92   bool start_node() const           { return _start_node; }
    94   // modifiers
    95   void append(ResolveNode* dest)         { _destinations.append(dest); }
    96   void set_assigned()               { _assigned = true; }
    97   void set_visited()                { _visited = true; }
    98   void set_start_node()             { _start_node = true; }
    99 };
   102 // This is shared state to be used by the PhiResolver so the operand
   103 // arrays don't have to be reallocated for reach resolution.
   104 class PhiResolverState: public CompilationResourceObj {
   105   friend class PhiResolver;
   107  private:
   108   NodeList _virtual_operands; // Nodes where the operand is a virtual register
   109   NodeList _other_operands;   // Nodes where the operand is not a virtual register
   110   NodeList _vreg_table;       // Mapping from virtual register to Node
   112  public:
   113   PhiResolverState() {}
   115   void reset(int max_vregs);
   116 };
   119 // class used to move value of phi operand to phi function
   120 class PhiResolver: public CompilationResourceObj {
   121  private:
   122   LIRGenerator*     _gen;
   123   PhiResolverState& _state; // temporary state cached by LIRGenerator
   125   ResolveNode*   _loop;
   126   LIR_Opr _temp;
   128   // access to shared state arrays
   129   NodeList& virtual_operands() { return _state._virtual_operands; }
   130   NodeList& other_operands()   { return _state._other_operands;   }
   131   NodeList& vreg_table()       { return _state._vreg_table;       }
   133   ResolveNode* create_node(LIR_Opr opr, bool source);
   134   ResolveNode* source_node(LIR_Opr opr)      { return create_node(opr, true); }
   135   ResolveNode* destination_node(LIR_Opr opr) { return create_node(opr, false); }
   137   void emit_move(LIR_Opr src, LIR_Opr dest);
   138   void move_to_temp(LIR_Opr src);
   139   void move_temp_to(LIR_Opr dest);
   140   void move(ResolveNode* src, ResolveNode* dest);
   142   LIRGenerator* gen() {
   143     return _gen;
   144   }
   146  public:
   147   PhiResolver(LIRGenerator* _lir_gen, int max_vregs);
   148   ~PhiResolver();
   150   void move(LIR_Opr src, LIR_Opr dest);
   151 };
   154 // only the classes below belong in the same file
   155 class LIRGenerator: public InstructionVisitor, public BlockClosure {
   157  private:
   158   Compilation*  _compilation;
   159   ciMethod*     _method;    // method that we are compiling
   160   PhiResolverState  _resolver_state;
   161   BlockBegin*   _block;
   162   int           _virtual_register_number;
   163   Values        _instruction_for_operand;
   164   BitMap2D      _vreg_flags; // flags which can be set on a per-vreg basis
   165   LIR_List*     _lir;
   166   BarrierSet*   _bs;
   168   LIRGenerator* gen() {
   169     return this;
   170   }
   172   void print_if_not_loaded(const NewInstance* new_instance) PRODUCT_RETURN;
   174 #ifdef ASSERT
   175   LIR_List* lir(const char * file, int line) const {
   176     _lir->set_file_and_line(file, line);
   177     return _lir;
   178   }
   179 #endif
   180   LIR_List* lir() const {
   181     return _lir;
   182   }
   184   // a simple cache of constants used within a block
   185   GrowableArray<LIR_Const*>       _constants;
   186   LIR_OprList                     _reg_for_constants;
   187   Values                          _unpinned_constants;
   189   friend class PhiResolver;
   191   // unified bailout support
   192   void bailout(const char* msg) const            { compilation()->bailout(msg); }
   193   bool bailed_out() const                        { return compilation()->bailed_out(); }
   195   void block_do_prolog(BlockBegin* block);
   196   void block_do_epilog(BlockBegin* block);
   198   // register allocation
   199   LIR_Opr rlock(Value instr);                      // lock a free register
   200   LIR_Opr rlock_result(Value instr);
   201   LIR_Opr rlock_result(Value instr, BasicType type);
   202   LIR_Opr rlock_byte(BasicType type);
   203   LIR_Opr rlock_callee_saved(BasicType type);
   205   // get a constant into a register and get track of what register was used
   206   LIR_Opr load_constant(Constant* x);
   207   LIR_Opr load_constant(LIR_Const* constant);
   209   // Given an immediate value, return an operand usable in logical ops.
   210   LIR_Opr load_immediate(int x, BasicType type);
   212   void  set_result(Value x, LIR_Opr opr)           {
   213     assert(opr->is_valid(), "must set to valid value");
   214     assert(x->operand()->is_illegal(), "operand should never change");
   215     assert(!opr->is_register() || opr->is_virtual(), "should never set result to a physical register");
   216     x->set_operand(opr);
   217     assert(opr == x->operand(), "must be");
   218     if (opr->is_virtual()) {
   219       _instruction_for_operand.at_put_grow(opr->vreg_number(), x, NULL);
   220     }
   221   }
   222   void  set_no_result(Value x)                     { assert(!x->has_uses(), "can't have use"); x->clear_operand(); }
   224   friend class LIRItem;
   226   LIR_Opr round_item(LIR_Opr opr);
   227   LIR_Opr force_to_spill(LIR_Opr value, BasicType t);
   229   PhiResolverState& resolver_state() { return _resolver_state; }
   231   void  move_to_phi(PhiResolver* resolver, Value cur_val, Value sux_val);
   232   void  move_to_phi(ValueStack* cur_state);
   234   // code emission
   235   void do_ArithmeticOp_Long   (ArithmeticOp*    x);
   236   void do_ArithmeticOp_Int    (ArithmeticOp*    x);
   237   void do_ArithmeticOp_FPU    (ArithmeticOp*    x);
   239   // platform dependent
   240   LIR_Opr getThreadPointer();
   242   void do_RegisterFinalizer(Intrinsic* x);
   243   void do_isInstance(Intrinsic* x);
   244   void do_getClass(Intrinsic* x);
   245   void do_currentThread(Intrinsic* x);
   246   void do_MathIntrinsic(Intrinsic* x);
   247   void do_ArrayCopy(Intrinsic* x);
   248   void do_CompareAndSwap(Intrinsic* x, ValueType* type);
   249   void do_NIOCheckIndex(Intrinsic* x);
   250   void do_FPIntrinsics(Intrinsic* x);
   251   void do_Reference_get(Intrinsic* x);
   252   void do_update_CRC32(Intrinsic* x);
   254   void do_UnsafePrefetch(UnsafePrefetch* x, bool is_store);
   256   LIR_Opr call_runtime(BasicTypeArray* signature, LIRItemList* args, address entry, ValueType* result_type, CodeEmitInfo* info);
   257   LIR_Opr call_runtime(BasicTypeArray* signature, LIR_OprList* args, address entry, ValueType* result_type, CodeEmitInfo* info);
   259   // convenience functions
   260   LIR_Opr call_runtime(Value arg1, address entry, ValueType* result_type, CodeEmitInfo* info);
   261   LIR_Opr call_runtime(Value arg1, Value arg2, address entry, ValueType* result_type, CodeEmitInfo* info);
   263   // GC Barriers
   265   // generic interface
   267   void pre_barrier(LIR_Opr addr_opr, LIR_Opr pre_val, bool do_load, bool patch, CodeEmitInfo* info);
   268   void post_barrier(LIR_OprDesc* addr, LIR_OprDesc* new_val);
   270   // specific implementations
   271   // pre barriers
   273   void G1SATBCardTableModRef_pre_barrier(LIR_Opr addr_opr, LIR_Opr pre_val,
   274                                          bool do_load, bool patch, CodeEmitInfo* info);
   276   // post barriers
   278   void G1SATBCardTableModRef_post_barrier(LIR_OprDesc* addr, LIR_OprDesc* new_val);
   279   void CardTableModRef_post_barrier(LIR_OprDesc* addr, LIR_OprDesc* new_val);
   280 #ifdef CARDTABLEMODREF_POST_BARRIER_HELPER
   281   void CardTableModRef_post_barrier_helper(LIR_OprDesc* addr, LIR_Const* card_table_base);
   282 #endif
   285   static LIR_Opr result_register_for(ValueType* type, bool callee = false);
   287   ciObject* get_jobject_constant(Value value);
   289   LIRItemList* invoke_visit_arguments(Invoke* x);
   290   void invoke_load_arguments(Invoke* x, LIRItemList* args, const LIR_OprList* arg_list);
   292   void trace_block_entry(BlockBegin* block);
   294   // volatile field operations are never patchable because a klass
   295   // must be loaded to know it's volatile which means that the offset
   296   // it always known as well.
   297   void volatile_field_store(LIR_Opr value, LIR_Address* address, CodeEmitInfo* info);
   298   void volatile_field_load(LIR_Address* address, LIR_Opr result, CodeEmitInfo* info);
   300   void put_Object_unsafe(LIR_Opr src, LIR_Opr offset, LIR_Opr data, BasicType type, bool is_volatile);
   301   void get_Object_unsafe(LIR_Opr dest, LIR_Opr src, LIR_Opr offset, BasicType type, bool is_volatile);
   303   void arithmetic_call_op (Bytecodes::Code code, LIR_Opr result, LIR_OprList* args);
   305   void increment_counter(address counter, BasicType type, int step = 1);
   306   void increment_counter(LIR_Address* addr, int step = 1);
   308   // is_strictfp is only needed for mul and div (and only generates different code on i486)
   309   void arithmetic_op(Bytecodes::Code code, LIR_Opr result, LIR_Opr left, LIR_Opr right, bool is_strictfp, LIR_Opr tmp, CodeEmitInfo* info = NULL);
   310   // machine dependent.  returns true if it emitted code for the multiply
   311   bool strength_reduce_multiply(LIR_Opr left, int constant, LIR_Opr result, LIR_Opr tmp);
   313   void store_stack_parameter (LIR_Opr opr, ByteSize offset_from_sp_in_bytes);
   315   void klass2reg_with_patching(LIR_Opr r, ciMetadata* obj, CodeEmitInfo* info, bool need_resolve = false);
   317   // this loads the length and compares against the index
   318   void array_range_check          (LIR_Opr array, LIR_Opr index, CodeEmitInfo* null_check_info, CodeEmitInfo* range_check_info);
   319   // For java.nio.Buffer.checkIndex
   320   void nio_range_check            (LIR_Opr buffer, LIR_Opr index, LIR_Opr result, CodeEmitInfo* info);
   322   void arithmetic_op_int  (Bytecodes::Code code, LIR_Opr result, LIR_Opr left, LIR_Opr right, LIR_Opr tmp);
   323   void arithmetic_op_long (Bytecodes::Code code, LIR_Opr result, LIR_Opr left, LIR_Opr right, CodeEmitInfo* info = NULL);
   324   void arithmetic_op_fpu  (Bytecodes::Code code, LIR_Opr result, LIR_Opr left, LIR_Opr right, bool is_strictfp, LIR_Opr tmp = LIR_OprFact::illegalOpr);
   326   void shift_op   (Bytecodes::Code code, LIR_Opr dst_reg, LIR_Opr value, LIR_Opr count, LIR_Opr tmp);
   328   void logic_op   (Bytecodes::Code code, LIR_Opr dst_reg, LIR_Opr left, LIR_Opr right);
   330   void monitor_enter (LIR_Opr object, LIR_Opr lock, LIR_Opr hdr, LIR_Opr scratch, int monitor_no, CodeEmitInfo* info_for_exception, CodeEmitInfo* info);
   331   void monitor_exit  (LIR_Opr object, LIR_Opr lock, LIR_Opr hdr, LIR_Opr scratch, int monitor_no);
   333   void new_instance    (LIR_Opr  dst, ciInstanceKlass* klass, bool is_unresolved, LIR_Opr  scratch1, LIR_Opr  scratch2, LIR_Opr  scratch3,  LIR_Opr scratch4, LIR_Opr  klass_reg, CodeEmitInfo* info);
   335   // machine dependent
   336   void cmp_mem_int(LIR_Condition condition, LIR_Opr base, int disp, int c, CodeEmitInfo* info);
   337   void cmp_reg_mem(LIR_Condition condition, LIR_Opr reg, LIR_Opr base, int disp, BasicType type, CodeEmitInfo* info);
   338   void cmp_reg_mem(LIR_Condition condition, LIR_Opr reg, LIR_Opr base, LIR_Opr disp, BasicType type, CodeEmitInfo* info);
   340   void arraycopy_helper(Intrinsic* x, int* flags, ciArrayKlass** expected_type);
   342   // returns a LIR_Address to address an array location.  May also
   343   // emit some code as part of address calculation.  If
   344   // needs_card_mark is true then compute the full address for use by
   345   // both the store and the card mark.
   346   LIR_Address* generate_address(LIR_Opr base,
   347                                 LIR_Opr index, int shift,
   348                                 int disp,
   349                                 BasicType type);
   350   LIR_Address* generate_address(LIR_Opr base, int disp, BasicType type) {
   351     return generate_address(base, LIR_OprFact::illegalOpr, 0, disp, type);
   352   }
   353   LIR_Address* emit_array_address(LIR_Opr array_opr, LIR_Opr index_opr, BasicType type, bool needs_card_mark);
   355   // the helper for generate_address
   356   void add_large_constant(LIR_Opr src, int c, LIR_Opr dest);
   358   // machine preferences and characteristics
   359   bool can_inline_as_constant(Value i) const;
   360   bool can_inline_as_constant(LIR_Const* c) const;
   361   bool can_store_as_constant(Value i, BasicType type) const;
   363   LIR_Opr safepoint_poll_register();
   365   void profile_branch(If* if_instr, If::Condition cond);
   366   void increment_event_counter_impl(CodeEmitInfo* info,
   367                                     ciMethod *method, int frequency,
   368                                     int bci, bool backedge, bool notify);
   369   void increment_event_counter(CodeEmitInfo* info, int bci, bool backedge);
   370   void increment_invocation_counter(CodeEmitInfo *info) {
   371     if (compilation()->count_invocations()) {
   372       increment_event_counter(info, InvocationEntryBci, false);
   373     }
   374   }
   375   void increment_backedge_counter(CodeEmitInfo* info, int bci) {
   376     if (compilation()->count_backedges()) {
   377       increment_event_counter(info, bci, true);
   378     }
   379   }
   381   CodeEmitInfo* state_for(Instruction* x, ValueStack* state, bool ignore_xhandler = false);
   382   CodeEmitInfo* state_for(Instruction* x);
   384   // allocates a virtual register for this instruction if
   385   // one isn't already allocated.  Only for Phi and Local.
   386   LIR_Opr operand_for_instruction(Instruction *x);
   388   void set_block(BlockBegin* block)              { _block = block; }
   390   void block_prolog(BlockBegin* block);
   391   void block_epilog(BlockBegin* block);
   393   void do_root (Instruction* instr);
   394   void walk    (Instruction* instr);
   396   void bind_block_entry(BlockBegin* block);
   397   void start_block(BlockBegin* block);
   399   LIR_Opr new_register(BasicType type);
   400   LIR_Opr new_register(Value value)              { return new_register(as_BasicType(value->type())); }
   401   LIR_Opr new_register(ValueType* type)          { return new_register(as_BasicType(type)); }
   403   // returns a register suitable for doing pointer math
   404   LIR_Opr new_pointer_register() {
   405 #ifdef _LP64
   406     return new_register(T_LONG);
   407 #else
   408     return new_register(T_INT);
   409 #endif
   410   }
   412   static LIR_Condition lir_cond(If::Condition cond) {
   413     LIR_Condition l;
   414     switch (cond) {
   415     case If::eql: l = lir_cond_equal;        break;
   416     case If::neq: l = lir_cond_notEqual;     break;
   417     case If::lss: l = lir_cond_less;         break;
   418     case If::leq: l = lir_cond_lessEqual;    break;
   419     case If::geq: l = lir_cond_greaterEqual; break;
   420     case If::gtr: l = lir_cond_greater;      break;
   421     case If::aeq: l = lir_cond_aboveEqual;   break;
   422     case If::beq: l = lir_cond_belowEqual;   break;
   423     };
   424     return l;
   425   }
   427 #ifdef __SOFTFP__
   428   void do_soft_float_compare(If *x);
   429 #endif // __SOFTFP__
   431   void init();
   433   SwitchRangeArray* create_lookup_ranges(TableSwitch* x);
   434   SwitchRangeArray* create_lookup_ranges(LookupSwitch* x);
   435   void do_SwitchRanges(SwitchRangeArray* x, LIR_Opr value, BlockBegin* default_sux);
   437   void do_RuntimeCall(address routine, int expected_arguments, Intrinsic* x);
   438 #ifdef TRACE_HAVE_INTRINSICS
   439   void do_ThreadIDIntrinsic(Intrinsic* x);
   440   void do_ClassIDIntrinsic(Intrinsic* x);
   441 #endif
   442   ciKlass* profile_type(ciMethodData* md, int md_first_offset, int md_offset, intptr_t profiled_k,
   443                         Value arg, LIR_Opr& mdp, bool not_null, ciKlass* signature_at_call_k,
   444                         ciKlass* callee_signature_k);
   445   void profile_arguments(ProfileCall* x);
   446   void profile_parameters(Base* x);
   447   void profile_parameters_at_call(ProfileCall* x);
   448   LIR_Opr maybe_mask_boolean(StoreIndexed* x, LIR_Opr array, LIR_Opr value, CodeEmitInfo*& null_check_info);
   450  public:
   451   Compilation*  compilation() const              { return _compilation; }
   452   FrameMap*     frame_map() const                { return _compilation->frame_map(); }
   453   ciMethod*     method() const                   { return _method; }
   454   BlockBegin*   block() const                    { return _block; }
   455   IRScope*      scope() const                    { return block()->scope(); }
   457   int max_virtual_register_number() const        { return _virtual_register_number; }
   459   void block_do(BlockBegin* block);
   461   // Flags that can be set on vregs
   462   enum VregFlag {
   463       must_start_in_memory = 0  // needs to be assigned a memory location at beginning, but may then be loaded in a register
   464     , callee_saved     = 1    // must be in a callee saved register
   465     , byte_reg         = 2    // must be in a byte register
   466     , num_vreg_flags
   468   };
   470   LIRGenerator(Compilation* compilation, ciMethod* method)
   471     : _compilation(compilation)
   472     , _method(method)
   473     , _virtual_register_number(LIR_OprDesc::vreg_base)
   474     , _vreg_flags(NULL, 0, num_vreg_flags) {
   475     init();
   476   }
   478   // for virtual registers, maps them back to Phi's or Local's
   479   Instruction* instruction_for_opr(LIR_Opr opr);
   480   Instruction* instruction_for_vreg(int reg_num);
   482   void set_vreg_flag   (int vreg_num, VregFlag f);
   483   bool is_vreg_flag_set(int vreg_num, VregFlag f);
   484   void set_vreg_flag   (LIR_Opr opr,  VregFlag f) { set_vreg_flag(opr->vreg_number(), f); }
   485   bool is_vreg_flag_set(LIR_Opr opr,  VregFlag f) { return is_vreg_flag_set(opr->vreg_number(), f); }
   487   // statics
   488   static LIR_Opr exceptionOopOpr();
   489   static LIR_Opr exceptionPcOpr();
   490   static LIR_Opr divInOpr();
   491   static LIR_Opr divOutOpr();
   492   static LIR_Opr remOutOpr();
   493   static LIR_Opr shiftCountOpr();
   494   LIR_Opr syncTempOpr();
   495   LIR_Opr atomicLockOpr();
   497   // returns a register suitable for saving the thread in a
   498   // call_runtime_leaf if one is needed.
   499   LIR_Opr getThreadTemp();
   501   // visitor functionality
   502   virtual void do_Phi            (Phi*             x);
   503   virtual void do_Local          (Local*           x);
   504   virtual void do_Constant       (Constant*        x);
   505   virtual void do_LoadField      (LoadField*       x);
   506   virtual void do_StoreField     (StoreField*      x);
   507   virtual void do_ArrayLength    (ArrayLength*     x);
   508   virtual void do_LoadIndexed    (LoadIndexed*     x);
   509   virtual void do_StoreIndexed   (StoreIndexed*    x);
   510   virtual void do_NegateOp       (NegateOp*        x);
   511   virtual void do_ArithmeticOp   (ArithmeticOp*    x);
   512   virtual void do_ShiftOp        (ShiftOp*         x);
   513   virtual void do_LogicOp        (LogicOp*         x);
   514   virtual void do_CompareOp      (CompareOp*       x);
   515   virtual void do_IfOp           (IfOp*            x);
   516   virtual void do_Convert        (Convert*         x);
   517   virtual void do_NullCheck      (NullCheck*       x);
   518   virtual void do_TypeCast       (TypeCast*        x);
   519   virtual void do_Invoke         (Invoke*          x);
   520   virtual void do_NewInstance    (NewInstance*     x);
   521   virtual void do_NewTypeArray   (NewTypeArray*    x);
   522   virtual void do_NewObjectArray (NewObjectArray*  x);
   523   virtual void do_NewMultiArray  (NewMultiArray*   x);
   524   virtual void do_CheckCast      (CheckCast*       x);
   525   virtual void do_InstanceOf     (InstanceOf*      x);
   526   virtual void do_MonitorEnter   (MonitorEnter*    x);
   527   virtual void do_MonitorExit    (MonitorExit*     x);
   528   virtual void do_Intrinsic      (Intrinsic*       x);
   529   virtual void do_BlockBegin     (BlockBegin*      x);
   530   virtual void do_Goto           (Goto*            x);
   531   virtual void do_If             (If*              x);
   532   virtual void do_IfInstanceOf   (IfInstanceOf*    x);
   533   virtual void do_TableSwitch    (TableSwitch*     x);
   534   virtual void do_LookupSwitch   (LookupSwitch*    x);
   535   virtual void do_Return         (Return*          x);
   536   virtual void do_Throw          (Throw*           x);
   537   virtual void do_Base           (Base*            x);
   538   virtual void do_OsrEntry       (OsrEntry*        x);
   539   virtual void do_ExceptionObject(ExceptionObject* x);
   540   virtual void do_RoundFP        (RoundFP*         x);
   541   virtual void do_UnsafeGetRaw   (UnsafeGetRaw*    x);
   542   virtual void do_UnsafePutRaw   (UnsafePutRaw*    x);
   543   virtual void do_UnsafeGetObject(UnsafeGetObject* x);
   544   virtual void do_UnsafePutObject(UnsafePutObject* x);
   545   virtual void do_UnsafeGetAndSetObject(UnsafeGetAndSetObject* x);
   546   virtual void do_UnsafePrefetchRead (UnsafePrefetchRead*  x);
   547   virtual void do_UnsafePrefetchWrite(UnsafePrefetchWrite* x);
   548   virtual void do_ProfileCall    (ProfileCall*     x);
   549   virtual void do_ProfileReturnType (ProfileReturnType* x);
   550   virtual void do_ProfileInvoke  (ProfileInvoke*   x);
   551   virtual void do_RuntimeCall    (RuntimeCall*     x);
   552   virtual void do_MemBar         (MemBar*          x);
   553   virtual void do_RangeCheckPredicate(RangeCheckPredicate* x);
   554 #ifdef ASSERT
   555   virtual void do_Assert         (Assert*          x);
   556 #endif
   558 #ifdef C1_LIRGENERATOR_MD_HPP
   559 #include C1_LIRGENERATOR_MD_HPP
   560 #endif
   561 };
   564 class LIRItem: public CompilationResourceObj {
   565  private:
   566   Value         _value;
   567   LIRGenerator* _gen;
   568   LIR_Opr       _result;
   569   bool          _destroys_register;
   570   LIR_Opr       _new_result;
   572   LIRGenerator* gen() const { return _gen; }
   574  public:
   575   LIRItem(Value value, LIRGenerator* gen) {
   576     _destroys_register = false;
   577     _gen = gen;
   578     set_instruction(value);
   579   }
   581   LIRItem(LIRGenerator* gen) {
   582     _destroys_register = false;
   583     _gen = gen;
   584     _result = LIR_OprFact::illegalOpr;
   585     set_instruction(NULL);
   586   }
   588   void set_instruction(Value value) {
   589     _value = value;
   590     _result = LIR_OprFact::illegalOpr;
   591     if (_value != NULL) {
   592       _gen->walk(_value);
   593       _result = _value->operand();
   594     }
   595     _new_result = LIR_OprFact::illegalOpr;
   596   }
   598   Value value() const          { return _value;          }
   599   ValueType* type() const      { return value()->type(); }
   600   LIR_Opr result()             {
   601     assert(!_destroys_register || (!_result->is_register() || _result->is_virtual()),
   602            "shouldn't use set_destroys_register with physical regsiters");
   603     if (_destroys_register && _result->is_register()) {
   604       if (_new_result->is_illegal()) {
   605         _new_result = _gen->new_register(type());
   606         gen()->lir()->move(_result, _new_result);
   607       }
   608       return _new_result;
   609     } else {
   610       return _result;
   611     }
   612     return _result;
   613   }
   615   void set_result(LIR_Opr opr);
   617   void load_item();
   618   void load_byte_item();
   619   void load_nonconstant();
   620   // load any values which can't be expressed as part of a single store instruction
   621   void load_for_store(BasicType store_type);
   622   void load_item_force(LIR_Opr reg);
   624   void dont_load_item() {
   625     // do nothing
   626   }
   628   void set_destroys_register() {
   629     _destroys_register = true;
   630   }
   632   bool is_constant() const { return value()->as_Constant() != NULL; }
   633   bool is_stack()          { return result()->is_stack(); }
   634   bool is_register()       { return result()->is_register(); }
   636   ciObject* get_jobject_constant() const;
   637   jint      get_jint_constant() const;
   638   jlong     get_jlong_constant() const;
   639   jfloat    get_jfloat_constant() const;
   640   jdouble   get_jdouble_constant() const;
   641   jint      get_address_constant() const;
   642 };
   644 #endif // SHARE_VM_C1_C1_LIRGENERATOR_HPP

mercurial