Home | History | Annotate | Download | only in X86
      1 # RUN: llvm-mc -triple i686-unknown-unknown --show-encoding %s | FileCheck %s --check-prefix=CHECK --check-prefix=CHECK-X86
      2 # RUN: llvm-mc -triple x86_64-unknown-unknown --show-encoding %s | FileCheck %s --check-prefix=CHECK --check-prefix=CHECK-X64
      3 
      4 llwpcb %ecx
      5 # CHECK: llwpcb %ecx
      6 # CHECK-X86: encoding: [0x8f,0xe9,0x78,0x12,0xc1]
      7 # CHECK-X64: encoding: [0x8f,0xe9,0x78,0x12,0xc1]
      8 
      9 slwpcb %eax
     10 # CHECK: slwpcb %eax
     11 # CHECK-X86: encoding: [0x8f,0xe9,0x78,0x12,0xc8]
     12 # CHECK-X64: encoding: [0x8f,0xe9,0x78,0x12,0xc8]
     13 
     14 lwpins $305419896, %ebx, %eax
     15 # CHECK: lwpins $305419896, %ebx, %eax
     16 # CHECK-X86: encoding: [0x8f,0xea,0x78,0x12,0xc3,0x78,0x56,0x34,0x12]
     17 # CHECK-X64: encoding: [0x8f,0xea,0x78,0x12,0xc3,0x78,0x56,0x34,0x12]
     18 
     19 lwpins $591751049, (%esp), %edx
     20 # CHECK: lwpins $591751049, (%esp), %edx
     21 # CHECK-X86: encoding: [0x8f,0xea,0x68,0x12,0x04,0x24,0x89,0x67,0x45,0x23]
     22 # CHECK-X64: encoding: [0x67,0x8f,0xea,0x68,0x12,0x04,0x24,0x89,0x67,0x45,0x23]
     23 
     24 lwpval $1737075661, %ebx, %eax
     25 # CHECK: lwpval $1737075661, %ebx, %eax
     26 # CHECK-X86: encoding: [0x8f,0xea,0x78,0x12,0xcb,0xcd,0xab,0x89,0x67]
     27 # CHECK-X64: encoding: [0x8f,0xea,0x78,0x12,0xcb,0xcd,0xab,0x89,0x67]
     28 
     29 lwpval $2309737967, (%esp), %edx
     30 # CHECK: lwpval $2309737967, (%esp), %edx
     31 # CHECK-X86: encoding: [0x8f,0xea,0x68,0x12,0x0c,0x24,0xef,0xcd,0xab,0x89]
     32 # CHECK-X64: encoding: [0x67,0x8f,0xea,0x68,0x12,0x0c,0x24,0xef,0xcd,0xab,0x89]
     33