Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
aa97bb48
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
aa97bb48
编写于
1月 20, 2010
作者:
A
Avi Kivity
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
KVM: x86 emulator: implement movdqu instruction (f3 0f 6f, f3 0f 7f)
Signed-off-by:
N
Avi Kivity
<
avi@redhat.com
>
上级
1253791d
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
21 addition
and
2 deletion
+21
-2
arch/x86/kvm/emulate.c
arch/x86/kvm/emulate.c
+21
-2
未找到文件。
arch/x86/kvm/emulate.c
浏览文件 @
aa97bb48
...
...
@@ -2415,11 +2415,19 @@ static int em_mov(struct x86_emulate_ctxt *ctxt)
return
X86EMUL_CONTINUE
;
}
static
int
em_movdqu
(
struct
x86_emulate_ctxt
*
ctxt
)
{
struct
decode_cache
*
c
=
&
ctxt
->
decode
;
memcpy
(
&
c
->
dst
.
vec_val
,
&
c
->
src
.
vec_val
,
c
->
op_bytes
);
return
X86EMUL_CONTINUE
;
}
#define D(_y) { .flags = (_y) }
#define N D(0)
#define G(_f, _g) { .flags = ((_f) | Group), .u.group = (_g) }
#define GD(_f, _g) { .flags = ((_f) | Group | GroupDual), .u.gdual = (_g) }
#define I(_f, _e) { .flags = (_f), .u.execute = (_e) }
#define GP(_f, _g) { .flags = ((_f) | Prefix), .u.gprefix = (_g) }
#define D2bv(_f) D((_f) | ByteOp), D(_f)
#define I2bv(_f, _e) I((_f) | ByteOp, _e), I(_f, _e)
...
...
@@ -2484,6 +2492,10 @@ static struct opcode group11[] = {
I
(
DstMem
|
SrcImm
|
ModRM
|
Mov
,
em_mov
),
X7
(
D
(
Undefined
)),
};
static
struct
gprefix
pfx_0f_6f_0f_7f
=
{
N
,
N
,
N
,
I
(
Sse
,
em_movdqu
),
};
static
struct
opcode
opcode_table
[
256
]
=
{
/* 0x00 - 0x07 */
D6ALU
(
Lock
),
...
...
@@ -2608,9 +2620,15 @@ static struct opcode twobyte_table[256] = {
/* 0x50 - 0x5F */
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
/* 0x60 - 0x6F */
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
GP
(
SrcMem
|
DstReg
|
ModRM
|
Mov
,
&
pfx_0f_6f_0f_7f
),
/* 0x70 - 0x7F */
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
N
,
GP
(
SrcReg
|
DstMem
|
ModRM
|
Mov
,
&
pfx_0f_6f_0f_7f
),
/* 0x80 - 0x8F */
X16
(
D
(
SrcImm
)),
/* 0x90 - 0x9F */
...
...
@@ -2654,6 +2672,7 @@ static struct opcode twobyte_table[256] = {
#undef G
#undef GD
#undef I
#undef GP
#undef D2bv
#undef I2bv
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录