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