Lines Matching refs:inst
41 my %inst = (); # Global hash of instructions.
98 $inst{$p}->{'type'} = $type;
99 $inst{$p}->{'mnemonic'} = $i;
100 $inst{$p}->{'description'} = $d;
101 $inst{$p}->{'initial'} = substr($i, 0, 1);
106 my $links = get_links_list(\%inst);
143 my $inst = $insts->{$i};
144 $initials{$inst->{type}}->{$inst->{initial}}++;
159 $inst{$a}->{'mnemonic'} cmp $inst{$b}->{'mnemonic'} ||
160 $inst{$a}->{'description'} cmp $inst{$b}->{'description'} ||
174 foreach my $i (sort inst_sort keys(%inst))
176 next if($inst{$i}->{'type'} ne $type);
177 unless ($last_initial eq $inst{$i}->{'initial'}) {
178 $last_initial = $inst{$i}->{'initial'};
182 uc($inst{$i}->{'mnemonic'}),
183 $inst{$i}->{'description'});