Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_hotspot
提交
653ef337
D
dragonwell8_hotspot
项目概览
openanolis
/
dragonwell8_hotspot
通知
2
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_hotspot
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
653ef337
编写于
5月 09, 2011
作者:
N
never
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
7043301: assert(locals < caller->fp() || locals > (caller->fp() + 16)) failed: locals in save area
Reviewed-by: kvn
上级
63ceb304
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
9 addition
and
6 deletion
+9
-6
src/cpu/sparc/vm/frame_sparc.cpp
src/cpu/sparc/vm/frame_sparc.cpp
+1
-1
src/cpu/sparc/vm/templateInterpreter_sparc.cpp
src/cpu/sparc/vm/templateInterpreter_sparc.cpp
+4
-1
src/cpu/x86/vm/frame_x86.cpp
src/cpu/x86/vm/frame_x86.cpp
+1
-1
src/share/vm/runtime/frame.cpp
src/share/vm/runtime/frame.cpp
+2
-2
src/share/vm/runtime/frame.hpp
src/share/vm/runtime/frame.hpp
+1
-1
未找到文件。
src/cpu/sparc/vm/frame_sparc.cpp
浏览文件 @
653ef337
...
...
@@ -811,7 +811,7 @@ intptr_t* frame::interpreter_frame_tos_at(jint offset) const {
#ifdef ASSERT
#define DESCRIBE_FP_OFFSET(name) \
values.describe(
-1
, fp() + frame::name##_offset, #name)
values.describe(
frame_no
, fp() + frame::name##_offset, #name)
void
frame
::
describe_pd
(
FrameValues
&
values
,
int
frame_no
)
{
for
(
int
w
=
0
;
w
<
frame
::
register_save_words
;
w
++
)
{
...
...
src/cpu/sparc/vm/templateInterpreter_sparc.cpp
浏览文件 @
653ef337
...
...
@@ -1712,7 +1712,10 @@ int AbstractInterpreter::layout_activation(methodOop method,
// frames so place the locals adjacent to the varargs area.
locals
=
fp
+
frame
::
memory_parameter_word_sp_offset
+
local_words
-
1
;
if
(
caller
->
is_interpreted_frame
())
{
*
interpreter_frame
->
register_addr
(
I5_savedSP
)
=
(
intptr_t
)
(
fp
+
rounded_cls
)
-
STACK_BIAS
;
int
parm_words
=
method
->
size_of_parameters
()
*
Interpreter
::
stackElementWords
;
int
delta
=
local_words
-
parm_words
;
int
computed_sp_adjustment
=
(
delta
>
0
)
?
round_to
(
delta
,
WordsPerLong
)
:
0
;
*
interpreter_frame
->
register_addr
(
I5_savedSP
)
=
(
intptr_t
)
(
fp
+
computed_sp_adjustment
)
-
STACK_BIAS
;
}
}
if
(
TraceDeoptimization
)
{
...
...
src/cpu/x86/vm/frame_x86.cpp
浏览文件 @
653ef337
...
...
@@ -650,7 +650,7 @@ intptr_t* frame::interpreter_frame_tos_at(jint offset) const {
#ifdef ASSERT
#define DESCRIBE_FP_OFFSET(name) \
values.describe(
-1
, fp() + frame::name##_offset, #name)
values.describe(
frame_no
, fp() + frame::name##_offset, #name)
void
frame
::
describe_pd
(
FrameValues
&
values
,
int
frame_no
)
{
if
(
is_interpreted_frame
())
{
...
...
src/share/vm/runtime/frame.cpp
浏览文件 @
653ef337
...
...
@@ -1423,7 +1423,7 @@ void FrameValues::describe(int owner, intptr_t* location, const char* descriptio
}
bool
FrameValues
::
validate
()
{
void
FrameValues
::
validate
()
{
_values
.
sort
(
compare
);
bool
error
=
false
;
FrameValue
prev
;
...
...
@@ -1446,7 +1446,7 @@ bool FrameValues::validate() {
prev
=
fv
;
}
}
return
error
;
assert
(
!
error
,
"invalid layout"
)
;
}
...
...
src/share/vm/runtime/frame.hpp
浏览文件 @
653ef337
...
...
@@ -511,7 +511,7 @@ class FrameValues {
// Used by frame functions to describe locations.
void
describe
(
int
owner
,
intptr_t
*
location
,
const
char
*
description
,
int
priority
=
0
);
bool
validate
();
void
validate
();
void
print
();
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录