Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
78fdbfb9
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,发现更多精彩内容 >>
提交
78fdbfb9
编写于
10月 14, 2016
作者:
R
Richard Henderson
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
tcg/i386: Implement field extraction opcodes
Signed-off-by:
N
Richard Henderson
<
rth@twiddle.net
>
上级
ec903af1
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
47 addition
and
3 deletion
+47
-3
tcg/i386/tcg-target.h
tcg/i386/tcg-target.h
+9
-3
tcg/i386/tcg-target.inc.c
tcg/i386/tcg-target.inc.c
+38
-0
未找到文件。
tcg/i386/tcg-target.h
浏览文件 @
78fdbfb9
...
...
@@ -94,8 +94,8 @@ extern bool have_bmi1;
#define TCG_TARGET_HAS_nand_i32 0
#define TCG_TARGET_HAS_nor_i32 0
#define TCG_TARGET_HAS_deposit_i32 1
#define TCG_TARGET_HAS_extract_i32
0
#define TCG_TARGET_HAS_sextract_i32
0
#define TCG_TARGET_HAS_extract_i32
1
#define TCG_TARGET_HAS_sextract_i32
1
#define TCG_TARGET_HAS_movcond_i32 1
#define TCG_TARGET_HAS_add2_i32 1
#define TCG_TARGET_HAS_sub2_i32 1
...
...
@@ -126,7 +126,7 @@ extern bool have_bmi1;
#define TCG_TARGET_HAS_nand_i64 0
#define TCG_TARGET_HAS_nor_i64 0
#define TCG_TARGET_HAS_deposit_i64 1
#define TCG_TARGET_HAS_extract_i64
0
#define TCG_TARGET_HAS_extract_i64
1
#define TCG_TARGET_HAS_sextract_i64 0
#define TCG_TARGET_HAS_movcond_i64 1
#define TCG_TARGET_HAS_add2_i64 1
...
...
@@ -142,6 +142,12 @@ extern bool have_bmi1;
((ofs) == 0 && (len) == 16))
#define TCG_TARGET_deposit_i64_valid TCG_TARGET_deposit_i32_valid
/* Check for the possibility of high-byte extraction and, for 64-bit,
zero-extending 32-bit right-shift. */
#define TCG_TARGET_extract_i32_valid(ofs, len) ((ofs) == 8 && (len) == 8)
#define TCG_TARGET_extract_i64_valid(ofs, len) \
(((ofs) == 8 && (len) == 8) || ((ofs) + (len)) == 32)
#if TCG_TARGET_REG_BITS == 64
# define TCG_AREG0 TCG_REG_R14
#else
...
...
tcg/i386/tcg-target.inc.c
浏览文件 @
78fdbfb9
...
...
@@ -2143,6 +2143,40 @@ static inline void tcg_out_op(TCGContext *s, TCGOpcode opc,
}
break
;
case
INDEX_op_extract_i64
:
if
(
args
[
2
]
+
args
[
3
]
==
32
)
{
/* This is a 32-bit zero-extending right shift. */
tcg_out_mov
(
s
,
TCG_TYPE_I32
,
args
[
0
],
args
[
1
]);
tcg_out_shifti
(
s
,
SHIFT_SHR
,
args
[
0
],
args
[
2
]);
break
;
}
/* FALLTHRU */
case
INDEX_op_extract_i32
:
/* On the off-chance that we can use the high-byte registers.
Otherwise we emit the same ext16 + shift pattern that we
would have gotten from the normal tcg-op.c expansion. */
tcg_debug_assert
(
args
[
2
]
==
8
&&
args
[
3
]
==
8
);
if
(
args
[
1
]
<
4
&&
args
[
0
]
<
8
)
{
tcg_out_modrm
(
s
,
OPC_MOVZBL
,
args
[
0
],
args
[
1
]
+
4
);
}
else
{
tcg_out_ext16u
(
s
,
args
[
0
],
args
[
1
]);
tcg_out_shifti
(
s
,
SHIFT_SHR
,
args
[
0
],
8
);
}
break
;
case
INDEX_op_sextract_i32
:
/* We don't implement sextract_i64, as we cannot sign-extend to
64-bits without using the REX prefix that explicitly excludes
access to the high-byte registers. */
tcg_debug_assert
(
args
[
2
]
==
8
&&
args
[
3
]
==
8
);
if
(
args
[
1
]
<
4
&&
args
[
0
]
<
8
)
{
tcg_out_modrm
(
s
,
OPC_MOVSBL
,
args
[
0
],
args
[
1
]
+
4
);
}
else
{
tcg_out_ext16s
(
s
,
args
[
0
],
args
[
1
],
0
);
tcg_out_shifti
(
s
,
SHIFT_SAR
,
args
[
0
],
8
);
}
break
;
case
INDEX_op_mb
:
tcg_out_mb
(
s
,
args
[
0
]);
break
;
...
...
@@ -2204,6 +2238,9 @@ static const TCGTargetOpDef x86_op_defs[] = {
{
INDEX_op_setcond_i32
,
{
"q"
,
"r"
,
"ri"
}
},
{
INDEX_op_deposit_i32
,
{
"Q"
,
"0"
,
"Q"
}
},
{
INDEX_op_extract_i32
,
{
"r"
,
"r"
}
},
{
INDEX_op_sextract_i32
,
{
"r"
,
"r"
}
},
{
INDEX_op_movcond_i32
,
{
"r"
,
"r"
,
"ri"
,
"r"
,
"0"
}
},
{
INDEX_op_mulu2_i32
,
{
"a"
,
"d"
,
"a"
,
"r"
}
},
...
...
@@ -2265,6 +2302,7 @@ static const TCGTargetOpDef x86_op_defs[] = {
{
INDEX_op_extu_i32_i64
,
{
"r"
,
"r"
}
},
{
INDEX_op_deposit_i64
,
{
"Q"
,
"0"
,
"Q"
}
},
{
INDEX_op_extract_i64
,
{
"r"
,
"r"
}
},
{
INDEX_op_movcond_i64
,
{
"r"
,
"r"
,
"re"
,
"r"
,
"0"
}
},
{
INDEX_op_mulu2_i64
,
{
"a"
,
"d"
,
"a"
,
"r"
}
},
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录