[ARM] Better OR's for MVE compares
[llvm-core.git] / test / MC / X86 / FXSAVE-64.s
blob04edc080a924f7fb0cd85fed0fa79c4e10156685
1 // RUN: llvm-mc -triple x86_64-unknown-unknown --show-encoding %s | FileCheck %s
3 // CHECK: fxrstor 485498096
4 // CHECK: encoding: [0x0f,0xae,0x0c,0x25,0xf0,0x1c,0xf0,0x1c]
5 fxrstor 485498096
7 // CHECK: fxrstor 64(%rdx)
8 // CHECK: encoding: [0x0f,0xae,0x4a,0x40]
9 fxrstor 64(%rdx)
11 // CHECK: fxrstor 64(%rdx,%rax,4)
12 // CHECK: encoding: [0x0f,0xae,0x4c,0x82,0x40]
13 fxrstor 64(%rdx,%rax,4)
15 // CHECK: fxrstor -64(%rdx,%rax,4)
16 // CHECK: encoding: [0x0f,0xae,0x4c,0x82,0xc0]
17 fxrstor -64(%rdx,%rax,4)
19 // CHECK: fxrstor 64(%rdx,%rax)
20 // CHECK: encoding: [0x0f,0xae,0x4c,0x02,0x40]
21 fxrstor 64(%rdx,%rax)
23 // CHECK: fxrstor (%rdx)
24 // CHECK: encoding: [0x0f,0xae,0x0a]
25 fxrstor (%rdx)
27 // CHECK: fxsave 485498096
28 // CHECK: encoding: [0x0f,0xae,0x04,0x25,0xf0,0x1c,0xf0,0x1c]
29 fxsave 485498096
31 // CHECK: fxsave 64(%rdx)
32 // CHECK: encoding: [0x0f,0xae,0x42,0x40]
33 fxsave 64(%rdx)
35 // CHECK: fxsave 64(%rdx,%rax,4)
36 // CHECK: encoding: [0x0f,0xae,0x44,0x82,0x40]
37 fxsave 64(%rdx,%rax,4)
39 // CHECK: fxsave -64(%rdx,%rax,4)
40 // CHECK: encoding: [0x0f,0xae,0x44,0x82,0xc0]
41 fxsave -64(%rdx,%rax,4)
43 // CHECK: fxsave 64(%rdx,%rax)
44 // CHECK: encoding: [0x0f,0xae,0x44,0x02,0x40]
45 fxsave 64(%rdx,%rax)
47 // CHECK: fxsave (%rdx)
48 // CHECK: encoding: [0x0f,0xae,0x02]
49 fxsave (%rdx)