Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
ecf51c9a
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看板
提交
ecf51c9a
编写于
11月 21, 2012
作者:
M
malc
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
tcg/ppc: Fix !softmmu case
Signed-off-by:
N
malc
<
av1474@comtv.ru
>
上级
1d2a67f8
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
8 addition
and
4 deletion
+8
-4
tcg/ppc/tcg-target.c
tcg/ppc/tcg-target.c
+8
-4
未找到文件。
tcg/ppc/tcg-target.c
浏览文件 @
ecf51c9a
...
...
@@ -628,9 +628,9 @@ static void tcg_out_tlb_check (TCGContext *s, int r0, int r1, int r2,
static
void
tcg_out_qemu_ld
(
TCGContext
*
s
,
const
TCGArg
*
args
,
int
opc
)
{
int
addr_reg
,
addr_reg2
,
data_reg
,
data_reg2
,
r0
,
r1
,
rbase
,
bswap
;
int
addr_reg
,
data_reg
,
data_reg2
,
r0
,
r1
,
rbase
,
bswap
;
#ifdef CONFIG_SOFTMMU
int
mem_index
,
s_bits
,
r2
;
int
mem_index
,
s_bits
,
r2
,
addr_reg2
;
uint8_t
*
label_ptr
;
#endif
...
...
@@ -741,9 +741,9 @@ static void tcg_out_qemu_ld (TCGContext *s, const TCGArg *args, int opc)
static
void
tcg_out_qemu_st
(
TCGContext
*
s
,
const
TCGArg
*
args
,
int
opc
)
{
int
addr_reg
,
addr_reg2
,
r0
,
r1
,
data_reg
,
data_reg2
,
bswap
,
rbase
;
int
addr_reg
,
r0
,
r1
,
data_reg
,
data_reg2
,
bswap
,
rbase
;
#ifdef CONFIG_SOFTMMU
int
mem_index
,
r2
;
int
mem_index
,
r2
,
addr_reg2
;
uint8_t
*
label_ptr
;
#endif
...
...
@@ -979,6 +979,7 @@ void tcg_out_tb_finalize(TCGContext *s)
}
#endif
#ifdef CONFIG_SOFTMMU
static
void
emit_ldst_trampoline
(
TCGContext
*
s
,
const
void
*
ptr
)
{
tcg_out32
(
s
,
MFSPR
|
RT
(
3
)
|
LR
);
...
...
@@ -987,6 +988,7 @@ static void emit_ldst_trampoline (TCGContext *s, const void *ptr)
tcg_out_mov
(
s
,
TCG_TYPE_I32
,
3
,
TCG_AREG0
);
tcg_out_b
(
s
,
0
,
(
tcg_target_long
)
ptr
);
}
#endif
static
void
tcg_target_qemu_prologue
(
TCGContext
*
s
)
{
...
...
@@ -1049,6 +1051,7 @@ static void tcg_target_qemu_prologue (TCGContext *s)
tcg_out32
(
s
,
ADDI
|
RT
(
1
)
|
RA
(
1
)
|
frame_size
);
tcg_out32
(
s
,
BCLR
|
BO_ALWAYS
);
#ifdef CONFIG_SOFTMMU
for
(
i
=
0
;
i
<
4
;
++
i
)
{
ld_trampolines
[
i
]
=
s
->
code_ptr
;
emit_ldst_trampoline
(
s
,
qemu_ld_helpers
[
i
]);
...
...
@@ -1056,6 +1059,7 @@ static void tcg_target_qemu_prologue (TCGContext *s)
st_trampolines
[
i
]
=
s
->
code_ptr
;
emit_ldst_trampoline
(
s
,
qemu_st_helpers
[
i
]);
}
#endif
}
static
void
tcg_out_ld
(
TCGContext
*
s
,
TCGType
type
,
TCGReg
ret
,
TCGReg
arg1
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录