Interesting problem.
A simple regexp-based solution that doesn't take lexemes into account will fail,
at least on pathological cases like
1800 IF V$="THEN FOO ELSE IF BAR" THEN $K="FOO"
I don't have the brain cells left tonight to work through a complete solution,
though I have a dim recollection of having done something like this many years back using "fixups".
1800 IF V$="K" THEN A$="+K+" ELSE IF V$="R" THEN A$="?R?" ELSE IF V$="M" THEN A$="!M!":Z1=R1:Z2=R2
would translate first into
1800 IF V$="K" THEN GOTO {fixup:skip}
1800.1 GOTO {fixup:after-next-goto}
1800.2 A$="+K+"
1800.3 GOTO {fixup:end}
1800.4 IF V$="R" THEN GOTO {fixup:skip}
1800.5 GOTO {fixup:after-next-goto}
1800.6 A$="?R?"
1800.7 GOTO {fixup:end}
1800.8 IF V$="M" THEN GOTO {fixup:skip}
1800.9 GOTO {fixup:end}
1800.a A$="!M!"
1800.b Z1=R1
1800.c Z2=R2
1800.d REM
The second pass would peform the fixups.
- {fixup:skip} becomes the number of the 2nd following line in the sequence
- {fixup:end} becomes the final line number of the sequence
- {fixup:after-next-goto} becomes the line number after the next goto in the sequence. (This works because conditionals cannot be nested within a line.)
By using a {fixup:skip} fixup (rather than calculating the target line number as you're generating the sequence, you allow for the possibility of doing peephole optimizations. In the sequence above,
1800.8 IF V$="M" THEN GOTO {fixup:skip}
1800.9 GOTO {fixup:end}
1800.a
could be optimized to
1800.8 IF V$<>"M" THEN GOTO {fixup:end}
1800.9
This "renumbers" lines within the sequence, but since target line number calculation/assignment has been deferred, not GOTOs are broken.
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.