Lines Matching refs:line
68 my $line = join(",",@_);
69 if ($line =~ /^"(.*)"$/)
202 while($line=<>) {
204 $line =~ s|[#!;].*$||; # get rid of asm-style comments...
205 $line =~ s|/\*.*\*/||; # ... and C-style comments...
206 $line =~ s|^\s+||; # ... and skip white spaces in beginning...
207 $line =~ s|\s+$||; # ... and at the end
210 $line =~ s|\b\.L(\w+)|L$1|g; # common denominator for Locallabel
211 $line =~ s|\bL(\w+)|\.L$1|g if ($dotinlocallabels);
215 $line =~ s|^\s*(\.?)(\w+)([\.\+\-]?)\s*||;
220 $line =~ s/\b(c?[rf]|v|vs)([0-9]+)\b/$2/g if ($c ne "." and $flavour !~ /osx/);
221 if (ref($opcode) eq 'CODE') { $line = &$opcode($f,split(',',$line)); }
222 elsif ($mnemonic) { $line = $c.$mnemonic.$f."\t".$line; }
225 print $line if ($line);