Lines Matching refs:opc
202 foreach my $opc (keys %opc_desc) {
203 if (! $csv_desc{$opc}) {
204 print "*** opcode $opc not listed in $csv_file\n";
207 foreach my $opc (keys %csv_desc) {
208 if (! $opc_desc{$opc}) {
209 print "*** opcode $opc not listed in $opc_file\n";
216 foreach my $opc (keys %opc_desc) {
217 if (defined $csv_desc{$opc}) {
218 if ($opc_desc{$opc} ne $csv_desc{$opc}) {
219 print "*** opcode $opc differs:\n";
220 print " binutils: $opc_desc{$opc}\n";
221 print " opcodes.csv: $csv_desc{$opc}\n";
229 foreach my $opc (keys %toir_implemented) {
230 if (! $csv_implemented{$opc}) {
231 print "*** opcode $opc is implemented but CSV file does not say so\n";
235 foreach my $opc (keys %csv_implemented) {
236 if (! $toir_implemented{$opc}) {
237 print "*** opcode $opc is not implemented but CSV file says so\n";
247 foreach my $opc (keys %opc_desc) {
248 if (! $toir_implemented{$opc} && ! $toir_decoded{$opc}) {
249 print "*** opcode $opc is not handled by the decoder\n";