Home | History | Annotate | Download | only in auxprogs

Lines Matching refs:mnemonic

41     my ($encoding,$mnemonic,$format) = split /\s+/,$line;
45 next if ($mnemonic =~ /\$/);
46 next if ($mnemonic =~ /\*/);
49 next if ($mnemonic eq "br"); # special case of bcr
50 next if ($mnemonic eq "nopr"); # special case of bcr
51 next if ($mnemonic eq "b"); # special case of bc
52 next if ($mnemonic eq "nop"); # special case of bc
53 next if ($mnemonic eq "j"); # special case of brc
54 next if ($mnemonic eq "jg"); # special case of brcl
55 next if ($mnemonic eq "tmh"); # alternate mnemonic for tmlh
56 next if ($mnemonic eq "tml"); # alternate mnemonic for tmll
57 next if ($mnemonic eq "lrdr"); # alternate mnemonic for ldxr
58 next if ($mnemonic eq "lrer"); # alternate mnemonic for ledr
59 next if ($mnemonic eq "me"); # alternate mnemonic for mde
60 next if ($mnemonic eq "mer"); # alternate mnemonic for mder
61 next if ($mnemonic eq "cuutf"); # alternate mnemonic for cu21
62 next if ($mnemonic eq "cutfu"); # alternate mnemonic for cu12
64 next if ($mnemonic eq "cfdbra"); # indistinguishable from cfdbr
65 next if ($mnemonic eq "cfebra"); # indistinguishable from cfebr
66 next if ($mnemonic eq "cfxbra"); # indistinguishable from cfxbr
67 next if ($mnemonic eq "cgdbra"); # indistinguishable from cgdbr
68 next if ($mnemonic eq "cgebra"); # indistinguishable from cgebr
69 next if ($mnemonic eq "cgxbra"); # indistinguishable from cgxbr
70 next if ($mnemonic eq "cdfbra"); # indistinguishable from cdfbr
71 next if ($mnemonic eq "cefbra"); # indistinguishable from cefbr
72 next if ($mnemonic eq "cxfbra"); # indistinguishable from cxfbr
73 next if ($mnemonic eq "cdgbra"); # indistinguishable from cdgbr
74 next if ($mnemonic eq "cegbra"); # indistinguishable from cegbr
75 next if ($mnemonic eq "cxgbra"); # indistinguishable from cxgbr
76 next if ($mnemonic eq "ldxbra"); # indistinguishable from ldxbr
77 next if ($mnemonic eq "lexbra"); # indistinguishable from lexbr
78 next if ($mnemonic eq "ledbra"); # indistinguishable from ledbr
79 next if ($mnemonic eq "cdgtra"); # indistinguishable from cdgtr
80 next if ($mnemonic eq "cxgtra"); # indistinguishable from cxgtr
81 next if ($mnemonic eq "cgdtra"); # indistinguishable from cgdtr
82 next if ($mnemonic eq "cgxtra"); # indistinguishable from cgxtr
83 next if ($mnemonic eq "fidbra"); # indistinguishable from fidbr
84 next if ($mnemonic eq "fiebra"); # indistinguishable from fiebr
85 next if ($mnemonic eq "fixbra"); # indistinguishable from fixbr
86 next if ($mnemonic eq "adtr"); # indistinguishable from adtra
87 next if ($mnemonic eq "axtr"); # indistinguishable from axtra
88 next if ($mnemonic eq "sdtr"); # indistinguishable from sdtra
89 next if ($mnemonic eq "sxtr"); # indistinguishable from sxtra
90 next if ($mnemonic eq "ddtr"); # indistinguishable from ddtra
91 next if ($mnemonic eq "dxtr"); # indistinguishable from dxtra
92 next if ($mnemonic eq "mdtr"); # indistinguishable from mdtra
93 next if ($mnemonic eq "mxtr"); # indistinguishable from mxtra
101 if ($opc_desc{$mnemonic}) {
103 # if ($opc_desc{$mnemonic} ne $description) {
104 # print "multiple description for opcode $mnemonic\n";
105 # print " old: |" . $opc_desc{$mnemonic} . "|\n";
109 $opc_desc{$mnemonic} = $description;
113 print "warning: description of $mnemonic contains comma\n";
125 my ($mnemonic,$description,$status) = split /,/,$line;
127 $mnemonic =~ s/"//g;
130 next if ($mnemonic eq "cfdbra"); # indistinguishable from cfdbr
131 next if ($mnemonic eq "cfebra"); # indistinguishable from cfebr
132 next if ($mnemonic eq "cfxbra"); # indistinguishable from cfxbr
133 next if ($mnemonic eq "cgdbra"); # indistinguishable from cgdbr
134 next if ($mnemonic eq "cgebra"); # indistinguishable from cgebr
135 next if ($mnemonic eq "cgxbra"); # indistinguishable from cgxbr
136 next if ($mnemonic eq "cdfbra"); # indistinguishable from cdfbr
137 next if ($mnemonic eq "cefbra"); # indistinguishable from cefbr
138 next if ($mnemonic eq "cxfbra"); # indistinguishable from cxfbr
139 next if ($mnemonic eq "cegbra"); # indistinguishable from cegbr
140 next if ($mnemonic eq "cdgbra"); # indistinguishable from cdgbr
141 next if ($mnemonic eq "cegbra"); # indistinguishable from cegbr
142 next if ($mnemonic eq "cxgbra"); # indistinguishable from cxgbr
143 next if ($mnemonic eq "ldxbra"); # indistinguishable from ldxbr
144 next if ($mnemonic eq "lexbra"); # indistinguishable from lexbr
145 next if ($mnemonic eq "ledbra"); # indistinguishable from ledbr
146 next if ($mnemonic eq "cdgtra"); # indistinguishable from cdgtr
147 next if ($mnemonic eq "cxgtra"); # indistinguishable from cxgtr
148 next if ($mnemonic eq "cgdtra"); # indistinguishable from cgdtr
149 next if ($mnemonic eq "cgxtra"); # indistinguishable from cgxtr
150 next if ($mnemonic eq "fidbra"); # indistinguishable from fidbr
151 next if ($mnemonic eq "fiebra"); # indistinguishable from fiebr
152 next if ($mnemonic eq "fixbra"); # indistinguishable from fixbr
153 next if ($mnemonic eq "adtr"); # indistinguishable from adtra
154 next if ($mnemonic eq "sdtr"); # indistinguishable from sdtra
155 next if ($mnemonic eq "ddtr"); # indistinguishable from ddtra
156 next if ($mnemonic eq "mdtr"); # indistinguishable from mdtra
159 if ($csv_desc{$mnemonic}) {
160 print "$mnemonic: duplicate entry\n";
162 $csv_desc{$mnemonic} = $description;
169 $csv_implemented{$mnemonic} = 1;
171 print "*** unknown implementation status of $mnemonic\n";
185 my $mnemonic = $1;
186 $mnemonic =~ tr/A-Z/a-z/;
187 $toir_decoded{$mnemonic} = 1;
188 # print "DECODED: $mnemonic\n";