Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
b11ebf64
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看板
提交
b11ebf64
编写于
8月 16, 2009
作者:
B
Blue Swirl
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Replace REGX with PRIx64
Signed-off-by:
N
Blue Swirl
<
blauwirbel@gmail.com
>
上级
90e189ec
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
8 addition
and
7 deletion
+8
-7
hw/ppc_oldworld.c
hw/ppc_oldworld.c
+4
-2
target-ppc/cpu.h
target-ppc/cpu.h
+0
-2
target-ppc/helper.c
target-ppc/helper.c
+3
-2
target-ppc/translate.c
target-ppc/translate.c
+1
-1
未找到文件。
hw/ppc_oldworld.c
浏览文件 @
b11ebf64
...
...
@@ -48,7 +48,9 @@ static int vga_osi_call (CPUState *env)
static
int
vga_vbl_enabled
;
int
linesize
;
// printf("osi_call R5=" REGX "\n", ppc_dump_gpr(env, 5));
#if 0
printf("osi_call R5=%016" PRIx64 "\n", ppc_dump_gpr(env, 5));
#endif
/* same handler as PearPC, coming from the original MOL video
driver. */
...
...
@@ -100,7 +102,7 @@ static int vga_osi_call (CPUState *env)
/* R6 = x, R7 = y, R8 = visible, R9 = data */
break
;
default:
fprintf
(
stderr
,
"unsupported OSI call R5=
"
REGX
"
\n
"
,
fprintf
(
stderr
,
"unsupported OSI call R5=
%016"
PRIx64
"
\n
"
,
ppc_dump_gpr
(
env
,
5
));
break
;
}
...
...
target-ppc/cpu.h
浏览文件 @
b11ebf64
...
...
@@ -56,8 +56,6 @@
#include "cpu-defs.h"
#define REGX "%016" PRIx64
#include <setjmp.h>
#include "softfloat.h"
...
...
target-ppc/helper.c
浏览文件 @
b11ebf64
...
...
@@ -2031,8 +2031,9 @@ void ppc_hw_interrupt (CPUState *env)
#else
/* defined (CONFIG_USER_ONLY) */
static
inline
void
dump_syscall
(
CPUState
*
env
)
{
qemu_log_mask
(
CPU_LOG_INT
,
"syscall r0="
REGX
" r3="
REGX
" r4="
REGX
" r5="
REGX
" r6="
REGX
" nip="
TARGET_FMT_lx
"
\n
"
,
qemu_log_mask
(
CPU_LOG_INT
,
"syscall r0=%016"
PRIx64
" r3=%016"
PRIx64
" r4=%016"
PRIx64
" r5=%016"
PRIx64
" r6=%016"
PRIx64
" nip="
TARGET_FMT_lx
"
\n
"
,
ppc_dump_gpr
(
env
,
0
),
ppc_dump_gpr
(
env
,
3
),
ppc_dump_gpr
(
env
,
4
),
ppc_dump_gpr
(
env
,
5
),
ppc_dump_gpr
(
env
,
6
),
env
->
nip
);
...
...
target-ppc/translate.c
浏览文件 @
b11ebf64
...
...
@@ -8860,7 +8860,7 @@ void cpu_dump_state (CPUState *env, FILE *f,
for
(
i
=
0
;
i
<
32
;
i
++
)
{
if
((
i
&
(
RGPL
-
1
))
==
0
)
cpu_fprintf
(
f
,
"GPR%02d"
,
i
);
cpu_fprintf
(
f
,
"
"
REGX
,
ppc_dump_gpr
(
env
,
i
));
cpu_fprintf
(
f
,
"
%016"
PRIx64
,
ppc_dump_gpr
(
env
,
i
));
if
((
i
&
(
RGPL
-
1
))
==
(
RGPL
-
1
))
cpu_fprintf
(
f
,
"
\n
"
);
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录