Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
968a40f6
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看板
提交
968a40f6
编写于
9月 03, 2009
作者:
E
Edgar E. Iglesias
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
microblaze: Trap on unaligned data accesses.
Untested... Signed-off-by:
N
Edgar E. Iglesias
<
edgar.iglesias@gmail.com
>
上级
821ebb33
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
45 addition
and
2 deletion
+45
-2
target-microblaze/helper.h
target-microblaze/helper.h
+2
-0
target-microblaze/op_helper.c
target-microblaze/op_helper.c
+27
-0
target-microblaze/translate.c
target-microblaze/translate.c
+16
-2
未找到文件。
target-microblaze/helper.h
浏览文件 @
968a40f6
...
...
@@ -16,4 +16,6 @@ DEF_HELPER_1(mmu_read, i32, i32)
DEF_HELPER_2
(
mmu_write
,
void
,
i32
,
i32
)
#endif
DEF_HELPER_4
(
memalign
,
void
,
i32
,
i32
,
i32
,
i32
)
#include "def-helper.h"
target-microblaze/op_helper.c
浏览文件 @
968a40f6
...
...
@@ -206,6 +206,33 @@ uint32_t helper_pcmpbf(uint32_t a, uint32_t b)
return
0
;
}
void
helper_memalign
(
uint32_t
addr
,
uint32_t
dr
,
uint32_t
wr
,
uint32_t
size
)
{
uint32_t
mask
;
switch
(
size
)
{
case
4
:
mask
=
3
;
break
;
case
2
:
mask
=
1
;
break
;
default:
case
1
:
mask
=
0
;
break
;
}
if
(
addr
&
mask
)
{
qemu_log
(
"unaligned access addr=%x size=%d, wr=%d
\n
"
,
addr
,
size
,
wr
);
if
(
!
(
env
->
sregs
[
SR_MSR
]
&
MSR_EE
))
{
return
;
}
env
->
sregs
[
SR_ESR
]
=
ESR_EC_UNALIGNED_DATA
|
(
wr
<<
10
)
\
|
(
dr
&
31
)
<<
5
;
if
(
size
==
4
)
{
env
->
sregs
[
SR_ESR
]
|=
1
<<
11
;
}
helper_raise_exception
(
EXCP_HW_EXCP
);
}
}
#if !defined(CONFIG_USER_ONLY)
/* Writes/reads to the MMU's special regs end up here. */
uint32_t
helper_mmu_read
(
uint32_t
rn
)
...
...
target-microblaze/translate.c
浏览文件 @
968a40f6
...
...
@@ -810,9 +810,16 @@ static void dec_load(DisasContext *dc)
/* If we get a fault on a dslot, the jmpstate better be in sync. */
sync_jmpstate
(
dc
);
if
(
dc
->
rd
)
/* Verify alignment if needed. */
if
((
dc
->
env
->
pvr
.
regs
[
2
]
&
PVR2_UNALIGNED_EXC_MASK
)
&&
size
>
1
)
{
gen_helper_memalign
(
*
addr
,
tcg_const_tl
(
dc
->
rd
),
tcg_const_tl
(
0
),
tcg_const_tl
(
size
));
}
if
(
dc
->
rd
)
{
gen_load
(
dc
,
cpu_R
[
dc
->
rd
],
*
addr
,
size
);
else
{
}
else
{
gen_load
(
dc
,
env_imm
,
*
addr
,
size
);
}
...
...
@@ -847,6 +854,13 @@ static void dec_store(DisasContext *dc)
/* If we get a fault on a dslot, the jmpstate better be in sync. */
sync_jmpstate
(
dc
);
addr
=
compute_ldst_addr
(
dc
,
&
t
);
/* Verify alignment if needed. */
if
((
dc
->
env
->
pvr
.
regs
[
2
]
&
PVR2_UNALIGNED_EXC_MASK
)
&&
size
>
1
)
{
gen_helper_memalign
(
*
addr
,
tcg_const_tl
(
dc
->
rd
),
tcg_const_tl
(
1
),
tcg_const_tl
(
size
));
}
gen_store
(
dc
,
*
addr
,
cpu_R
[
dc
->
rd
],
size
);
if
(
addr
==
&
t
)
tcg_temp_free
(
t
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录