r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[All] except covered in other channels

BrianH
2-May-2006
[2160]
Perhaps a supply of temporaries could be provided to the rewriter 
for it to use, and then it would complain if it didn't have enough.
Gabriele
2-May-2006
[2161x2]
but probably rewriting is tricky in itself.
you mean, temp local words?
BrianH
2-May-2006
[2163]
I mean words defined in the calling context that can be used as temporaries 
by the resulting code without having dificulties.
Gabriele
2-May-2006
[2164]
do you have an example? (i don't know if we can find a general solution, 
but i'm sure each problem can be solved quite easily)
BrianH
2-May-2006
[2165]
Parse has this problem in particular for its temporary variables 
- they aren't very recursion safe. You can do some hacks to make 
up for missing parse keywords using code blocks, but usually those 
need some temporaries.
Gabriele
2-May-2006
[2166]
i usually just tend to avoid recursion when it is not really needed, 
and i try to stay alert when i need it ;)
BrianH
2-May-2006
[2167]
When parsing recursive structures, you often need recursion-safe 
local variables. I run into this when writing compilers pretty often.
Gabriele
2-May-2006
[2168x3]
i have been thinking about function! values inside parse rules; parse 
could you the function code block as a rule, but "enter" the function 
when entering the rule; so you can take advantage of the function's 
context.
you could even define parametric rules
i was also wondering if it made sense to allow return values; but 
it doesn't match the current parse at all so i'm not sure.
BrianH
2-May-2006
[2171x2]
Parse uses a lot of temporaries for doing common tricks with code 
blocks that should really be built into parse as keywords, like REMOVE, 
REPLACE, UNLESS, USE, etc.
I've wanted parametric rules for years.
Gabriele
2-May-2006
[2173x2]
there are many subtle issues with a proposal like this though.
i wonder if it's possible to experiment with it with mezz code.
BrianH
2-May-2006
[2175x2]
make rule! [[locals] [rules]]
Using a variant on Carl's new make function! syntax.
Gabriele
2-May-2006
[2177]
would rule! really be different than function! ?
BrianH
2-May-2006
[2178]
A new function type where the code block would be executed by the 
parse engine rather than the DO engine.
Gabriele
2-May-2006
[2179x3]
but you can't call it outside of parse anyway
and you can't use functions inside parse either
so it's just rule!: function!
BrianH
2-May-2006
[2182x2]
You could keep the spec block mostly the same as function!, just 
like rebcode does. Calling it would call parse on its first argument. 
This would be sort-of like a parse rule compiler.
Calling it directly I mean.
Gabriele
2-May-2006
[2184x2]
but that wouldn't be very useful inside parse then
well... i need to get some sleep. this is a very interesting topic 
though. i hope we can improve parse on r3 too (the problem is deciding 
where to stop).
BrianH
2-May-2006
[2186x2]
I need some dinner, so I'll think about this a bit and come up with 
a set of appropriate parse functions and their equivalent rewrite 
code.
Parse operations I mean.
BrianH
4-May-2006
[2188x2]
Here are some minimum additonal parse operations, and some workarounds 
that could be used to replace them until they are implemented.

fail ==> [end skip]
check (code) ==> (tmp1: unless (code) [fail]) tmp1
remove rule ==> tmp1: rule tmp2: :tmp1 (remove/part :tmp1 :tmp2)

replace rule (code) ==> tmp1: rule tmp2: :tmp1 (tmp1: change/part 
:tmp1 (code) :tmp2) :tmp1

replace-only rule (code) ==> tmp1: rule tmp2: :tmp1 (tmp1: change/part/only 
:tmp1 (code) :tmp2) :tmp1

into-string rule ==> set tmp1 string! (tmp1: unless parse tmp1 rule 
[fail]) tmp1


Note that if parse operations are changed to take refinements or 
if these are being done as rewrite rules, replace-only and into-string 
could be expressed as remove/only and into/string. This would be 
slower in a native implementation, but about the same in rewrite 
rules. It would look more REBOL-like if that matters to you.


A rewrite engine for these workarounds will need temporaries for 
their implementation. The caller would need to provide a block of 
their own temporaries, and would not be able to reuse them in their 
code. The rewriter will need to count temporaries and complain if 
the caller doesn't provide enough. As with all parse rules, these 
temporaries will not be recursion-safe. Directly nested rules should 
be fine as long as there are enough temporaries provided.
I'm still working on parse extensions to enable recursion-safe temporary 
variables. Obviously they are a bit more involved.
Anton
4-May-2006
[2190]
I did that last year. Let's see.. the interface is make-recursive-rule 
which takes a parse rule block and outputs one that saves and restores 
temporary variables at the right time. It extends the parse dialect 
with a new 'recurse-into keyword. 

Make-recursive-rule essentially just looks for   [ recurse-into rule 
]   and replaces it with   [ save-vars   rule   restore-vars ]
BrianH
4-May-2006
[2191x2]
Anton, I would like to see that. As it is, Gabriele and I started 
this discussion with an idea towards seeing what could be fixed in 
REBOL 3. I'm trying to come up with simple operations that parse 
could be extended with, the minimum necessary I hope. Bear with me 
or a moment.
Here's my first attempt at a pattern for recursion-safe temporaries:


use [var ...] [rule ...] ==> (tmp1: use [var ...] copy/deep [[rule 
...]]) tmp1


It would only work with a directly specified variable and rule block, 
and you should only use the temporaries directly in the rule block 
or they won't get rebound. Now, using REBOL 3's closure (probably 
better):


use [var ...] [rule ...] ==> (tmp1: do closure [/local var ...] [[rule 
...]]) tmp1


Of course this is just an example. An actual rewrite engine would 
premake the closure and insert it directly instead of making it in 
the rule and doing it. REBOL's existing function recursion support 
wouldn't work because the function returns before the rule is run.


I would prefer a native implementation of this operation if possible.
Anton
5-May-2006
[2193x2]
My save-vars just pushes the temp variable values onto a stack, and 
restore-vars pops them.
I'll upload it, hang on.
BrianH
5-May-2006
[2195]
How does it know which vars to push?
Anton
5-May-2006
[2196x4]
You tell it.
eg. 
rule: [
	recurse-into [var1 var2] some-rule
]

becomes:
rule: [
	save-vars [var1 var2]
	some-rule
	restore-vars [var1 var2]
]
(essentially)
http://home.wilddsl.net.au/anton/rebol/library/make-recursive-rule.r
BrianH
5-May-2006
[2200x2]
Earlier in this discussion I suggested parse rule closures...
The use operation above would be a good semantic model for parse 
rule closures with recursion-safe temporaries. Imagine a new datatype 
called rule!, a parse rule block bundled with a recursion-safe context 
for local variables. You would create one with a mezzanine like this:


parse-rule: func [locals [block!] rule [block!]] [make rule! reduce 
[locals rule]]


It would be the equivalent of a function made by the HAS mezzanine 
- local variables, no parameters. The rule would be prebound to the 
context and the context would be fixed up on recursion just like 
function contexts are. Any time parse would accept a rule block! 
it would also accept a rule! value.
Anton
5-May-2006
[2202x2]
That would be good.
Using a stack as I have is faster, because we are not creating new 
objects (or values if they are the same), but it's not quite as elegant 
as your parse-rule above.
BrianH
5-May-2006
[2204]
The trick is the addition of a new data type. It would allow the 
context to be fixed up internally. The rule! datatype would be a 
lot faster than even your stack model, and safer too. The use operation 
above would be a lot slower than your stacks though.
Anton
5-May-2006
[2205]
Yes, I think you should submit that for Rebol 3
BrianH
5-May-2006
[2206]
That and the simple operations I wrote above.
Volker
5-May-2006
[2207]
I use Antons method sometimes, with an aditional trick: the push 
saves thevarnames too, and the pop is just "pop".
Maxim
5-May-2006
[2208]
Can I vote in r3 to add to-any.. which stops at the first matching 
rules in the order of the block being parsed, as opposed to the order 
in the parse rules  This would make many rules simpler or make parse 
easier to use in Q&D stuff.
Anton
5-May-2006
[2209]
(actually, my method also pushes the var names as well as their values.)