annotate src/cpu/ppc/vm/frame_ppc.inline.hpp @ 17917:63c5920a038d

8042309: Some bugfixes for the ppc64 port. Reviewed-by: kvn
author goetz
date Fri, 02 May 2014 14:53:06 +0200
parents fd1b9f02cc91
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
14408
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
1 /*
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
2 * Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
17804
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
3 * Copyright 2012, 2014 SAP AG. All rights reserved.
14408
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
5 *
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
6 * This code is free software; you can redistribute it and/or modify it
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
7 * under the terms of the GNU General Public License version 2 only, as
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
8 * published by the Free Software Foundation.
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
9 *
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
10 * This code is distributed in the hope that it will be useful, but WITHOUT
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
13 * version 2 for more details (a copy is included in the LICENSE file that
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
14 * accompanied this code).
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
15 *
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
16 * You should have received a copy of the GNU General Public License version
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
17 * 2 along with this work; if not, write to the Free Software Foundation,
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
18 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
19 *
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
20 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
21 * or visit www.oracle.com if you need additional information or have any
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
22 * questions.
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
23 *
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
24 */
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
25
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
26 #ifndef CPU_PPC_VM_FRAME_PPC_INLINE_HPP
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
27 #define CPU_PPC_VM_FRAME_PPC_INLINE_HPP
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
28
17917
63c5920a038d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 17804
diff changeset
29 #include "code/codeCache.hpp"
63c5920a038d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 17804
diff changeset
30
14408
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
31 // Inline functions for ppc64 frames:
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
32
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
33 // Find codeblob and set deopt_state.
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
34 inline void frame::find_codeblob_and_set_pc_and_deopt_state(address pc) {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
35 assert(pc != NULL, "precondition: must have PC");
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
36
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
37 _cb = CodeCache::find_blob(pc);
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
38 _pc = pc; // Must be set for get_deopt_original_pc()
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
39
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
40 _fp = (intptr_t*)own_abi()->callers_sp;
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
41 // Use _fp - frame_size, needs to be done between _cb and _pc initialization
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
42 // and get_deopt_original_pc.
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
43 adjust_unextended_sp();
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
44
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
45 address original_pc = nmethod::get_deopt_original_pc(this);
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
46 if (original_pc != NULL) {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
47 _pc = original_pc;
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
48 _deopt_state = is_deoptimized;
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
49 } else {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
50 _deopt_state = not_deoptimized;
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
51 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
52
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
53 assert(((uint64_t)_sp & 0xf) == 0, "SP must be 16-byte aligned");
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
54 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
55
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
56 // Constructors
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
57
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
58 // Initialize all fields, _unextended_sp will be adjusted in find_codeblob_and_set_pc_and_deopt_state.
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
59 inline frame::frame() : _sp(NULL), _unextended_sp(NULL), _fp(NULL), _cb(NULL), _pc(NULL), _deopt_state(unknown) {}
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
60
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
61 inline frame::frame(intptr_t* sp) : _sp(sp), _unextended_sp(sp) {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
62 find_codeblob_and_set_pc_and_deopt_state((address)own_abi()->lr); // also sets _fp and adjusts _unextended_sp
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
63 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
64
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
65 inline frame::frame(intptr_t* sp, address pc) : _sp(sp), _unextended_sp(sp) {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
66 find_codeblob_and_set_pc_and_deopt_state(pc); // also sets _fp and adjusts _unextended_sp
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
67 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
68
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
69 inline frame::frame(intptr_t* sp, address pc, intptr_t* unextended_sp) : _sp(sp), _unextended_sp(unextended_sp) {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
70 find_codeblob_and_set_pc_and_deopt_state(pc); // also sets _fp and adjusts _unextended_sp
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
71 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
72
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
73 // Accessors
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
74
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
75 // Return unique id for this frame. The id must have a value where we
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
76 // can distinguish identity and younger/older relationship. NULL
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
77 // represents an invalid (incomparable) frame.
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
78 inline intptr_t* frame::id(void) const {
14445
67fa91961822 8029940: PPC64 (part 122): C2 compiler port
goetz
parents: 14408
diff changeset
79 // Use _fp. _sp or _unextended_sp wouldn't be correct due to resizing.
67fa91961822 8029940: PPC64 (part 122): C2 compiler port
goetz
parents: 14408
diff changeset
80 return _fp;
14408
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
81 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
82
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
83 // Return true if this frame is older (less recent activation) than
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
84 // the frame represented by id.
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
85 inline bool frame::is_older(intptr_t* id) const {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
86 assert(this->id() != NULL && id != NULL, "NULL frame id");
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
87 // Stack grows towards smaller addresses on ppc64.
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
88 return this->id() > id;
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
89 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
90
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
91 inline int frame::frame_size(RegisterMap* map) const {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
92 // Stack grows towards smaller addresses on PPC64: sender is at a higher address.
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
93 return sender_sp() - sp();
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
94 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
95
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
96 // Return the frame's stack pointer before it has been extended by a
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
97 // c2i adapter. This is needed by deoptimization for ignoring c2i adapter
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
98 // frames.
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
99 inline intptr_t* frame::unextended_sp() const {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
100 return _unextended_sp;
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
101 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
102
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
103 // All frames have this field.
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
104 inline address frame::sender_pc() const {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
105 return (address)callers_abi()->lr;
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
106 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
107 inline address* frame::sender_pc_addr() const {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
108 return (address*)&(callers_abi()->lr);
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
109 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
110
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
111 // All frames have this field.
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
112 inline intptr_t* frame::sender_sp() const {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
113 return (intptr_t*)callers_abi();
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
114 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
115
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
116 // All frames have this field.
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
117 inline intptr_t* frame::link() const {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
118 return (intptr_t*)callers_abi()->callers_sp;
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
119 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
120
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
121 inline intptr_t* frame::real_fp() const {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
122 return fp();
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
123 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
124
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
125 #ifdef CC_INTERP
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
126
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
127 inline interpreterState frame::get_interpreterState() const {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
128 return (interpreterState)(((address)callers_abi())
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
129 - frame::interpreter_frame_cinterpreterstate_size_in_bytes());
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
130 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
131
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
132 inline intptr_t** frame::interpreter_frame_locals_addr() const {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
133 interpreterState istate = get_interpreterState();
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
134 return (intptr_t**)&istate->_locals;
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
135 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
136
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
137 inline intptr_t* frame::interpreter_frame_bcx_addr() const {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
138 interpreterState istate = get_interpreterState();
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
139 return (intptr_t*)&istate->_bcp;
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
140 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
141
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
142 inline intptr_t* frame::interpreter_frame_mdx_addr() const {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
143 interpreterState istate = get_interpreterState();
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
144 return (intptr_t*)&istate->_mdx;
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
145 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
146
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
147 inline intptr_t* frame::interpreter_frame_expression_stack() const {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
148 return (intptr_t*)interpreter_frame_monitor_end() - 1;
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
149 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
150
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
151 inline jint frame::interpreter_frame_expression_stack_direction() {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
152 return -1;
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
153 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
154
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
155 // top of expression stack
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
156 inline intptr_t* frame::interpreter_frame_tos_address() const {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
157 interpreterState istate = get_interpreterState();
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
158 return istate->_stack + 1;
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
159 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
160
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
161 inline intptr_t* frame::interpreter_frame_tos_at(jint offset) const {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
162 return &interpreter_frame_tos_address()[offset];
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
163 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
164
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
165 // monitor elements
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
166
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
167 // in keeping with Intel side: end is lower in memory than begin;
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
168 // and beginning element is oldest element
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
169 // Also begin is one past last monitor.
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
170
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
171 inline BasicObjectLock* frame::interpreter_frame_monitor_begin() const {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
172 return get_interpreterState()->monitor_base();
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
173 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
174
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
175 inline BasicObjectLock* frame::interpreter_frame_monitor_end() const {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
176 return (BasicObjectLock*)get_interpreterState()->stack_base();
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
177 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
178
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
179 inline int frame::interpreter_frame_cinterpreterstate_size_in_bytes() {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
180 // Size of an interpreter object. Not aligned with frame size.
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
181 return round_to(sizeof(BytecodeInterpreter), 8);
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
182 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
183
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
184 inline Method** frame::interpreter_frame_method_addr() const {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
185 interpreterState istate = get_interpreterState();
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
186 return &istate->_method;
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
187 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
188
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
189 // Constant pool cache
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
190
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
191 inline ConstantPoolCache** frame::interpreter_frame_cpoolcache_addr() const {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
192 interpreterState istate = get_interpreterState();
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
193 return &istate->_constants; // should really use accessor
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
194 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
195
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
196 inline ConstantPoolCache** frame::interpreter_frame_cache_addr() const {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
197 interpreterState istate = get_interpreterState();
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
198 return &istate->_constants;
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
199 }
17804
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
200
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
201 #else // !CC_INTERP
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
202
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
203 // Template Interpreter frame value accessors.
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
204
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
205 inline frame::ijava_state* frame::get_ijava_state() const {
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
206 return (ijava_state*) ((uintptr_t)fp() - ijava_state_size);
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
207 }
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
208
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
209 inline intptr_t** frame::interpreter_frame_locals_addr() const {
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
210 return (intptr_t**) &(get_ijava_state()->locals);
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
211 }
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
212 inline intptr_t* frame::interpreter_frame_bcx_addr() const {
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
213 return (intptr_t*) &(get_ijava_state()->bcp);
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
214 }
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
215 inline intptr_t* frame::interpreter_frame_mdx_addr() const {
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
216 return (intptr_t*) &(get_ijava_state()->mdx);
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
217 }
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
218 // Pointer beyond the "oldest/deepest" BasicObjectLock on stack.
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
219 inline BasicObjectLock* frame::interpreter_frame_monitor_end() const {
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
220 return (BasicObjectLock *) get_ijava_state()->monitors;
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
221 }
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
222
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
223 inline BasicObjectLock* frame::interpreter_frame_monitor_begin() const {
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
224 return (BasicObjectLock *) get_ijava_state();
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
225 }
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
226
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
227 // SAPJVM ASc 2012-11-21. Return register stack slot addr at which currently interpreted method is found
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
228 inline Method** frame::interpreter_frame_method_addr() const {
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
229 return (Method**) &(get_ijava_state()->method);
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
230 }
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
231 inline ConstantPoolCache** frame::interpreter_frame_cpoolcache_addr() const {
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
232 return (ConstantPoolCache**) &(get_ijava_state()->cpoolCache);
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
233 }
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
234 inline ConstantPoolCache** frame::interpreter_frame_cache_addr() const {
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
235 return (ConstantPoolCache**) &(get_ijava_state()->cpoolCache);
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
236 }
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
237
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
238 inline oop* frame::interpreter_frame_temp_oop_addr() const {
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
239 return (oop *) &(get_ijava_state()->oop_tmp);
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
240 }
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
241 inline intptr_t* frame::interpreter_frame_esp() const {
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
242 return (intptr_t*) get_ijava_state()->esp;
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
243 }
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
244
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
245 // Convenient setters
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
246 inline void frame::interpreter_frame_set_monitor_end(BasicObjectLock* end) { get_ijava_state()->monitors = (intptr_t) end;}
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
247 inline void frame::interpreter_frame_set_cpcache(ConstantPoolCache* cp) { *frame::interpreter_frame_cpoolcache_addr() = cp; }
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
248 inline void frame::interpreter_frame_set_esp(intptr_t* esp) { get_ijava_state()->esp = (intptr_t) esp; }
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
249 inline void frame::interpreter_frame_set_top_frame_sp(intptr_t* top_frame_sp) { get_ijava_state()->top_frame_sp = (intptr_t) top_frame_sp; }
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
250 inline void frame::interpreter_frame_set_sender_sp(intptr_t* sender_sp) { get_ijava_state()->sender_sp = (intptr_t) sender_sp; }
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
251
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
252 inline intptr_t* frame::interpreter_frame_expression_stack() const {
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
253 return (intptr_t*)interpreter_frame_monitor_end() - 1;
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
254 }
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
255
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
256 inline jint frame::interpreter_frame_expression_stack_direction() {
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
257 return -1;
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
258 }
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
259
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
260 // top of expression stack
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
261 inline intptr_t* frame::interpreter_frame_tos_address() const {
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
262 return ((intptr_t*) get_ijava_state()->esp) + Interpreter::stackElementWords;
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
263 }
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
264
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
265 inline intptr_t* frame::interpreter_frame_tos_at(jint offset) const {
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
266 return &interpreter_frame_tos_address()[offset];
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
267 }
fd1b9f02cc91 8036976: PPC64: implement the template interpreter
goetz
parents: 14445
diff changeset
268
14408
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
269 #endif // CC_INTERP
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
270
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
271 inline int frame::interpreter_frame_monitor_size() {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
272 // Number of stack slots for a monitor.
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
273 return round_to(BasicObjectLock::size(), // number of stack slots
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
274 WordsPerLong); // number of stack slots for a Java long
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
275 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
276
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
277 inline int frame::interpreter_frame_monitor_size_in_bytes() {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
278 return frame::interpreter_frame_monitor_size() * wordSize;
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
279 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
280
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
281 // entry frames
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
282
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
283 inline intptr_t* frame::entry_frame_argument_at(int offset) const {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
284 // Since an entry frame always calls the interpreter first, the
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
285 // parameters are on the stack and relative to known register in the
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
286 // entry frame.
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
287 intptr_t* tos = (intptr_t*)get_entry_frame_locals()->arguments_tos_address;
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
288 return &tos[offset + 1]; // prepushed tos
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
289 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
290
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
291 inline JavaCallWrapper** frame::entry_frame_call_wrapper_addr() const {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
292 return (JavaCallWrapper**)&get_entry_frame_locals()->call_wrapper_address;
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
293 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
294
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
295 inline oop frame::saved_oop_result(RegisterMap* map) const {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
296 return *((oop*)map->location(R3->as_VMReg()));
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
297 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
298
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
299 inline void frame::set_saved_oop_result(RegisterMap* map, oop obj) {
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
300 *((oop*)map->location(R3->as_VMReg())) = obj;
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
301 }
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
302
ec28f9c041ff 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
303 #endif // CPU_PPC_VM_FRAME_PPC_INLINE_HPP