src/cpu/mips/vm/interp_masm_mips_64.hpp

Tue, 10 Apr 2018 10:21:49 +0800

author
fujie
date
Tue, 10 Apr 2018 10:21:49 +0800
changeset 8858
e3f4d3592615
parent 6893
5795ec554c3c
child 8863
5376ce0dc552
permissions
-rw-r--r--

[Upgrade] jdk8u77-b03 --> jdk8u91-b15 (ztos support for MIPS)

     1 /*
     2  * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
     3  * Copyright (c) 2015, 2016, Loongson Technology. All rights reserved.
     4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     5  *
     6  * This code is free software; you can redistribute it and/or modify it
     7  * under the terms of the GNU General Public License version 2 only, as
     8  * published by the Free Software Foundation.
     9  *
    10  * This code is distributed in the hope that it will be useful, but WITHOUT
    11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    12  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    13  * version 2 for more details (a copy is included in the LICENSE file that
    14  * accompanied this code).
    15  *
    16  * You should have received a copy of the GNU General Public License version
    17  * 2 along with this work; if not, write to the Free Software Foundation,
    18  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    19  *
    20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    21  * or visit www.oracle.com if you need additional information or have any
    22  * questions.
    23  *
    24  */
    26 #ifndef CPU_MIPS_VM_INTERP_MASM_MIPS_64_HPP
    27 #define CPU_MIPS_VM_INTERP_MASM_MIPS_64_HPP
    29 #include "asm/assembler.hpp"
    30 #include "asm/macroAssembler.hpp"
    31 #include "asm/macroAssembler.inline.hpp"
    32 #include "interpreter/invocationCounter.hpp"
    33 #include "runtime/frame.hpp"
    35 // This file specializes the assember with interpreter-specific macros
    38 class InterpreterMacroAssembler: public MacroAssembler {
    39 #ifndef CC_INTERP
    40  private:
    42   Register _locals_register; // register that contains the pointer to the locals
    43   Register _bcp_register; // register that contains the bcp
    45  protected:
    46   // Interpreter specific version of call_VM_base
    47   virtual void call_VM_leaf_base(address entry_point,
    48                                  int number_of_arguments);
    50   virtual void call_VM_base(Register oop_result,
    51                             Register java_thread,
    52                             Register last_java_sp,
    53                             address  entry_point,
    54                             int number_of_arguments,
    55                             bool check_exceptions);
    57   virtual void check_and_handle_popframe(Register java_thread);
    58   virtual void check_and_handle_earlyret(Register java_thread);
    60   // base routine for all dispatches
    61   void dispatch_base(TosState state, address* table, bool verifyoop = true);
    62 #endif // CC_INTERP
    64  public:
    65   // narrow int return value
    66   void narrow(Register result);
    68   InterpreterMacroAssembler(CodeBuffer* code) : MacroAssembler(code), _locals_register(LVP), _bcp_register(BCP) {}
    70   void  get_2_byte_integer_at_bcp(Register reg, Register tmp, int offset);
    71   void  get_4_byte_integer_at_bcp(Register reg, Register tmp, int offset);
    73   void load_earlyret_value(TosState state);
    75 #ifdef CC_INTERP
    76   void save_bcp()                                          { /*  not needed in c++ interpreter and harmless */ }
    77   void restore_bcp()                                       { /*  not needed in c++ interpreter and harmless */ }
    79   // Helpers for runtime call arguments/results
    80   void get_method(Register reg);
    82 #else
    84   // Interpreter-specific registers
    85   void save_bcp() {
    86     sd(BCP, FP, frame::interpreter_frame_bcx_offset * wordSize);
    87   }
    89   void restore_bcp() {
    90     ld(BCP, FP, frame::interpreter_frame_bcx_offset * wordSize);
    91   }
    93   void restore_locals() {
    94     ld(LVP, FP, frame::interpreter_frame_locals_offset * wordSize);
    95   }
    97   // Helpers for runtime call arguments/results
    98   void get_method(Register reg) {
    99     ld(reg, FP, frame::interpreter_frame_method_offset * wordSize);
   100   }
   102   void get_const(Register reg){
   103     get_method(reg);
   104     ld(reg, reg, in_bytes(Method::const_offset()));
   105   }
   107   void get_constant_pool(Register reg) {
   108     get_const(reg);
   109     ld(reg, reg, in_bytes(ConstMethod::constants_offset()));
   110   }
   112   void get_constant_pool_cache(Register reg) {
   113     get_constant_pool(reg);
   114     ld(reg, reg, ConstantPool::cache_offset_in_bytes());
   115   }
   117   void get_cpool_and_tags(Register cpool, Register tags) {
   118     get_constant_pool(cpool);
   119     ld(tags, cpool, ConstantPool::tags_offset_in_bytes());
   120   }
   122   void get_unsigned_2_byte_index_at_bcp(Register reg, int bcp_offset);
   123   void get_cache_and_index_at_bcp(Register cache, Register index, int bcp_offset, size_t index_size = sizeof(u2));
   124   void get_cache_and_index_and_bytecode_at_bcp(Register cache, Register index, Register bytecode, int byte_no, int bcp_offset, size_t index_size = sizeof(u2));
   125   void get_cache_entry_pointer_at_bcp(Register cache, Register tmp, int bcp_offset, size_t index_size = sizeof(u2));
   126   void get_cache_index_at_bcp(Register index, int bcp_offset, size_t index_size = sizeof(u2));
   127   void get_method_counters(Register method, Register mcs, Label& skip);
   129   // load cpool->resolved_references(index);
   130   void load_resolved_reference_at_index(Register result, Register index);
   132   void pop_ptr(   Register r = FSR);
   133   void pop_i(     Register r = FSR);
   134   void pop_l(     Register r = FSR);
   135   void pop_f(FloatRegister r = FSF);
   136   void pop_d(FloatRegister r = FSF);
   138   void push_ptr(   Register r = FSR);
   139   void push_i(     Register r = FSR);
   140   void push_l(     Register r = FSR);
   141   void push_f(FloatRegister r = FSF);
   142   void push_d(FloatRegister r = FSF);
   144   void pop(Register r ) { ((MacroAssembler*)this)->pop(r); }
   146   void push(Register r ) { ((MacroAssembler*)this)->push(r); }
   148   void pop(TosState state); // transition vtos -> state
   149   void push(TosState state); // transition state -> vtos
   151   void empty_expression_stack() {
   152     ld(SP, FP, frame::interpreter_frame_monitor_block_top_offset * wordSize);
   153     // NULL last_sp until next java call
   154     sd(R0, FP, frame::interpreter_frame_last_sp_offset * wordSize);
   155   }
   157   // Super call_VM calls - correspond to MacroAssembler::call_VM(_leaf) calls
   158   void load_ptr(int n, Register val);
   159   void store_ptr(int n, Register val);
   161   // Generate a subtype check: branch to ok_is_subtype if sub_klass is
   162   // a subtype of super_klass.
   163   //void gen_subtype_check( Register sub_klass, Label &ok_is_subtype );
   164   void gen_subtype_check( Register Rsup_klass, Register sub_klass, Label &ok_is_subtype );
   166   // Dispatching
   167   void dispatch_prolog(TosState state, int step = 0);
   168   void dispatch_epilog(TosState state, int step = 0);
   169   // dispatch via ebx (assume ebx is loaded already)
   170   void dispatch_only(TosState state);
   171   // dispatch normal table via ebx (assume ebx is loaded already)
   172   void dispatch_only_normal(TosState state);
   173   void dispatch_only_noverify(TosState state);
   174   // load ebx from [esi + step] and dispatch via ebx
   175   void dispatch_next(TosState state, int step = 0);
   176   // load ebx from [esi] and dispatch via ebx and table
   177   void dispatch_via (TosState state, address* table);
   179   // jump to an invoked target
   180   void prepare_to_jump_from_interpreted();
   181   void jump_from_interpreted(Register method, Register temp);
   184   // Returning from interpreted functions
   185   //
   186   // Removes the current activation (incl. unlocking of monitors)
   187   // and sets up the return address.  This code is also used for
   188   // exception unwindwing. In that case, we do not want to throw
   189   // IllegalMonitorStateExceptions, since that might get us into an
   190   // infinite rethrow exception loop.
   191   // Additionally this code is used for popFrame and earlyReturn.
   192   // In popFrame case we want to skip throwing an exception,
   193   // installing an exception, and notifying jvmdi.
   194   // In earlyReturn case we only want to skip throwing an exception
   195   // and installing an exception.
   196   void remove_activation(TosState state, Register ret_addr,
   197                          bool throw_monitor_exception = true,
   198                          bool install_monitor_exception = true,
   199                          bool notify_jvmdi = true);
   200 #endif // CC_INTERP
   202   // Object locking
   203   void lock_object  (Register lock_reg);
   204   void unlock_object(Register lock_reg);
   206 #ifndef CC_INTERP
   208   // Interpreter profiling operations
   209   void set_method_data_pointer_for_bcp();
   210   void test_method_data_pointer(Register mdp, Label& zero_continue);
   211   void verify_method_data_pointer();
   213   void set_mdp_data_at(Register mdp_in, int constant, Register value);
   214   void increment_mdp_data_at(Address data, bool decrement = false);
   215   void increment_mdp_data_at(Register mdp_in, int constant,
   216                              bool decrement = false);
   217   void increment_mdp_data_at(Register mdp_in, Register reg, int constant,
   218                              bool decrement = false);
   219 /*  void increment_mask_and_jump(Address counter_addr,
   220                                int increment, int mask,
   221                                Register scratch, bool preloaded,
   222                                Condition cond, Label* where); */
   223   void set_mdp_flag_at(Register mdp_in, int flag_constant);
   224   void test_mdp_data_at(Register mdp_in, int offset, Register value,
   225                         Register test_value_out,
   226                         Label& not_equal_continue);
   228   void record_klass_in_profile(Register receiver, Register mdp,
   229                                Register reg2, bool is_virtual_call);
   230   void record_klass_in_profile_helper(Register receiver, Register mdp,
   231                                       Register reg2, int start_row,
   232                                       Label& done, bool is_virtual_call);
   234   void update_mdp_by_offset(Register mdp_in, int offset_of_offset);
   235   void update_mdp_by_offset(Register mdp_in, Register reg, int offset_of_disp);
   236   void update_mdp_by_constant(Register mdp_in, int constant);
   237   void update_mdp_for_ret(Register return_bci);
   239   void profile_taken_branch(Register mdp, Register bumped_count);
   240   void profile_not_taken_branch(Register mdp);
   241   void profile_call(Register mdp);
   242   void profile_final_call(Register mdp);
   243   void profile_virtual_call(Register receiver, Register mdp,
   244                             Register scratch2,
   245                             bool receiver_can_be_null = false);
   246   void profile_ret(Register return_bci, Register mdp);
   247   void profile_null_seen(Register mdp);
   248   void profile_typecheck(Register mdp, Register klass, Register scratch);
   249   void profile_typecheck_failed(Register mdp);
   250   void profile_switch_default(Register mdp);
   251   void profile_switch_case(Register index_in_scratch, Register mdp,
   252                            Register scratch2);
   254   // Debugging
   255   // only if +VerifyOops && state == atos
   256   void verify_oop(Register reg, TosState state = atos);
   257   // only if +VerifyFPU  && (state == ftos || state == dtos)
   258   void verify_FPU(int stack_depth, TosState state = ftos);
   260   void profile_obj_type(Register obj, const Address& mdo_addr);
   261   void profile_arguments_type(Register mdp, Register callee, Register tmp, bool is_virtual);
   262   void profile_return_type(Register mdp, Register ret, Register tmp);
   263   void profile_parameters_type(Register mdp, Register tmp1, Register tmp2);
   264 #endif // !CC_INTERP
   266   typedef enum { NotifyJVMTI, SkipNotifyJVMTI } NotifyMethodExitMode;
   268   // support for jvmti/dtrace
   269   void notify_method_entry();
   270   void notify_method_exit(bool is_native_method, TosState state, NotifyMethodExitMode mode);
   271   void save_return_value(TosState state, bool is_native_call);
   272   void restore_return_value(TosState state, bool is_native_call);
   273 };
   275 #endif // CPU_MIPS_VM_INTERP_MASM_MIPS_64_HPP

mercurial