Lines Matching refs:line
87 my $ret = ($flavour =~ /aix64-as/) ? "" : ".p2align $line";
116 my $line = join(",",@_);
117 if ($line =~ /^"(.*)"$/)
380 while($line=<>) {
382 $line =~ s|[#!;].*$||; # get rid of asm-style comments...
383 $line =~ s|/\*.*\*/||; # ... and C-style comments...
384 $line =~ s|^\s+||; # ... and skip whitespaces in beginning...
385 $line =~ s|\s+$||; # ... and at the end
388 $line =~ s|\.L(\w+)|L$1|g; # common denominator for Locallabel
389 $line =~ s|\bL(\w+)|\.L$1|g if ($dotinlocallabels);
393 $line =~ s|(^[\.\w]+)\:\s*||;
407 $line =~ s|^\s*(\.?)(\w+)([\.\+\-]?)\s*||;
412 $line =~ s/\b(c?[rf]|v|vs)([0-9]+)\b/$2/g if ($c ne "." and $flavour !~ /osx/);
413 if (ref($opcode) eq 'CODE') { $line = &$opcode($f,split(/,\s*/,$line)); }
414 elsif ($mnemonic) { $line = $c.$mnemonic.$f."\t".$line; }
417 print $line if ($line);