Home | History | Annotate | Download | only in X86
      1 // RUN: llvm-mc -triple i386-unknown-unknown --show-encoding %s | FileCheck %s
      2 
      3 // CHECK: invpcid 3809469200(%edx,%eax,4), %eax
      4 // CHECK: encoding: [0x66,0x0f,0x38,0x82,0x84,0x82,0x10,0xe3,0x0f,0xe3]
      5 invpcid 3809469200(%edx,%eax,4), %eax
      6 
      7 // CHECK: invpcid 485498096, %eax
      8 // CHECK: encoding: [0x66,0x0f,0x38,0x82,0x05,0xf0,0x1c,0xf0,0x1c]
      9 invpcid 485498096, %eax
     10 
     11 // CHECK: invpcid 485498096(%edx,%eax,4), %eax
     12 // CHECK: encoding: [0x66,0x0f,0x38,0x82,0x84,0x82,0xf0,0x1c,0xf0,0x1c]
     13 invpcid 485498096(%edx,%eax,4), %eax
     14 
     15 // CHECK: invpcid 485498096(%edx), %eax
     16 // CHECK: encoding: [0x66,0x0f,0x38,0x82,0x82,0xf0,0x1c,0xf0,0x1c]
     17 invpcid 485498096(%edx), %eax
     18 
     19 // CHECK: invpcid 64(%edx,%eax), %eax
     20 // CHECK: encoding: [0x66,0x0f,0x38,0x82,0x44,0x02,0x40]
     21 invpcid 64(%edx,%eax), %eax
     22 
     23 // CHECK: invpcid (%edx), %eax
     24 // CHECK: encoding: [0x66,0x0f,0x38,0x82,0x02]
     25 invpcid (%edx), %eax
     26 
     27