src/cpu/x86/vm/interp_masm_x86_32.hpp

changeset 1161
be93aad57795
parent 1145
e5b0439ef4ae
child 1641
87684f1a88b5
     1.1 --- a/src/cpu/x86/vm/interp_masm_x86_32.hpp	Mon Apr 20 14:48:03 2009 -0700
     1.2 +++ b/src/cpu/x86/vm/interp_masm_x86_32.hpp	Tue Apr 21 23:21:04 2009 -0700
     1.3 @@ -76,8 +76,9 @@
     1.4    void get_cpool_and_tags(Register cpool, Register tags)   { get_constant_pool(cpool); movptr(tags, Address(cpool, constantPoolOopDesc::tags_offset_in_bytes()));
     1.5    }
     1.6    void get_unsigned_2_byte_index_at_bcp(Register reg, int bcp_offset);
     1.7 -  void get_cache_and_index_at_bcp(Register cache, Register index, int bcp_offset);
     1.8 -  void get_cache_entry_pointer_at_bcp(Register cache, Register tmp, int bcp_offset);
     1.9 +  void get_cache_and_index_at_bcp(Register cache, Register index, int bcp_offset, bool giant_index = false);
    1.10 +  void get_cache_entry_pointer_at_bcp(Register cache, Register tmp, int bcp_offset, bool giant_index = false);
    1.11 +  void get_cache_index_at_bcp(Register index, int bcp_offset, bool giant_index = false);
    1.12  
    1.13    // Expression stack
    1.14    void f2ieee();                                           // truncate ftos to 32bits
    1.15 @@ -226,7 +227,8 @@
    1.16    void profile_not_taken_branch(Register mdp);
    1.17    void profile_call(Register mdp);
    1.18    void profile_final_call(Register mdp);
    1.19 -  void profile_virtual_call(Register receiver, Register mdp, Register scratch2);
    1.20 +  void profile_virtual_call(Register receiver, Register mdp, Register scratch2,
    1.21 +                            bool receiver_can_be_null = false);
    1.22    void profile_ret(Register return_bci, Register mdp);
    1.23    void profile_null_seen(Register mdp);
    1.24    void profile_typecheck(Register mdp, Register klass, Register scratch);

mercurial