File: lkgs-att.s

package info (click to toggle)
llvm-toolchain-19 1%3A19.1.7-19
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,999,616 kB
  • sloc: cpp: 6,951,724; ansic: 1,486,157; asm: 913,598; python: 232,059; f90: 80,126; objc: 75,281; lisp: 37,276; pascal: 16,990; sh: 10,079; ml: 5,058; perl: 4,724; awk: 3,523; makefile: 3,430; javascript: 2,504; xml: 892; fortran: 664; cs: 573
file content (38 lines) | stat: -rw-r--r-- 1,131 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// RUN: llvm-mc -triple x86_64 --show-encoding %s | FileCheck %s
// RUN: not llvm-mc -triple i386 -show-encoding %s 2>&1 | FileCheck %s --check-prefix=ERROR

// ERROR-COUNT-8: error:
// ERROR-NOT: error:

// CHECK: lkgs %ax
// CHECK: encoding: [0xf2,0x0f,0x00,0xf0]
          lkgs %ax

// CHECK: lkgs %r12w
// CHECK: encoding: [0xf2,0x41,0x0f,0x00,0xf4]
          lkgs %r12w

// CHECK: lkgs  268435456(%rbp,%r14,8)
// CHECK: encoding: [0xf2,0x42,0x0f,0x00,0xb4,0xf5,0x00,0x00,0x00,0x10]
          lkgs  268435456(%rbp,%r14,8)

// CHECK: lkgs  291(%r8,%rax,4)
// CHECK: encoding: [0xf2,0x41,0x0f,0x00,0xb4,0x80,0x23,0x01,0x00,0x00]
          lkgs  291(%r8,%rax,4)

// CHECK: lkgs  (%rip)
// CHECK: encoding: [0xf2,0x0f,0x00,0x35,0x00,0x00,0x00,0x00]
          lkgs  (%rip)

// CHECK: lkgs  -64(,%rbp,2)
// CHECK: encoding: [0xf2,0x0f,0x00,0x34,0x6d,0xc0,0xff,0xff,0xff]
          lkgs  -64(,%rbp,2)

// CHECK: lkgs  254(%rcx)
// CHECK: encoding: [0xf2,0x0f,0x00,0xb1,0xfe,0x00,0x00,0x00]
          lkgs  254(%rcx)

// CHECK: lkgs  -256(%rdx)
// CHECK: encoding: [0xf2,0x0f,0x00,0xb2,0x00,0xff,0xff,0xff]
          lkgs  -256(%rdx)