1 /*
   2  * Copyright (c) 1997, 2015, 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 CPU_SPARC_VM_INTERP_MASM_SPARC_HPP
  26 #define CPU_SPARC_VM_INTERP_MASM_SPARC_HPP
  27 
  28 #include "asm/macroAssembler.inline.hpp"
  29 #include "interpreter/invocationCounter.hpp"
  30 
  31 // This file specializes the assember with interpreter-specific macros
  32 
  33 typedef ByteSize (*OffsetFunction)(uint);
  34 
  35 REGISTER_DECLARATION(     Register, Otos_i , O0); // tos for ints, etc
  36 REGISTER_DECLARATION(     Register, Otos_l , O0); // for longs
  37 REGISTER_DECLARATION(     Register, Otos_l1, O0); // for 1st part of longs
  38 REGISTER_DECLARATION(     Register, Otos_l2, O1); // for 2nd part of longs
  39 REGISTER_DECLARATION(FloatRegister, Ftos_f , F0); // for floats
  40 REGISTER_DECLARATION(FloatRegister, Ftos_d , F0); // for doubles
  41 REGISTER_DECLARATION(FloatRegister, Ftos_d1, F0); // for 1st part of double
  42 REGISTER_DECLARATION(FloatRegister, Ftos_d2, F1); // for 2nd part of double
  43 
  44 #ifndef DONT_USE_REGISTER_DEFINES
  45 #define Otos_i  O0
  46 #define Otos_l  O0
  47 #define Otos_l1 O0
  48 #define Otos_l2 O1
  49 #define Ftos_f  F0
  50 #define Ftos_d  F0
  51 #define Ftos_d1 F0
  52 #define Ftos_d2 F1
  53 #endif // DONT_USE_REGISTER_DEFINES
  54 
  55 class InterpreterMacroAssembler: public MacroAssembler {
  56  protected:
  57   // Interpreter specific version of call_VM_base
  58     virtual void call_VM_leaf_base(
  59     Register java_thread,
  60     address  entry_point,
  61     int      number_of_arguments
  62   );
  63 
  64   virtual void call_VM_base(
  65     Register        oop_result,
  66     Register        java_thread,
  67     Register        last_java_sp,
  68     address         entry_point,
  69     int             number_of_arguments,
  70     bool            check_exception=true
  71   );
  72 
  73   virtual void check_and_handle_popframe(Register java_thread);
  74   virtual void check_and_handle_earlyret(Register java_thread);
  75 
  76   // base routine for all dispatches
  77   void dispatch_base(TosState state, address* table);
  78 
  79  public:
  80   InterpreterMacroAssembler(CodeBuffer* c)
  81     : MacroAssembler(c) {}
  82 
  83   void jump_to_entry(address entry);
  84 
  85   virtual void load_earlyret_value(TosState state);
  86 
  87   static const Address l_tmp ;
  88   static const Address d_tmp ;
  89 
  90   // helper routine for frame allocation/deallocation
  91   // compute the delta by which the caller's SP has to
  92   // be adjusted to accomodate for the non-argument
  93   // locals
  94   void compute_extra_locals_size_in_bytes(Register args_size, Register locals_size, Register delta);
  95 
  96   // dispatch routines
  97   void dispatch_prolog(TosState state, int step = 0);
  98   void dispatch_epilog(TosState state, int step = 0);
  99   void dispatch_only(TosState state);
 100   void dispatch_normal(TosState state);
 101   void dispatch_next(TosState state, int step = 0);
 102   void dispatch_next_noverify_oop(TosState state, int step = 0);
 103   void dispatch_via (TosState state, address* table);
 104 
 105 
 106   // Removes the current activation (incl. unlocking of monitors).
 107   // Additionally this code is used for earlyReturn in which case we
 108   // want to skip throwing an exception and installing an exception.
 109   void remove_activation(TosState state,
 110                          bool throw_monitor_exception = true,
 111                          bool install_monitor_exception = true);
 112 
 113  protected:
 114   void dispatch_Lbyte_code(TosState state, address* table, int bcp_incr = 0, bool verify = true);
 115 
 116  public:
 117   // Super call_VM calls - correspond to MacroAssembler::call_VM(_leaf) calls
 118   void super_call_VM(Register thread_cache,
 119                      Register oop_result,
 120                      Register last_java_sp,
 121                      address entry_point,
 122                      Register arg_1,
 123                      Register arg_2,
 124                      bool check_exception = true);
 125 
 126   void super_call_VM_leaf(Register thread_cache, address entry_point, Register arg_1, Register arg_2);
 127 
 128   // Generate a subtype check: branch to ok_is_subtype if sub_klass is
 129   // a subtype of super_klass.  Blows registers tmp1, tmp2 and tmp3.
 130   void gen_subtype_check( Register sub_klass, Register super_klass, Register tmp1, Register tmp2, Register tmp3, Label &ok_is_subtype );
 131 
 132   // helpers for tossing exceptions
 133   void throw_if_not_1_icc( Condition ok_condition, Label& ok );
 134   void throw_if_not_1_xcc( Condition ok_condition, Label& ok );
 135   void throw_if_not_1_x  ( Condition ok_condition, Label& ok ); // chooses icc or xcc based on _LP64
 136 
 137   void throw_if_not_2( address throw_entry_point, Register Rscratch, Label& ok);
 138 
 139   void throw_if_not_icc( Condition ok_condition, address throw_entry_point, Register Rscratch );
 140   void throw_if_not_xcc( Condition ok_condition, address throw_entry_point, Register Rscratch );
 141   void throw_if_not_x  ( Condition ok_condition, address throw_entry_point, Register Rscratch );
 142 
 143   // helpers for expression stack
 144 
 145   void pop_i(     Register r = Otos_i);
 146   void pop_ptr(   Register r = Otos_i, Register scratch = O4);
 147   void pop_l(     Register r = Otos_l1);
 148   // G4_scratch and Lscratch are used at call sites!!
 149   void pop_f(FloatRegister f = Ftos_f,  Register scratch = G1_scratch);
 150   void pop_d(FloatRegister f = Ftos_d1, Register scratch = G1_scratch);
 151 
 152   void push_i(     Register r = Otos_i);
 153   void push_ptr(   Register r = Otos_i);
 154   void push_l(     Register r = Otos_l1);
 155   void push_f(FloatRegister f = Ftos_f);
 156   void push_d(FloatRegister f = Ftos_d1);
 157 
 158 
 159   void pop (TosState state);           // transition vtos -> state
 160   void push(TosState state);           // transition state -> vtos
 161   void empty_expression_stack();       // resets both Lesp and SP
 162 
 163 #ifdef ASSERT
 164   void verify_sp(Register Rsp, Register Rtemp);
 165   void verify_esp(Register Resp);      // verify that Lesp points to a word in the temp stack
 166 #endif // ASSERT
 167 
 168  public:
 169   void if_cmp(Condition cc, bool ptr_compare);
 170 
 171   // Load values from bytecode stream:
 172 
 173   enum signedOrNot { Signed, Unsigned };
 174   enum setCCOrNot  { set_CC,  dont_set_CC };
 175 
 176   void get_2_byte_integer_at_bcp( int         bcp_offset,
 177                                   Register    Rtmp,
 178                                   Register    Rdst,
 179                                   signedOrNot is_signed,
 180                                   setCCOrNot  should_set_CC = dont_set_CC );
 181 
 182   void get_4_byte_integer_at_bcp( int        bcp_offset,
 183                                   Register   Rtmp,
 184                                   Register   Rdst,
 185                                   setCCOrNot should_set_CC = dont_set_CC );
 186 
 187   // Note: "get_cache_and_index" really means "get the index, use it to get the cache entry, and throw away the index".
 188   void get_cache_and_index_at_bcp(Register cache, Register tmp, int bcp_offset, size_t index_size = sizeof(u2));
 189   void get_cache_and_index_and_bytecode_at_bcp(Register cache, Register temp, Register bytecode, int byte_no, int bcp_offset, size_t index_size = sizeof(u2));
 190   void get_cache_entry_pointer_at_bcp(Register cache, Register tmp, int bcp_offset, size_t index_size = sizeof(u2));
 191   // Note: This one does not fetch the cache.  The first argument is a temp which may be killed.
 192   void get_cache_index_at_bcp(Register temp, Register index, int bcp_offset, size_t index_size = sizeof(u2));
 193 
 194   // load cpool->resolved_references(index);
 195   void load_resolved_reference_at_index(Register result, Register index);
 196 
 197   // common code
 198 
 199   void field_offset_at(int n, Register tmp, Register dest, Register base);
 200   int  field_offset_at(Register object, address bcp, int offset);
 201   void fast_iaaccess(int n, address bcp);
 202   void fast_iaputfield(address bcp, bool do_store_check );
 203 
 204   void index_check(Register array, Register index, int index_shift, Register tmp, Register res);
 205   void index_check_without_pop(Register array, Register index, int index_shift, Register tmp, Register res);
 206 
 207   void get_const(Register Rdst);
 208   void get_constant_pool(Register Rdst);
 209   void get_constant_pool_cache(Register Rdst);
 210   void get_cpool_and_tags(Register Rcpool, Register Rtags);
 211   void is_a(Label& L);
 212 
 213   // Load compiled (i2c) or interpreter entry and call from interpreted
 214   void call_from_interpreter(Register target, Register scratch, Register Rret);
 215 
 216   // --------------------------------------------------
 217 
 218   void unlock_if_synchronized_method(TosState state, bool throw_monitor_exception = true, bool install_monitor_exception = true);
 219 
 220   void add_monitor_to_stack( bool stack_is_empty,
 221                              Register Rtemp,
 222                              Register Rtemp2 );
 223 
 224   // Load/store aligned in _LP64 but unaligned otherwise
 225   // These only apply to the Interpreter expression stack and locals!
 226   void  load_unaligned_double(Register r1, int offset,  FloatRegister d);
 227   void store_unaligned_double(FloatRegister d, Register r1, int offset );
 228 
 229   // Load/store aligned in _LP64 but unaligned otherwise
 230   void  load_unaligned_long(Register r1, int offset,  Register d);
 231   void store_unaligned_long(Register d, Register r1, int offset );
 232 
 233   void access_local_int( Register index, Register dst );
 234   void access_local_ptr( Register index, Register dst );
 235   void access_local_returnAddress( Register index, Register dst );
 236   void access_local_long( Register index, Register dst );
 237   void access_local_float( Register index, FloatRegister dst );
 238   void access_local_double( Register index, FloatRegister dst );
 239 #ifdef ASSERT
 240   void check_for_regarea_stomp( Register Rindex, int offset, Register Rlimit, Register Rscratch, Register Rscratch1);
 241 #endif // ASSERT
 242   void store_local_int( Register index, Register src );
 243   void store_local_ptr( Register index, Register src );
 244   void store_local_ptr( int n, Register src );
 245   void store_local_long( Register index, Register src );
 246   void store_local_float( Register index, FloatRegister src );
 247   void store_local_double( Register index, FloatRegister src );
 248 
 249   // Helpers for swap and dup
 250   void load_ptr(int n, Register val);
 251   void store_ptr(int n, Register val);
 252 
 253   // Helper for getting receiver in register.
 254   void load_receiver(Register param_count, Register recv);
 255 
 256   static int top_most_monitor_byte_offset(); // offset in bytes to top of monitor block
 257   Address top_most_monitor();
 258   void compute_stack_base( Register Rdest );
 259 
 260   void get_method_counters(Register method, Register Rcounters, Label& skip);
 261   void increment_invocation_counter( Register Rcounters, Register Rtmp, Register Rtmp2 );
 262   void increment_backedge_counter( Register Rcounters, Register Rtmp, Register Rtmp2 );
 263   void test_backedge_count_for_osr(Register backedge_count, Register method_counters, Register branch_bcp, Register Rtmp );
 264 
 265   // Object locking
 266   void lock_object  (Register lock_reg, Register obj_reg);
 267   void unlock_object(Register lock_reg);
 268 
 269   // Interpreter profiling operations
 270   void set_method_data_pointer();
 271   void set_method_data_pointer_for_bcp();
 272   void test_method_data_pointer(Label& zero_continue);
 273   void verify_method_data_pointer();
 274   void test_invocation_counter_for_mdp(Register invocation_count, Register method_counters, Register Rtmp, Label &profile_continue);
 275 
 276   void set_mdp_data_at(int constant, Register value);
 277   void increment_mdp_data_at(Address counter, Register bumped_count,
 278                              bool decrement = false);
 279   void increment_mdp_data_at(int constant, Register bumped_count,
 280                              bool decrement = false);
 281   void increment_mdp_data_at(Register reg, int constant,
 282                              Register bumped_count, Register scratch2,
 283                              bool decrement = false);
 284   void increment_mask_and_jump(Address counter_addr,
 285                                int increment, Address mask_addr,
 286                                Register scratch1, Register scratch2,
 287                                Condition cond, Label *where);
 288   void set_mdp_flag_at(int flag_constant, Register scratch);
 289   void test_mdp_data_at(int offset, Register value, Label& not_equal_continue,
 290                         Register scratch);
 291 
 292   void record_klass_in_profile(Register receiver, Register scratch, bool is_virtual_call);
 293   void record_klass_in_profile_helper(Register receiver, Register scratch,
 294                                       Label& done, bool is_virtual_call);
 295   void record_item_in_profile_helper(Register item,
 296                                      Register scratch, int start_row, Label& done, int total_rows,
 297                                      OffsetFunction item_offset_fn, OffsetFunction item_count_offset_fn,
 298                                      int non_profiled_offset);
 299 
 300   void update_mdp_by_offset(int offset_of_disp, Register scratch);
 301   void update_mdp_by_offset(Register reg, int offset_of_disp,
 302                             Register scratch);
 303   void update_mdp_by_constant(int constant);
 304   void update_mdp_for_ret(TosState state, Register return_bci);
 305 
 306   void profile_taken_branch(Register scratch, Register bumped_count);
 307   void profile_not_taken_branch(Register scratch);
 308   void profile_call(Register scratch);
 309   void profile_final_call(Register scratch);
 310   void profile_virtual_call(Register receiver, Register scratch, bool receiver_can_be_null = false);
 311   void profile_called_method(Register method, Register scratch) NOT_JVMCI_RETURN;
 312   void profile_ret(TosState state, Register return_bci, Register scratch);
 313   void profile_null_seen(Register scratch);
 314   void profile_typecheck(Register klass, Register scratch);
 315   void profile_typecheck_failed(Register scratch);
 316   void profile_switch_default(Register scratch);
 317   void profile_switch_case(Register index,
 318                            Register scratch1,
 319                            Register scratch2,
 320                            Register scratch3);
 321 
 322   void profile_obj_type(Register obj, const Address& mdo_addr, Register tmp);
 323   void profile_arguments_type(Register callee, Register tmp1, Register tmp2, bool is_virtual);
 324   void profile_return_type(Register ret, Register tmp1, Register tmp2);
 325   void profile_parameters_type(Register tmp1, Register tmp2, Register tmp3, Register tmp4);
 326 
 327   // Debugging
 328   void interp_verify_oop(Register reg, TosState state, const char * file, int line);    // only if +VerifyOops && state == atos
 329   void verify_oop_or_return_address(Register reg, Register rtmp); // for astore
 330   void verify_FPU(int stack_depth, TosState state = ftos); // only if +VerifyFPU  && (state == ftos || state == dtos)
 331 
 332   // support for JVMTI/Dtrace
 333   typedef enum { NotifyJVMTI, SkipNotifyJVMTI } NotifyMethodExitMode;
 334   void notify_method_entry();
 335   void notify_method_exit(
 336     bool save_result, TosState state, NotifyMethodExitMode mode);
 337 
 338   void save_return_value(TosState state, bool is_native_call);
 339   void restore_return_value(TosState state, bool is_native_call);
 340 
 341 };
 342 
 343 #endif // CPU_SPARC_VM_INTERP_MASM_SPARC_HPP