Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
0c240785
Q
qemu
项目概览
openeuler
/
qemu
通知
10
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
Q
qemu
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
0c240785
编写于
4月 26, 2017
作者:
R
Richard Henderson
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
tcg/ppc: Implement goto_ptr
Signed-off-by:
N
Richard Henderson
<
rth@twiddle.net
>
上级
6f165318
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
8 addition
and
1 deletion
+8
-1
tcg/ppc/tcg-target.h
tcg/ppc/tcg-target.h
+1
-1
tcg/ppc/tcg-target.inc.c
tcg/ppc/tcg-target.inc.c
+7
-0
未找到文件。
tcg/ppc/tcg-target.h
浏览文件 @
0c240785
...
...
@@ -82,7 +82,7 @@ extern bool have_isa_3_00;
#define TCG_TARGET_HAS_muls2_i32 0
#define TCG_TARGET_HAS_muluh_i32 1
#define TCG_TARGET_HAS_mulsh_i32 1
#define TCG_TARGET_HAS_goto_ptr
0
#define TCG_TARGET_HAS_goto_ptr
1
#if TCG_TARGET_REG_BITS == 64
#define TCG_TARGET_HAS_add2_i32 0
...
...
tcg/ppc/tcg-target.inc.c
浏览文件 @
0c240785
...
...
@@ -1932,6 +1932,7 @@ static void tcg_target_qemu_prologue(TCGContext *s)
/* Epilogue */
tcg_debug_assert
(
tb_ret_addr
==
s
->
code_ptr
);
s
->
code_gen_epilogue
=
tb_ret_addr
;
tcg_out_ld
(
s
,
TCG_TYPE_PTR
,
TCG_REG_R0
,
TCG_REG_R1
,
FRAME_SIZE
+
LR_OFFSET
);
for
(
i
=
0
;
i
<
ARRAY_SIZE
(
tcg_target_callee_save_regs
);
++
i
)
{
...
...
@@ -1986,6 +1987,11 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, const TCGArg *args,
#endif
s
->
tb_jmp_reset_offset
[
args
[
0
]]
=
tcg_current_code_size
(
s
);
break
;
case
INDEX_op_goto_ptr
:
tcg_out32
(
s
,
MTSPR
|
RS
(
args
[
0
])
|
CTR
);
tcg_out_movi
(
s
,
TCG_TYPE_PTR
,
TCG_REG_R3
,
0
);
tcg_out32
(
s
,
BCCTR
|
BO_ALWAYS
);
break
;
case
INDEX_op_br
:
{
TCGLabel
*
l
=
arg_label
(
args
[
0
]);
...
...
@@ -2555,6 +2561,7 @@ static const TCGTargetOpDef ppc_op_defs[] = {
{
INDEX_op_exit_tb
,
{
}
},
{
INDEX_op_goto_tb
,
{
}
},
{
INDEX_op_br
,
{
}
},
{
INDEX_op_goto_ptr
,
{
"r"
}
},
{
INDEX_op_ld8u_i32
,
{
"r"
,
"r"
}
},
{
INDEX_op_ld8s_i32
,
{
"r"
,
"r"
}
},
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录