author | twisti |
Fri, 29 Jan 2010 12:13:05 +0100 | |
changeset 4748 | 3fa8d8a7c0ea |
parent 4564 | 55dfb20908d0 |
child 4749 | f26b30116e3a |
permissions | -rw-r--r-- |
1 | 1 |
/* |
4748 | 2 |
* Copyright 1997-2010 Sun Microsystems, Inc. All Rights Reserved. |
1 | 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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, |
|
20 |
* CA 95054 USA or visit www.sun.com if you need additional information or |
|
21 |
* have any questions. |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
25 |
# include "incls/_precompiled.incl" |
|
26 |
# include "incls/_frame_x86.cpp.incl" |
|
27 |
||
28 |
#ifdef ASSERT |
|
29 |
void RegisterMap::check_location_valid() { |
|
30 |
} |
|
31 |
#endif |
|
32 |
||
33 |
||
34 |
// Profiling/safepoint support |
|
35 |
||
36 |
bool frame::safe_for_sender(JavaThread *thread) { |
|
37 |
address sp = (address)_sp; |
|
38 |
address fp = (address)_fp; |
|
39 |
address unextended_sp = (address)_unextended_sp; |
|
354
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
40 |
// sp must be within the stack |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
41 |
bool sp_safe = (sp <= thread->stack_base()) && |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
42 |
(sp >= thread->stack_base() - thread->stack_size()); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
43 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
44 |
if (!sp_safe) { |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
45 |
return false; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
46 |
} |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
47 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
48 |
// unextended sp must be within the stack and above or equal sp |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
49 |
bool unextended_sp_safe = (unextended_sp <= thread->stack_base()) && |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
50 |
(unextended_sp >= sp); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
51 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
52 |
if (!unextended_sp_safe) { |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
53 |
return false; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
54 |
} |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
55 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
56 |
// an fp must be within the stack and above (but not equal) sp |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
57 |
bool fp_safe = (fp <= thread->stack_base()) && (fp > sp); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
58 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
59 |
// We know sp/unextended_sp are safe only fp is questionable here |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
60 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
61 |
// If the current frame is known to the code cache then we can attempt to |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
62 |
// to construct the sender and do some validation of it. This goes a long way |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
63 |
// toward eliminating issues when we get in frame construction code |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
64 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
65 |
if (_cb != NULL ) { |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
66 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
67 |
// First check if frame is complete and tester is reliable |
1 | 68 |
// Unfortunately we can only check frame complete for runtime stubs and nmethod |
69 |
// other generic buffer blobs are more problematic so we just assume they are |
|
70 |
// ok. adapter blobs never have a frame complete and are never ok. |
|
354
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
71 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
72 |
if (!_cb->is_frame_complete_at(_pc)) { |
1 | 73 |
if (_cb->is_nmethod() || _cb->is_adapter_blob() || _cb->is_runtime_stub()) { |
74 |
return false; |
|
75 |
} |
|
76 |
} |
|
354
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
77 |
// Entry frame checks |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
78 |
if (is_entry_frame()) { |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
79 |
// an entry frame must have a valid fp. |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
80 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
81 |
if (!fp_safe) return false; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
82 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
83 |
// Validate the JavaCallWrapper an entry frame must have |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
84 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
85 |
address jcw = (address)entry_frame_call_wrapper(); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
86 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
87 |
bool jcw_safe = (jcw <= thread->stack_base()) && ( jcw > fp); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
88 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
89 |
return jcw_safe; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
90 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
91 |
} |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
92 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
93 |
intptr_t* sender_sp = NULL; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
94 |
address sender_pc = NULL; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
95 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
96 |
if (is_interpreted_frame()) { |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
97 |
// fp must be safe |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
98 |
if (!fp_safe) { |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
99 |
return false; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
100 |
} |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
101 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
102 |
sender_pc = (address) this->fp()[return_addr_offset]; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
103 |
sender_sp = (intptr_t*) addr_at(sender_sp_offset); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
104 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
105 |
} else { |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
106 |
// must be some sort of compiled/runtime frame |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
107 |
// fp does not have to be safe (although it could be check for c1?) |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
108 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
109 |
sender_sp = _unextended_sp + _cb->frame_size(); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
110 |
// On Intel the return_address is always the word on the stack |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
111 |
sender_pc = (address) *(sender_sp-1); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
112 |
} |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
113 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
114 |
// We must always be able to find a recognizable pc |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
115 |
CodeBlob* sender_blob = CodeCache::find_blob_unsafe(sender_pc); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
116 |
if (sender_pc == NULL || sender_blob == NULL) { |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
117 |
return false; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
118 |
} |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
119 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
120 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
121 |
// If the potential sender is the interpreter then we can do some more checking |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
122 |
if (Interpreter::contains(sender_pc)) { |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
123 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
124 |
// ebp is always saved in a recognizable place in any code we generate. However |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
125 |
// only if the sender is interpreted/call_stub (c1 too?) are we certain that the saved ebp |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
126 |
// is really a frame pointer. |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
127 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
128 |
intptr_t *saved_fp = (intptr_t*)*(sender_sp - frame::sender_sp_offset); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
129 |
bool saved_fp_safe = ((address)saved_fp <= thread->stack_base()) && (saved_fp > sender_sp); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
130 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
131 |
if (!saved_fp_safe) { |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
132 |
return false; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
133 |
} |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
134 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
135 |
// construct the potential sender |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
136 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
137 |
frame sender(sender_sp, saved_fp, sender_pc); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
138 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
139 |
return sender.is_interpreted_frame_valid(thread); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
140 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
141 |
} |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
142 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
143 |
// Could just be some random pointer within the codeBlob |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
144 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
145 |
if (!sender_blob->instructions_contains(sender_pc)) return false; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
146 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
147 |
// We should never be able to see an adapter if the current frame is something from code cache |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
148 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
149 |
if ( sender_blob->is_adapter_blob()) { |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
150 |
return false; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
151 |
} |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
152 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
153 |
// Could be the call_stub |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
154 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
155 |
if (StubRoutines::returns_to_call_stub(sender_pc)) { |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
156 |
intptr_t *saved_fp = (intptr_t*)*(sender_sp - frame::sender_sp_offset); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
157 |
bool saved_fp_safe = ((address)saved_fp <= thread->stack_base()) && (saved_fp > sender_sp); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
158 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
159 |
if (!saved_fp_safe) { |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
160 |
return false; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
161 |
} |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
162 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
163 |
// construct the potential sender |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
164 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
165 |
frame sender(sender_sp, saved_fp, sender_pc); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
166 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
167 |
// Validate the JavaCallWrapper an entry frame must have |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
168 |
address jcw = (address)sender.entry_frame_call_wrapper(); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
169 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
170 |
bool jcw_safe = (jcw <= thread->stack_base()) && ( jcw > (address)sender.fp()); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
171 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
172 |
return jcw_safe; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
173 |
} |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
174 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
175 |
// If the frame size is 0 something is bad because every nmethod has a non-zero frame size |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
176 |
// because the return address counts against the callee's frame. |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
177 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
178 |
if (sender_blob->frame_size() == 0) { |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
179 |
assert(!sender_blob->is_nmethod(), "should count return address at least"); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
180 |
return false; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
181 |
} |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
182 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
183 |
// We should never be able to see anything here except an nmethod. If something in the |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
184 |
// code cache (current frame) is called by an entity within the code cache that entity |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
185 |
// should not be anything but the call stub (already covered), the interpreter (already covered) |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
186 |
// or an nmethod. |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
187 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
188 |
assert(sender_blob->is_nmethod(), "Impossible call chain"); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
189 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
190 |
// Could put some more validation for the potential non-interpreted sender |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
191 |
// frame we'd create by calling sender if I could think of any. Wait for next crash in forte... |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
192 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
193 |
// One idea is seeing if the sender_pc we have is one that we'd expect to call to current cb |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
194 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
195 |
// We've validated the potential sender that would be created |
1 | 196 |
return true; |
197 |
} |
|
354
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
198 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
199 |
// Must be native-compiled frame. Since sender will try and use fp to find |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
200 |
// linkages it must be safe |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
201 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
202 |
if (!fp_safe) { |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
203 |
return false; |
1 | 204 |
} |
354
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
205 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
206 |
// Will the pc we fetch be non-zero (which we'll find at the oldest frame) |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
207 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
208 |
if ( (address) this->fp()[return_addr_offset] == NULL) return false; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
209 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
210 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
211 |
// could try and do some more potential verification of native frame if we could think of some... |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
212 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
213 |
return true; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
214 |
|
1 | 215 |
} |
216 |
||
217 |
||
218 |
void frame::patch_pc(Thread* thread, address pc) { |
|
219 |
if (TracePcPatching) { |
|
1066 | 220 |
tty->print_cr("patch_pc at address" INTPTR_FORMAT " [" INTPTR_FORMAT " -> " INTPTR_FORMAT "] ", |
221 |
&((address *)sp())[-1], ((address *)sp())[-1], pc); |
|
1 | 222 |
} |
223 |
((address *)sp())[-1] = pc; |
|
224 |
_cb = CodeCache::find_blob(pc); |
|
4748 | 225 |
address original_pc = nmethod::get_deopt_original_pc(this); |
226 |
if (original_pc != NULL) { |
|
227 |
assert(original_pc == _pc, "expected original PC to be stored before patching"); |
|
1 | 228 |
_deopt_state = is_deoptimized; |
229 |
// leave _pc as is |
|
230 |
} else { |
|
231 |
_deopt_state = not_deoptimized; |
|
232 |
_pc = pc; |
|
233 |
} |
|
234 |
} |
|
235 |
||
236 |
bool frame::is_interpreted_frame() const { |
|
237 |
return Interpreter::contains(pc()); |
|
238 |
} |
|
239 |
||
2880
c2974244a496
6848466: frame::frame_size() assertion failure with -XX:+DebugDeoptimization
cfang
parents:
1066
diff
changeset
|
240 |
int frame::frame_size(RegisterMap* map) const { |
c2974244a496
6848466: frame::frame_size() assertion failure with -XX:+DebugDeoptimization
cfang
parents:
1066
diff
changeset
|
241 |
frame sender = this->sender(map); |
1 | 242 |
return sender.sp() - sp(); |
243 |
} |
|
244 |
||
245 |
intptr_t* frame::entry_frame_argument_at(int offset) const { |
|
246 |
// convert offset to index to deal with tsi |
|
247 |
int index = (Interpreter::expr_offset_in_bytes(offset)/wordSize); |
|
248 |
// Entry frame's arguments are always in relation to unextended_sp() |
|
249 |
return &unextended_sp()[index]; |
|
250 |
} |
|
251 |
||
252 |
// sender_sp |
|
253 |
#ifdef CC_INTERP |
|
254 |
intptr_t* frame::interpreter_frame_sender_sp() const { |
|
255 |
assert(is_interpreted_frame(), "interpreted frame expected"); |
|
256 |
// QQQ why does this specialize method exist if frame::sender_sp() does same thing? |
|
257 |
// seems odd and if we always know interpreted vs. non then sender_sp() is really |
|
258 |
// doing too much work. |
|
259 |
return get_interpreterState()->sender_sp(); |
|
260 |
} |
|
261 |
||
262 |
// monitor elements |
|
263 |
||
264 |
BasicObjectLock* frame::interpreter_frame_monitor_begin() const { |
|
265 |
return get_interpreterState()->monitor_base(); |
|
266 |
} |
|
267 |
||
268 |
BasicObjectLock* frame::interpreter_frame_monitor_end() const { |
|
269 |
return (BasicObjectLock*) get_interpreterState()->stack_base(); |
|
270 |
} |
|
271 |
||
272 |
#else // CC_INTERP |
|
273 |
||
274 |
intptr_t* frame::interpreter_frame_sender_sp() const { |
|
275 |
assert(is_interpreted_frame(), "interpreted frame expected"); |
|
276 |
return (intptr_t*) at(interpreter_frame_sender_sp_offset); |
|
277 |
} |
|
278 |
||
279 |
void frame::set_interpreter_frame_sender_sp(intptr_t* sender_sp) { |
|
280 |
assert(is_interpreted_frame(), "interpreted frame expected"); |
|
281 |
ptr_at_put(interpreter_frame_sender_sp_offset, (intptr_t) sender_sp); |
|
282 |
} |
|
283 |
||
284 |
||
285 |
// monitor elements |
|
286 |
||
287 |
BasicObjectLock* frame::interpreter_frame_monitor_begin() const { |
|
288 |
return (BasicObjectLock*) addr_at(interpreter_frame_monitor_block_bottom_offset); |
|
289 |
} |
|
290 |
||
291 |
BasicObjectLock* frame::interpreter_frame_monitor_end() const { |
|
292 |
BasicObjectLock* result = (BasicObjectLock*) *addr_at(interpreter_frame_monitor_block_top_offset); |
|
293 |
// make sure the pointer points inside the frame |
|
294 |
assert((intptr_t) fp() > (intptr_t) result, "result must < than frame pointer"); |
|
295 |
assert((intptr_t) sp() <= (intptr_t) result, "result must >= than stack pointer"); |
|
296 |
return result; |
|
297 |
} |
|
298 |
||
299 |
void frame::interpreter_frame_set_monitor_end(BasicObjectLock* value) { |
|
300 |
*((BasicObjectLock**)addr_at(interpreter_frame_monitor_block_top_offset)) = value; |
|
301 |
} |
|
302 |
||
303 |
// Used by template based interpreter deoptimization |
|
304 |
void frame::interpreter_frame_set_last_sp(intptr_t* sp) { |
|
305 |
*((intptr_t**)addr_at(interpreter_frame_last_sp_offset)) = sp; |
|
306 |
} |
|
307 |
#endif // CC_INTERP |
|
308 |
||
309 |
frame frame::sender_for_entry_frame(RegisterMap* map) const { |
|
310 |
assert(map != NULL, "map must be set"); |
|
311 |
// Java frame called from C; skip all C frames and return top C |
|
312 |
// frame of that chunk as the sender |
|
313 |
JavaFrameAnchor* jfa = entry_frame_call_wrapper()->anchor(); |
|
314 |
assert(!entry_frame_is_first(), "next Java fp must be non zero"); |
|
315 |
assert(jfa->last_Java_sp() > sp(), "must be above this frame on stack"); |
|
316 |
map->clear(); |
|
317 |
assert(map->include_argument_oops(), "should be set by clear"); |
|
318 |
if (jfa->last_Java_pc() != NULL ) { |
|
319 |
frame fr(jfa->last_Java_sp(), jfa->last_Java_fp(), jfa->last_Java_pc()); |
|
320 |
return fr; |
|
321 |
} |
|
322 |
frame fr(jfa->last_Java_sp(), jfa->last_Java_fp()); |
|
323 |
return fr; |
|
324 |
} |
|
325 |
||
4748 | 326 |
|
327 |
//------------------------------------------------------------------------------ |
|
328 |
// frame::sender_for_interpreter_frame |
|
1 | 329 |
frame frame::sender_for_interpreter_frame(RegisterMap* map) const { |
4748 | 330 |
// SP is the raw SP from the sender after adapter or interpreter |
331 |
// extension. |
|
332 |
intptr_t* sender_sp = this->sender_sp(); |
|
1 | 333 |
|
334 |
// This is the sp before any possible extension (adapter/locals). |
|
335 |
intptr_t* unextended_sp = interpreter_frame_sender_sp(); |
|
336 |
||
4748 | 337 |
// Stored FP. |
338 |
intptr_t* saved_fp = link(); |
|
339 |
||
4564
55dfb20908d0
6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents:
3261
diff
changeset
|
340 |
address sender_pc = this->sender_pc(); |
55dfb20908d0
6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents:
3261
diff
changeset
|
341 |
CodeBlob* sender_cb = CodeCache::find_blob_unsafe(sender_pc); |
55dfb20908d0
6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents:
3261
diff
changeset
|
342 |
assert(sender_cb, "sanity"); |
55dfb20908d0
6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents:
3261
diff
changeset
|
343 |
nmethod* sender_nm = sender_cb->as_nmethod_or_null(); |
4748 | 344 |
|
345 |
if (sender_nm != NULL) { |
|
346 |
// If the sender PC is a deoptimization point, get the original |
|
347 |
// PC. For MethodHandle call site the unextended_sp is stored in |
|
348 |
// saved_fp. |
|
349 |
if (sender_nm->is_deopt_mh_entry(sender_pc)) { |
|
350 |
DEBUG_ONLY(verify_deopt_mh_original_pc(sender_nm, saved_fp)); |
|
351 |
unextended_sp = saved_fp; |
|
352 |
} |
|
353 |
else if (sender_nm->is_deopt_entry(sender_pc)) { |
|
354 |
DEBUG_ONLY(verify_deopt_original_pc(sender_nm, unextended_sp)); |
|
355 |
} |
|
356 |
else if (sender_nm->is_method_handle_return(sender_pc)) { |
|
357 |
unextended_sp = saved_fp; |
|
358 |
} |
|
4564
55dfb20908d0
6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents:
3261
diff
changeset
|
359 |
} |
55dfb20908d0
6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents:
3261
diff
changeset
|
360 |
|
1 | 361 |
// The interpreter and compiler(s) always save EBP/RBP in a known |
362 |
// location on entry. We must record where that location is |
|
363 |
// so this if EBP/RBP was live on callout from c2 we can find |
|
364 |
// the saved copy no matter what it called. |
|
365 |
||
366 |
// Since the interpreter always saves EBP/RBP if we record where it is then |
|
367 |
// we don't have to always save EBP/RBP on entry and exit to c2 compiled |
|
368 |
// code, on entry will be enough. |
|
369 |
#ifdef COMPILER2 |
|
370 |
if (map->update_map()) { |
|
371 |
map->set_location(rbp->as_VMReg(), (address) addr_at(link_offset)); |
|
372 |
#ifdef AMD64 |
|
373 |
// this is weird "H" ought to be at a higher address however the |
|
374 |
// oopMaps seems to have the "H" regs at the same address and the |
|
375 |
// vanilla register. |
|
376 |
// XXXX make this go away |
|
377 |
if (true) { |
|
378 |
map->set_location(rbp->as_VMReg()->next(), (address)addr_at(link_offset)); |
|
379 |
} |
|
380 |
#endif // AMD64 |
|
381 |
} |
|
4748 | 382 |
#endif // COMPILER2 |
383 |
||
384 |
return frame(sender_sp, unextended_sp, saved_fp, sender_pc); |
|
1 | 385 |
} |
386 |
||
387 |
||
4748 | 388 |
//------------------------------------------------------------------------------ |
389 |
// frame::sender_for_compiled_frame |
|
1 | 390 |
frame frame::sender_for_compiled_frame(RegisterMap* map) const { |
391 |
assert(map != NULL, "map must be set"); |
|
392 |
||
393 |
// frame owned by optimizing compiler |
|
394 |
assert(_cb->frame_size() >= 0, "must have non-zero frame size"); |
|
4748 | 395 |
intptr_t* sender_sp = unextended_sp() + _cb->frame_size(); |
396 |
intptr_t* unextended_sp = sender_sp; |
|
1 | 397 |
|
398 |
// On Intel the return_address is always the word on the stack |
|
399 |
address sender_pc = (address) *(sender_sp-1); |
|
400 |
||
4748 | 401 |
// This is the saved value of EBP which may or may not really be an FP. |
402 |
// It is only an FP if the sender is an interpreter frame (or C1?). |
|
403 |
intptr_t* saved_fp = (intptr_t*) *(sender_sp - frame::sender_sp_offset); |
|
1 | 404 |
|
4748 | 405 |
// If we are returning to a compiled MethodHandle call site, the |
406 |
// saved_fp will in fact be a saved value of the unextended SP. The |
|
407 |
// simplest way to tell whether we are returning to such a call site |
|
408 |
// is as follows: |
|
4564
55dfb20908d0
6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents:
3261
diff
changeset
|
409 |
CodeBlob* sender_cb = CodeCache::find_blob_unsafe(sender_pc); |
55dfb20908d0
6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents:
3261
diff
changeset
|
410 |
assert(sender_cb, "sanity"); |
55dfb20908d0
6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents:
3261
diff
changeset
|
411 |
nmethod* sender_nm = sender_cb->as_nmethod_or_null(); |
4748 | 412 |
|
413 |
if (sender_nm != NULL) { |
|
414 |
// If the sender PC is a deoptimization point, get the original |
|
415 |
// PC. For MethodHandle call site the unextended_sp is stored in |
|
416 |
// saved_fp. |
|
417 |
if (sender_nm->is_deopt_mh_entry(sender_pc)) { |
|
418 |
DEBUG_ONLY(verify_deopt_mh_original_pc(sender_nm, saved_fp)); |
|
419 |
unextended_sp = saved_fp; |
|
420 |
} |
|
421 |
else if (sender_nm->is_deopt_entry(sender_pc)) { |
|
422 |
DEBUG_ONLY(verify_deopt_original_pc(sender_nm, unextended_sp)); |
|
423 |
} |
|
424 |
else if (sender_nm->is_method_handle_return(sender_pc)) { |
|
425 |
unextended_sp = saved_fp; |
|
426 |
} |
|
4564
55dfb20908d0
6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents:
3261
diff
changeset
|
427 |
} |
55dfb20908d0
6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents:
3261
diff
changeset
|
428 |
|
1 | 429 |
if (map->update_map()) { |
430 |
// Tell GC to use argument oopmaps for some runtime stubs that need it. |
|
431 |
// For C1, the runtime stub might not have oop maps, so set this flag |
|
432 |
// outside of update_register_map. |
|
433 |
map->set_include_argument_oops(_cb->caller_must_gc_arguments(map->thread())); |
|
434 |
if (_cb->oop_maps() != NULL) { |
|
435 |
OopMapSet::update_register_map(this, map); |
|
436 |
} |
|
4748 | 437 |
// Since the prolog does the save and restore of EBP there is no oopmap |
1 | 438 |
// for it so we must fill in its location as if there was an oopmap entry |
439 |
// since if our caller was compiled code there could be live jvm state in it. |
|
440 |
map->set_location(rbp->as_VMReg(), (address) (sender_sp - frame::sender_sp_offset)); |
|
441 |
#ifdef AMD64 |
|
442 |
// this is weird "H" ought to be at a higher address however the |
|
443 |
// oopMaps seems to have the "H" regs at the same address and the |
|
444 |
// vanilla register. |
|
445 |
// XXXX make this go away |
|
446 |
if (true) { |
|
447 |
map->set_location(rbp->as_VMReg()->next(), (address) (sender_sp - frame::sender_sp_offset)); |
|
448 |
} |
|
449 |
#endif // AMD64 |
|
450 |
} |
|
451 |
||
452 |
assert(sender_sp != sp(), "must have changed"); |
|
4564
55dfb20908d0
6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents:
3261
diff
changeset
|
453 |
return frame(sender_sp, unextended_sp, saved_fp, sender_pc); |
1 | 454 |
} |
455 |
||
4748 | 456 |
|
457 |
//------------------------------------------------------------------------------ |
|
458 |
// frame::sender |
|
1 | 459 |
frame frame::sender(RegisterMap* map) const { |
460 |
// Default is we done have to follow them. The sender_for_xxx will |
|
461 |
// update it accordingly |
|
462 |
map->set_include_argument_oops(false); |
|
463 |
||
464 |
if (is_entry_frame()) return sender_for_entry_frame(map); |
|
465 |
if (is_interpreted_frame()) return sender_for_interpreter_frame(map); |
|
466 |
assert(_cb == CodeCache::find_blob(pc()),"Must be the same"); |
|
467 |
||
468 |
if (_cb != NULL) { |
|
469 |
return sender_for_compiled_frame(map); |
|
470 |
} |
|
471 |
// Must be native-compiled frame, i.e. the marshaling code for native |
|
472 |
// methods that exists in the core system. |
|
473 |
return frame(sender_sp(), link(), sender_pc()); |
|
474 |
} |
|
475 |
||
476 |
||
477 |
bool frame::interpreter_frame_equals_unpacked_fp(intptr_t* fp) { |
|
478 |
assert(is_interpreted_frame(), "must be interpreter frame"); |
|
479 |
methodOop method = interpreter_frame_method(); |
|
480 |
// When unpacking an optimized frame the frame pointer is |
|
481 |
// adjusted with: |
|
482 |
int diff = (method->max_locals() - method->size_of_parameters()) * |
|
483 |
Interpreter::stackElementWords(); |
|
484 |
return _fp == (fp - diff); |
|
485 |
} |
|
486 |
||
487 |
void frame::pd_gc_epilog() { |
|
488 |
// nothing done here now |
|
489 |
} |
|
490 |
||
354
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
491 |
bool frame::is_interpreted_frame_valid(JavaThread* thread) const { |
1 | 492 |
// QQQ |
493 |
#ifdef CC_INTERP |
|
494 |
#else |
|
495 |
assert(is_interpreted_frame(), "Not an interpreted frame"); |
|
496 |
// These are reasonable sanity checks |
|
497 |
if (fp() == 0 || (intptr_t(fp()) & (wordSize-1)) != 0) { |
|
498 |
return false; |
|
499 |
} |
|
500 |
if (sp() == 0 || (intptr_t(sp()) & (wordSize-1)) != 0) { |
|
501 |
return false; |
|
502 |
} |
|
503 |
if (fp() + interpreter_frame_initial_sp_offset < sp()) { |
|
504 |
return false; |
|
505 |
} |
|
506 |
// These are hacks to keep us out of trouble. |
|
507 |
// The problem with these is that they mask other problems |
|
508 |
if (fp() <= sp()) { // this attempts to deal with unsigned comparison above |
|
509 |
return false; |
|
510 |
} |
|
354
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
511 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
512 |
// do some validation of frame elements |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
513 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
514 |
// first the method |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
515 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
516 |
methodOop m = *interpreter_frame_method_addr(); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
517 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
518 |
// validate the method we'd find in this potential sender |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
519 |
if (!Universe::heap()->is_valid_method(m)) return false; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
520 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
521 |
// stack frames shouldn't be much larger than max_stack elements |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
522 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
523 |
if (fp() - sp() > 1024 + m->max_stack()*Interpreter::stackElementSize()) { |
1 | 524 |
return false; |
525 |
} |
|
354
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
526 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
527 |
// validate bci/bcx |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
528 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
529 |
intptr_t bcx = interpreter_frame_bcx(); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
530 |
if (m->validate_bci_from_bcx(bcx) < 0) { |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
531 |
return false; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
532 |
} |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
533 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
534 |
// validate constantPoolCacheOop |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
535 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
536 |
constantPoolCacheOop cp = *interpreter_frame_cache_addr(); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
537 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
538 |
if (cp == NULL || |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
539 |
!Space::is_aligned(cp) || |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
540 |
!Universe::heap()->is_permanent((void*)cp)) return false; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
541 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
542 |
// validate locals |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
543 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
544 |
address locals = (address) *interpreter_frame_locals_addr(); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
545 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
546 |
if (locals > thread->stack_base() || locals < (address) fp()) return false; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
547 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
548 |
// We'd have to be pretty unlucky to be mislead at this point |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
549 |
|
1 | 550 |
#endif // CC_INTERP |
551 |
return true; |
|
552 |
} |
|
553 |
||
554 |
BasicType frame::interpreter_frame_result(oop* oop_result, jvalue* value_result) { |
|
555 |
#ifdef CC_INTERP |
|
556 |
// Needed for JVMTI. The result should always be in the interpreterState object |
|
557 |
assert(false, "NYI"); |
|
558 |
interpreterState istate = get_interpreterState(); |
|
559 |
#endif // CC_INTERP |
|
560 |
assert(is_interpreted_frame(), "interpreted frame expected"); |
|
561 |
methodOop method = interpreter_frame_method(); |
|
562 |
BasicType type = method->result_type(); |
|
563 |
||
564 |
intptr_t* tos_addr; |
|
565 |
if (method->is_native()) { |
|
566 |
// Prior to calling into the runtime to report the method_exit the possible |
|
567 |
// return value is pushed to the native stack. If the result is a jfloat/jdouble |
|
568 |
// then ST0 is saved before EAX/EDX. See the note in generate_native_result |
|
569 |
tos_addr = (intptr_t*)sp(); |
|
570 |
if (type == T_FLOAT || type == T_DOUBLE) { |
|
571 |
// QQQ seems like this code is equivalent on the two platforms |
|
572 |
#ifdef AMD64 |
|
573 |
// This is times two because we do a push(ltos) after pushing XMM0 |
|
574 |
// and that takes two interpreter stack slots. |
|
575 |
tos_addr += 2 * Interpreter::stackElementWords(); |
|
576 |
#else |
|
577 |
tos_addr += 2; |
|
578 |
#endif // AMD64 |
|
579 |
} |
|
580 |
} else { |
|
581 |
tos_addr = (intptr_t*)interpreter_frame_tos_address(); |
|
582 |
} |
|
583 |
||
584 |
switch (type) { |
|
585 |
case T_OBJECT : |
|
586 |
case T_ARRAY : { |
|
587 |
oop obj; |
|
588 |
if (method->is_native()) { |
|
589 |
#ifdef CC_INTERP |
|
590 |
obj = istate->_oop_temp; |
|
591 |
#else |
|
592 |
obj = (oop) at(interpreter_frame_oop_temp_offset); |
|
593 |
#endif // CC_INTERP |
|
594 |
} else { |
|
595 |
oop* obj_p = (oop*)tos_addr; |
|
596 |
obj = (obj_p == NULL) ? (oop)NULL : *obj_p; |
|
597 |
} |
|
598 |
assert(obj == NULL || Universe::heap()->is_in(obj), "sanity check"); |
|
599 |
*oop_result = obj; |
|
600 |
break; |
|
601 |
} |
|
602 |
case T_BOOLEAN : value_result->z = *(jboolean*)tos_addr; break; |
|
603 |
case T_BYTE : value_result->b = *(jbyte*)tos_addr; break; |
|
604 |
case T_CHAR : value_result->c = *(jchar*)tos_addr; break; |
|
605 |
case T_SHORT : value_result->s = *(jshort*)tos_addr; break; |
|
606 |
case T_INT : value_result->i = *(jint*)tos_addr; break; |
|
607 |
case T_LONG : value_result->j = *(jlong*)tos_addr; break; |
|
608 |
case T_FLOAT : { |
|
609 |
#ifdef AMD64 |
|
610 |
value_result->f = *(jfloat*)tos_addr; |
|
611 |
#else |
|
612 |
if (method->is_native()) { |
|
613 |
jdouble d = *(jdouble*)tos_addr; // Result was in ST0 so need to convert to jfloat |
|
614 |
value_result->f = (jfloat)d; |
|
615 |
} else { |
|
616 |
value_result->f = *(jfloat*)tos_addr; |
|
617 |
} |
|
618 |
#endif // AMD64 |
|
619 |
break; |
|
620 |
} |
|
621 |
case T_DOUBLE : value_result->d = *(jdouble*)tos_addr; break; |
|
622 |
case T_VOID : /* Nothing to do */ break; |
|
623 |
default : ShouldNotReachHere(); |
|
624 |
} |
|
625 |
||
626 |
return type; |
|
627 |
} |
|
628 |
||
629 |
||
630 |
intptr_t* frame::interpreter_frame_tos_at(jint offset) const { |
|
631 |
int index = (Interpreter::expr_offset_in_bytes(offset)/wordSize); |
|
632 |
return &interpreter_frame_tos_address()[index]; |
|
633 |
} |