Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_hotspot
提交
64a13e1b
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看板
提交
64a13e1b
编写于
10月 30, 2013
作者:
A
acorn
浏览文件
操作
浏览文件
下载
差异文件
Merge
上级
bc7481f8
47081801
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
14 addition
and
6 deletion
+14
-6
src/cpu/x86/vm/interp_masm_x86_32.cpp
src/cpu/x86/vm/interp_masm_x86_32.cpp
+1
-1
src/cpu/x86/vm/interp_masm_x86_64.cpp
src/cpu/x86/vm/interp_masm_x86_64.cpp
+1
-1
src/cpu/x86/vm/templateTable_x86_32.cpp
src/cpu/x86/vm/templateTable_x86_32.cpp
+6
-2
src/cpu/x86/vm/templateTable_x86_64.cpp
src/cpu/x86/vm/templateTable_x86_64.cpp
+6
-2
未找到文件。
src/cpu/x86/vm/interp_masm_x86_32.cpp
浏览文件 @
64a13e1b
...
...
@@ -196,7 +196,7 @@ void InterpreterMacroAssembler::check_and_handle_earlyret(Register java_thread)
void
InterpreterMacroAssembler
::
get_unsigned_2_byte_index_at_bcp
(
Register
reg
,
int
bcp_offset
)
{
assert
(
bcp_offset
>=
0
,
"bcp is still pointing to start of bytecode"
);
movl
(
reg
,
Address
(
rsi
,
bcp_offset
));
load_unsigned_short
(
reg
,
Address
(
rsi
,
bcp_offset
));
bswapl
(
reg
);
shrl
(
reg
,
16
);
}
...
...
src/cpu/x86/vm/interp_masm_x86_64.cpp
浏览文件 @
64a13e1b
...
...
@@ -192,7 +192,7 @@ void InterpreterMacroAssembler::get_unsigned_2_byte_index_at_bcp(
Register
reg
,
int
bcp_offset
)
{
assert
(
bcp_offset
>=
0
,
"bcp is still pointing to start of bytecode"
);
movl
(
reg
,
Address
(
r13
,
bcp_offset
));
load_unsigned_short
(
reg
,
Address
(
r13
,
bcp_offset
));
bswapl
(
reg
);
shrl
(
reg
,
16
);
}
...
...
src/cpu/x86/vm/templateTable_x86_32.cpp
浏览文件 @
64a13e1b
...
...
@@ -558,7 +558,7 @@ void TemplateTable::aload() {
void
TemplateTable
::
locals_index_wide
(
Register
reg
)
{
__
movl
(
reg
,
at_bcp
(
2
));
__
load_unsigned_short
(
reg
,
at_bcp
(
2
));
__
bswapl
(
reg
);
__
shrl
(
reg
,
16
);
__
negptr
(
reg
);
...
...
@@ -1552,7 +1552,11 @@ void TemplateTable::branch(bool is_jsr, bool is_wide) {
InvocationCounter
::
counter_offset
();
// Load up EDX with the branch displacement
__
movl
(
rdx
,
at_bcp
(
1
));
if
(
is_wide
)
{
__
movl
(
rdx
,
at_bcp
(
1
));
}
else
{
__
load_signed_short
(
rdx
,
at_bcp
(
1
));
}
__
bswapl
(
rdx
);
if
(
!
is_wide
)
__
sarl
(
rdx
,
16
);
LP64_ONLY
(
__
movslq
(
rdx
,
rdx
));
...
...
src/cpu/x86/vm/templateTable_x86_64.cpp
浏览文件 @
64a13e1b
...
...
@@ -568,7 +568,7 @@ void TemplateTable::aload() {
}
void
TemplateTable
::
locals_index_wide
(
Register
reg
)
{
__
movl
(
reg
,
at_bcp
(
2
));
__
load_unsigned_short
(
reg
,
at_bcp
(
2
));
__
bswapl
(
reg
);
__
shrl
(
reg
,
16
);
__
negptr
(
reg
);
...
...
@@ -1575,7 +1575,11 @@ void TemplateTable::branch(bool is_jsr, bool is_wide) {
InvocationCounter
::
counter_offset
();
// Load up edx with the branch displacement
__
movl
(
rdx
,
at_bcp
(
1
));
if
(
is_wide
)
{
__
movl
(
rdx
,
at_bcp
(
1
));
}
else
{
__
load_signed_short
(
rdx
,
at_bcp
(
1
));
}
__
bswapl
(
rdx
);
if
(
!
is_wide
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录