Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
085c648b
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,发现更多精彩内容 >>
提交
085c648b
编写于
4月 28, 2017
作者:
R
Richard Henderson
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
tcg/arm: Implement goto_ptr
Signed-off-by:
N
Richard Henderson
<
rth@twiddle.net
>
上级
702a9474
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
22 addition
and
5 deletion
+22
-5
tcg/arm/tcg-target.h
tcg/arm/tcg-target.h
+1
-1
tcg/arm/tcg-target.inc.c
tcg/arm/tcg-target.inc.c
+21
-4
未找到文件。
tcg/arm/tcg-target.h
浏览文件 @
085c648b
...
...
@@ -123,7 +123,7 @@ extern bool use_idiv_instructions;
#define TCG_TARGET_HAS_mulsh_i32 0
#define TCG_TARGET_HAS_div_i32 use_idiv_instructions
#define TCG_TARGET_HAS_rem_i32 0
#define TCG_TARGET_HAS_goto_ptr
0
#define TCG_TARGET_HAS_goto_ptr
1
enum
{
TCG_AREG0
=
TCG_REG_R6
,
...
...
tcg/arm/tcg-target.inc.c
浏览文件 @
085c648b
...
...
@@ -1655,8 +1655,14 @@ static inline void tcg_out_op(TCGContext *s, TCGOpcode opc,
switch
(
opc
)
{
case
INDEX_op_exit_tb
:
tcg_out_movi32
(
s
,
COND_AL
,
TCG_REG_R0
,
args
[
0
]);
tcg_out_goto
(
s
,
COND_AL
,
tb_ret_addr
);
/* Reuse the zeroing that exists for goto_ptr. */
a0
=
args
[
0
];
if
(
a0
==
0
)
{
tcg_out_goto
(
s
,
COND_AL
,
s
->
code_gen_epilogue
);
}
else
{
tcg_out_movi32
(
s
,
COND_AL
,
TCG_REG_R0
,
args
[
0
]);
tcg_out_goto
(
s
,
COND_AL
,
tb_ret_addr
);
}
break
;
case
INDEX_op_goto_tb
:
if
(
s
->
tb_jmp_insn_offset
)
{
...
...
@@ -1671,6 +1677,9 @@ static inline void tcg_out_op(TCGContext *s, TCGOpcode opc,
}
s
->
tb_jmp_reset_offset
[
args
[
0
]]
=
tcg_current_code_size
(
s
);
break
;
case
INDEX_op_goto_ptr
:
tcg_out_bx
(
s
,
COND_AL
,
args
[
0
]);
break
;
case
INDEX_op_br
:
tcg_out_goto_label
(
s
,
COND_AL
,
arg_label
(
args
[
0
]));
break
;
...
...
@@ -1961,6 +1970,7 @@ static const TCGTargetOpDef arm_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"
}
},
...
...
@@ -2136,9 +2146,16 @@ static void tcg_target_qemu_prologue(TCGContext *s)
tcg_out_mov
(
s
,
TCG_TYPE_PTR
,
TCG_AREG0
,
tcg_target_call_iarg_regs
[
0
]);
tcg_out_bx
(
s
,
COND_AL
,
tcg_target_call_iarg_regs
[
1
]);
tb_ret_addr
=
s
->
code_ptr
;
/* Epilogue. We branch here via tb_ret_addr. */
/*
* Return path for goto_ptr. Set return value to 0, a-la exit_tb,
* and fall through to the rest of the epilogue.
*/
s
->
code_gen_epilogue
=
s
->
code_ptr
;
tcg_out_movi
(
s
,
TCG_TYPE_PTR
,
TCG_REG_R0
,
0
);
/* TB epilogue */
tb_ret_addr
=
s
->
code_ptr
;
tcg_out_dat_rI
(
s
,
COND_AL
,
ARITH_ADD
,
TCG_REG_CALL_STACK
,
TCG_REG_CALL_STACK
,
stack_addend
,
1
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录