hotspot/src/cpu/aarch64/vm/frame_aarch64.hpp
changeset 38074 8475fdc6dcc3
parent 37466 287c4ebd11b0
child 38144 0976c0c5c5d3
equal deleted inserted replaced
38071:cdc19fb67395 38074:8475fdc6dcc3
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
     3  * Copyright (c) 2014, Red Hat Inc. All rights reserved.
     3  * Copyright (c) 2014, Red Hat Inc. All rights reserved.
     4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     5  *
     5  *
     6  * This code is free software; you can redistribute it and/or modify it
     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
     7  * under the terms of the GNU General Public License version 2 only, as
    76     interpreter_frame_sender_sp_offset               = -1,
    76     interpreter_frame_sender_sp_offset               = -1,
    77     // outgoing sp before a call to an invoked method
    77     // outgoing sp before a call to an invoked method
    78     interpreter_frame_last_sp_offset                 = interpreter_frame_sender_sp_offset - 1,
    78     interpreter_frame_last_sp_offset                 = interpreter_frame_sender_sp_offset - 1,
    79     interpreter_frame_method_offset                  = interpreter_frame_last_sp_offset - 1,
    79     interpreter_frame_method_offset                  = interpreter_frame_last_sp_offset - 1,
    80     interpreter_frame_mdp_offset                     = interpreter_frame_method_offset - 1,
    80     interpreter_frame_mdp_offset                     = interpreter_frame_method_offset - 1,
    81     interpreter_frame_cache_offset                   = interpreter_frame_mdp_offset - 1,
    81     interpreter_frame_padding_offset                 = interpreter_frame_mdp_offset - 1,
       
    82     interpreter_frame_mirror_offset                  = interpreter_frame_padding_offset - 1,
       
    83     interpreter_frame_cache_offset                   = interpreter_frame_mirror_offset - 1,
    82     interpreter_frame_locals_offset                  = interpreter_frame_cache_offset - 1,
    84     interpreter_frame_locals_offset                  = interpreter_frame_cache_offset - 1,
    83     interpreter_frame_bcp_offset                     = interpreter_frame_locals_offset - 1,
    85     interpreter_frame_bcp_offset                     = interpreter_frame_locals_offset - 1,
    84     interpreter_frame_initial_sp_offset              = interpreter_frame_bcp_offset - 1,
    86     interpreter_frame_initial_sp_offset              = interpreter_frame_bcp_offset - 1,
    85 
    87 
    86     interpreter_frame_monitor_block_top_offset       = interpreter_frame_initial_sp_offset,
    88     interpreter_frame_monitor_block_top_offset       = interpreter_frame_initial_sp_offset,