Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
157f2662
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看板
提交
157f2662
编写于
8月 22, 2011
作者:
M
malc
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
tcg/ppc64: implement not_i32/64 and ext32u_i64
Signed-off-by:
N
malc
<
av1474@comtv.ru
>
上级
350dba6c
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
16 addition
and
3 deletion
+16
-3
tcg/ppc64/tcg-target.c
tcg/ppc64/tcg-target.c
+13
-0
tcg/ppc64/tcg-target.h
tcg/ppc64/tcg-target.h
+3
-3
未找到文件。
tcg/ppc64/tcg-target.c
浏览文件 @
157f2662
...
...
@@ -355,6 +355,7 @@ static int tcg_target_const_match (tcg_target_long val,
#define SRAWI XO31(824)
#define NEG XO31(104)
#define MFCR XO31( 19)
#define NOR XO31(124)
#define CNTLZW XO31( 26)
#define CNTLZD XO31( 58)
...
...
@@ -1449,6 +1450,11 @@ static void tcg_out_op (TCGContext *s, TCGOpcode opc, const TCGArg *args,
tcg_out32
(
s
,
NEG
|
RT
(
args
[
0
])
|
RA
(
args
[
1
]));
break
;
case
INDEX_op_not_i32
:
case
INDEX_op_not_i64
:
tcg_out32
(
s
,
NOR
|
SAB
(
args
[
1
],
args
[
0
],
args
[
1
]));
break
;
case
INDEX_op_add_i64
:
if
(
const_args
[
2
])
ppc_addi64
(
s
,
args
[
0
],
args
[
1
],
args
[
2
]);
...
...
@@ -1553,6 +1559,10 @@ static void tcg_out_op (TCGContext *s, TCGOpcode opc, const TCGArg *args,
tcg_out32
(
s
,
c
|
RS
(
args
[
1
])
|
RA
(
args
[
0
]));
break
;
case
INDEX_op_ext32u_i64
:
tcg_out_rld
(
s
,
RLDICR
,
args
[
0
],
args
[
1
],
0
,
32
);
break
;
case
INDEX_op_setcond_i32
:
tcg_out_setcond
(
s
,
TCG_TYPE_I32
,
args
[
3
],
args
[
0
],
args
[
1
],
args
[
2
],
const_args
[
2
]);
...
...
@@ -1621,6 +1631,7 @@ static const TCGTargetOpDef ppc_op_defs[] = {
{
INDEX_op_brcond_i64
,
{
"r"
,
"ri"
}
},
{
INDEX_op_neg_i32
,
{
"r"
,
"r"
}
},
{
INDEX_op_not_i32
,
{
"r"
,
"r"
}
},
{
INDEX_op_add_i64
,
{
"r"
,
"r"
,
"ri"
}
},
{
INDEX_op_sub_i64
,
{
"r"
,
"r"
,
"ri"
}
},
...
...
@@ -1639,6 +1650,7 @@ static const TCGTargetOpDef ppc_op_defs[] = {
{
INDEX_op_remu_i64
,
{
"r"
,
"r"
,
"r"
}
},
{
INDEX_op_neg_i64
,
{
"r"
,
"r"
}
},
{
INDEX_op_not_i64
,
{
"r"
,
"r"
}
},
{
INDEX_op_qemu_ld8u
,
{
"r"
,
"L"
}
},
{
INDEX_op_qemu_ld8s
,
{
"r"
,
"L"
}
},
...
...
@@ -1659,6 +1671,7 @@ static const TCGTargetOpDef ppc_op_defs[] = {
{
INDEX_op_ext8s_i64
,
{
"r"
,
"r"
}
},
{
INDEX_op_ext16s_i64
,
{
"r"
,
"r"
}
},
{
INDEX_op_ext32s_i64
,
{
"r"
,
"r"
}
},
{
INDEX_op_ext32u_i64
,
{
"r"
,
"r"
}
},
{
INDEX_op_setcond_i32
,
{
"r"
,
"r"
,
"ri"
}
},
{
INDEX_op_setcond_i64
,
{
"r"
,
"r"
,
"ri"
}
},
...
...
tcg/ppc64/tcg-target.h
浏览文件 @
157f2662
...
...
@@ -76,7 +76,7 @@ enum {
#define TCG_TARGET_HAS_ext16u_i32 0
#define TCG_TARGET_HAS_bswap16_i32 0
#define TCG_TARGET_HAS_bswap32_i32 0
#define TCG_TARGET_HAS_not_i32
0
#define TCG_TARGET_HAS_not_i32
1
#define TCG_TARGET_HAS_neg_i32 1
#define TCG_TARGET_HAS_andc_i32 0
#define TCG_TARGET_HAS_orc_i32 0
...
...
@@ -91,12 +91,12 @@ enum {
#define TCG_TARGET_HAS_ext16s_i64 1
#define TCG_TARGET_HAS_ext32s_i64 1
#define TCG_TARGET_HAS_ext8u_i64 0
#define TCG_TARGET_HAS_ext16u_i64
0
#define TCG_TARGET_HAS_ext16u_i64
1
#define TCG_TARGET_HAS_ext32u_i64 0
#define TCG_TARGET_HAS_bswap16_i64 0
#define TCG_TARGET_HAS_bswap32_i64 0
#define TCG_TARGET_HAS_bswap64_i64 0
#define TCG_TARGET_HAS_not_i64
0
#define TCG_TARGET_HAS_not_i64
1
#define TCG_TARGET_HAS_neg_i64 1
#define TCG_TARGET_HAS_andc_i64 0
#define TCG_TARGET_HAS_orc_i64 0
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录