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