Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
eb68a4fa
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看板
提交
eb68a4fa
编写于
4月 28, 2014
作者:
R
Richard Henderson
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
tcg-mips: Split out tcg_out_call
Signed-off-by:
N
Richard Henderson
<
rth@twiddle.net
>
上级
4e9cf840
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
10 addition
and
8 deletion
+10
-8
tcg/mips/tcg-target.c
tcg/mips/tcg-target.c
+10
-8
未找到文件。
tcg/mips/tcg-target.c
浏览文件 @
eb68a4fa
...
...
@@ -153,11 +153,6 @@ static int target_parse_constraint(TCGArgConstraint *ct, const char **pct_str)
ct
->
ct
|=
TCG_CT_REG
;
tcg_regset_set
(
ct
->
u
.
regs
,
0xffffffff
);
break
;
case
'C'
:
ct
->
ct
|=
TCG_CT_REG
;
tcg_regset_clear
(
ct
->
u
.
regs
);
tcg_regset_set_reg
(
ct
->
u
.
regs
,
TCG_REG_T9
);
break
;
case
'L'
:
/* qemu_ld output arg constraint */
ct
->
ct
|=
TCG_CT_REG
;
tcg_regset_set
(
ct
->
u
.
regs
,
0xffffffff
);
...
...
@@ -1252,6 +1247,13 @@ static void tcg_out_qemu_st(TCGContext *s, const TCGArg *args,
#endif
}
static
void
tcg_out_call
(
TCGContext
*
s
,
tcg_insn_unit
*
target
)
{
tcg_out_movi
(
s
,
TCG_TYPE_PTR
,
TCG_REG_T9
,
(
intptr_t
)
target
);
tcg_out_opc_reg
(
s
,
OPC_JALR
,
TCG_REG_RA
,
TCG_REG_T9
,
0
);
tcg_out_nop
(
s
);
}
static
inline
void
tcg_out_op
(
TCGContext
*
s
,
TCGOpcode
opc
,
const
TCGArg
*
args
,
const
int
*
const_args
)
{
...
...
@@ -1277,8 +1279,8 @@ static inline void tcg_out_op(TCGContext *s, TCGOpcode opc,
s
->
tb_next_offset
[
args
[
0
]]
=
tcg_current_code_size
(
s
);
break
;
case
INDEX_op_call
:
tcg_out_opc_reg
(
s
,
OPC_JALR
,
TCG_REG_RA
,
args
[
0
],
0
);
tcg_out_
nop
(
s
);
assert
(
const_args
[
0
]
);
tcg_out_
call
(
s
,
(
tcg_insn_unit
*
)(
intptr_t
)
args
[
0
]
);
break
;
case
INDEX_op_br
:
tcg_out_brcond
(
s
,
TCG_COND_EQ
,
TCG_REG_ZERO
,
TCG_REG_ZERO
,
args
[
0
]);
...
...
@@ -1546,7 +1548,7 @@ static inline void tcg_out_op(TCGContext *s, TCGOpcode opc,
static
const
TCGTargetOpDef
mips_op_defs
[]
=
{
{
INDEX_op_exit_tb
,
{
}
},
{
INDEX_op_goto_tb
,
{
}
},
{
INDEX_op_call
,
{
"
C
"
}
},
{
INDEX_op_call
,
{
"
i
"
}
},
{
INDEX_op_br
,
{
}
},
{
INDEX_op_mov_i32
,
{
"r"
,
"r"
}
},
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录