Lines Matching refs:line
67 my $line = join(",",@_);
68 if ($line =~ /^"(.*)"$/)
181 while($line=<>) {
183 $line =~ s|[#!;].*$||; # get rid of asm-style comments...
184 $line =~ s|/\*.*\*/||; # ... and C-style comments...
185 $line =~ s|^\s+||; # ... and skip white spaces in beginning...
186 $line =~ s|\s+$||; # ... and at the end
189 $line =~ s|\b\.L(\w+)|L$1|g; # common denominator for Locallabel
190 $line =~ s|\bL(\w+)|\.L$1|g if ($dotinlocallabels);
194 $line =~ s|^\s*(\.?)(\w+)([\.\+\-]?)\s*||;
199 $line =~ s/\b(c?[rf]|v|vs)([0-9]+)\b/$2/g if ($c ne "." and $flavour !~ /osx/);
200 if (ref($opcode) eq 'CODE') { $line = &$opcode($f,split(',',$line)); }
201 elsif ($mnemonic) { $line = $c.$mnemonic.$f."\t".$line; }
204 print $line if ($line);