The two-step seems the best (and only?) option here ...
As an exercise, I added basic macro argument-handling to Damian's demo_cpp.pl, included in Parse-RecDescent.
In demo_cpp.pl, change the "demacro" function to:
sub demacro($) { my $text = shift; while (($macro,$pkg) = each %macro ) { my $defn = $$pkg[0]; if (defined $$pkg[1]) { my @args = @{$$pkg[1]}; while ($text =~ m/($macro\((.*?)\))/g) { my $oA = length($`), $oZ = length($&); my @vals = split /\s*,\s*/, $2; (@args eq @vals) or die "Bad arg count for macro '$macro'\n"; my $_defn = $defn; for ($i=0; $i<@args; $i++) { $_defn =~ s/$args[$i]/($vals[$i])/g; } substr($text, $oA, $oZ) = $_defn; } } else { $text =~ s/$macro/$defn/; } } return $text; }
And change the "macrodef" rule to:
macrodef : '#define' /[a-z]\w*/i '(' <leftop: /[a-z]+/i ',' /[a-z]+/i> ')' /.*/ { $::macro{$item[2]} = [ $item[-1], $item[4] ]; } | '#define' /[a-z]\w*/i /.*/ { $::macro{$item[2]} = [ $item[-1] ]; }
This would process #define's like in:
#define add(a,b,c) (a+b+c) #define mult(d,e) (d*e) #define pi (3.1415) main( ) { add(1,2,3); mult(4,5); float p = pi; }
Note that this is no less "naive" than the original demo -- simple string substitution is used for argument instantiation (though this does add parens around each arg instance to preserve operator precedence). E.g., using args "a" and "ab" would fail since the "a"-instantiation would intrude on part of the "ab". A real algorithm would need to rectify this (with smart tokenization, etc.).

Thanks for the help.
Jim

In reply to Re: Macros in a RecDescent grammar by mush4brains
in thread Macros in a RecDescent grammar by mush4brains

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.