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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
# RUN: llvm-mc -triple x86_64 -disassemble %s | FileCheck %s --check-prefix=ATT
# RUN: llvm-mc -triple x86_64 -disassemble -output-asm-variant=1 %s | FileCheck %s --check-prefix=INTEL
# ATT: setzuo %al
# INTEL: setzuo al
0x62,0xf4,0x7f,0x18,0x40,0xc0
# ATT: setzuno %al
# INTEL: setzuno al
0x62,0xf4,0x7f,0x18,0x41,0xc0
# ATT: setzub %al
# INTEL: setzub al
0x62,0xf4,0x7f,0x18,0x42,0xc0
# ATT: setzuae %al
# INTEL: setzuae al
0x62,0xf4,0x7f,0x18,0x43,0xc0
# ATT: setzue %al
# INTEL: setzue al
0x62,0xf4,0x7f,0x18,0x44,0xc0
# ATT: setzune %al
# INTEL: setzune al
0x62,0xf4,0x7f,0x18,0x45,0xc0
# ATT: setzube %al
# INTEL: setzube al
0x62,0xf4,0x7f,0x18,0x46,0xc0
# ATT: setzua %al
# INTEL: setzua al
0x62,0xf4,0x7f,0x18,0x47,0xc0
# ATT: setzus %al
# INTEL: setzus al
0x62,0xf4,0x7f,0x18,0x48,0xc0
# ATT: setzuns %al
# INTEL: setzuns al
0x62,0xf4,0x7f,0x18,0x49,0xc0
# ATT: setzup %al
# INTEL: setzup al
0x62,0xf4,0x7f,0x18,0x4a,0xc0
# ATT: setzunp %al
# INTEL: setzunp al
0x62,0xf4,0x7f,0x18,0x4b,0xc0
# ATT: setzul %al
# INTEL: setzul al
0x62,0xf4,0x7f,0x18,0x4c,0xc0
# ATT: setzuge %al
# INTEL: setzuge al
0x62,0xf4,0x7f,0x18,0x4d,0xc0
# ATT: setzule %al
# INTEL: setzule al
0x62,0xf4,0x7f,0x18,0x4e,0xc0
# ATT: setzug %al
# INTEL: setzug al
0x62,0xf4,0x7f,0x18,0x4f,0xc0
# ATT: setzuo (%rax)
# INTEL: setzuo byte ptr [rax]
0x62,0xf4,0x7f,0x18,0x40,0x00
# ATT: setzuno (%rax)
# INTEL: setzuno byte ptr [rax]
0x62,0xf4,0x7f,0x18,0x41,0x00
# ATT: setzub (%rax)
# INTEL: setzub byte ptr [rax]
0x62,0xf4,0x7f,0x18,0x42,0x00
# ATT: setzuae (%rax)
# INTEL: setzuae byte ptr [rax]
0x62,0xf4,0x7f,0x18,0x43,0x00
# ATT: setzue (%rax)
# INTEL: setzue byte ptr [rax]
0x62,0xf4,0x7f,0x18,0x44,0x00
# ATT: setzune (%rax)
# INTEL: setzune byte ptr [rax]
0x62,0xf4,0x7f,0x18,0x45,0x00
# ATT: setzube (%rax)
# INTEL: setzube byte ptr [rax]
0x62,0xf4,0x7f,0x18,0x46,0x00
# ATT: setzua (%rax)
# INTEL: setzua byte ptr [rax]
0x62,0xf4,0x7f,0x18,0x47,0x00
# ATT: setzus (%rax)
# INTEL: setzus byte ptr [rax]
0x62,0xf4,0x7f,0x18,0x48,0x00
# ATT: setzuns (%rax)
# INTEL: setzuns byte ptr [rax]
0x62,0xf4,0x7f,0x18,0x49,0x00
# ATT: setzup (%rax)
# INTEL: setzup byte ptr [rax]
0x62,0xf4,0x7f,0x18,0x4a,0x00
# ATT: setzunp (%rax)
# INTEL: setzunp byte ptr [rax]
0x62,0xf4,0x7f,0x18,0x4b,0x00
# ATT: setzul (%rax)
# INTEL: setzul byte ptr [rax]
0x62,0xf4,0x7f,0x18,0x4c,0x00
# ATT: setzuge (%rax)
# INTEL: setzuge byte ptr [rax]
0x62,0xf4,0x7f,0x18,0x4d,0x00
# ATT: setzule (%rax)
# INTEL: setzule byte ptr [rax]
0x62,0xf4,0x7f,0x18,0x4e,0x00
# ATT: setzug (%rax)
# INTEL: setzug byte ptr [rax]
0x62,0xf4,0x7f,0x18,0x4f,0x00
|