Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
b0bf5fe8
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
b0bf5fe8
编写于
10月 14, 2016
作者:
R
Richard Henderson
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
tcg/s390: Implement field extraction opcodes
Signed-off-by:
N
Richard Henderson
<
rth@twiddle.net
>
上级
b2c98d9d
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
13 addition
and
2 deletion
+13
-2
tcg/s390/tcg-target.h
tcg/s390/tcg-target.h
+2
-2
tcg/s390/tcg-target.inc.c
tcg/s390/tcg-target.inc.c
+11
-0
未找到文件。
tcg/s390/tcg-target.h
浏览文件 @
b0bf5fe8
...
...
@@ -78,7 +78,7 @@ extern uint64_t s390_facilities;
#define TCG_TARGET_HAS_nand_i32 0
#define TCG_TARGET_HAS_nor_i32 0
#define TCG_TARGET_HAS_deposit_i32 (s390_facilities & FACILITY_GEN_INST_EXT)
#define TCG_TARGET_HAS_extract_i32
0
#define TCG_TARGET_HAS_extract_i32
(s390_facilities & FACILITY_GEN_INST_EXT)
#define TCG_TARGET_HAS_sextract_i32 0
#define TCG_TARGET_HAS_movcond_i32 1
#define TCG_TARGET_HAS_add2_i32 1
...
...
@@ -109,7 +109,7 @@ extern uint64_t s390_facilities;
#define TCG_TARGET_HAS_nand_i64 0
#define TCG_TARGET_HAS_nor_i64 0
#define TCG_TARGET_HAS_deposit_i64 (s390_facilities & FACILITY_GEN_INST_EXT)
#define TCG_TARGET_HAS_extract_i64
0
#define TCG_TARGET_HAS_extract_i64
(s390_facilities & FACILITY_GEN_INST_EXT)
#define TCG_TARGET_HAS_sextract_i64 0
#define TCG_TARGET_HAS_movcond_i64 1
#define TCG_TARGET_HAS_add2_i64 1
...
...
tcg/s390/tcg-target.inc.c
浏览文件 @
b0bf5fe8
...
...
@@ -1252,6 +1252,12 @@ static void tgen_deposit(TCGContext *s, TCGReg dest, TCGReg src,
tcg_out_risbg
(
s
,
dest
,
src
,
msb
,
lsb
,
ofs
,
0
);
}
static
void
tgen_extract
(
TCGContext
*
s
,
TCGReg
dest
,
TCGReg
src
,
int
ofs
,
int
len
)
{
tcg_out_risbg
(
s
,
dest
,
src
,
64
-
len
,
63
,
64
-
ofs
,
1
);
}
static
void
tgen_gotoi
(
TCGContext
*
s
,
int
cc
,
tcg_insn_unit
*
dest
)
{
ptrdiff_t
off
=
dest
-
s
->
code_ptr
;
...
...
@@ -2158,6 +2164,9 @@ static inline void tcg_out_op(TCGContext *s, TCGOpcode opc,
OP_32_64
(
deposit
)
:
tgen_deposit
(
s
,
args
[
0
],
args
[
2
],
args
[
3
],
args
[
4
]);
break
;
OP_32_64
(
extract
)
:
tgen_extract
(
s
,
args
[
0
],
args
[
1
],
args
[
2
],
args
[
3
]);
break
;
case
INDEX_op_mb
:
/* The host memory model is quite strong, we simply need to
...
...
@@ -2227,6 +2236,7 @@ static const TCGTargetOpDef s390_op_defs[] = {
{
INDEX_op_setcond_i32
,
{
"r"
,
"r"
,
"rC"
}
},
{
INDEX_op_movcond_i32
,
{
"r"
,
"r"
,
"rC"
,
"r"
,
"0"
}
},
{
INDEX_op_deposit_i32
,
{
"r"
,
"0"
,
"r"
}
},
{
INDEX_op_extract_i32
,
{
"r"
,
"r"
}
},
{
INDEX_op_qemu_ld_i32
,
{
"r"
,
"L"
}
},
{
INDEX_op_qemu_ld_i64
,
{
"r"
,
"L"
}
},
...
...
@@ -2288,6 +2298,7 @@ static const TCGTargetOpDef s390_op_defs[] = {
{
INDEX_op_setcond_i64
,
{
"r"
,
"r"
,
"rC"
}
},
{
INDEX_op_movcond_i64
,
{
"r"
,
"r"
,
"rC"
,
"r"
,
"0"
}
},
{
INDEX_op_deposit_i64
,
{
"r"
,
"0"
,
"r"
}
},
{
INDEX_op_extract_i64
,
{
"r"
,
"r"
}
},
{
INDEX_op_mb
,
{
}
},
{
-
1
},
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录