1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503
|
* Section 0 - '''[Sugar]'''
* Section 1 - '''[Sugar command macros]'''
* Section 2 - '''[Sugar syntax macros]'''
* Section 3 - '''[Sugar transformers]''' (what you are reading)
'''Tail call optimization'''
We saw two kind of macros: command macros, and syntax macros.
They actually are the same thing, just the second type
can be registered to be called with any command name.
This kind of macros are already quite powerful, but their
environment is limited to commands. To perform more complex
works we need a more general source transformation tool, that
can see a whole script at once, process it, and return a new one.
In [Sugar] this kind of macros, are called transformer macros,
and are exported to the user in two different ways: the first
is an API with just two commands:
* sugar::scriptToList - translates the text of a script into a Tcl list representation of this script.
* sugar::listToScript - translates a list representation of a script, in the script text.
There are other procedures that helps to work with the script in its list
representation, but the core are this two commands. Using this API the
programmer may create new versions of [proc] that are able to do some
kind of transformation, to create more complex static checkers, optimizations,
and many other tasks about analysis and transformation of source code.
The second way to use transformers, is to register a transformer
macro with the sugar::transformermacr command. It's very similar
to a syntax macro, that instead to be called for every command processed,
is called for every script. We will see transformer macros in the next
section, for now we will see how to directly use the API to write
custom versions of [proc].
To show transformers we will develop a new version of [proc], called
[[tailrec_proc]], able to translate normal Tcl code that contains
tail recursive calls, in a semantically equivalent script that runs
with a different space complexity (and actually even a bit faster).
To write transformers is exactly like to write macros, we need before
to figure how to do the transformation, so the first question is if
it's possible to find an algorithm to automatically find and translate
tail recursive calls in Tcl code.
I guess that if you are still reading this document, you perfectly
know what tail recursion is, but it's better to go incremetally to
be more clear. We start writing a recursive call that counts
from N to 0.
======
proc counter n {
puts $n
if {$n} {
counter [expr {$n-1}]
}
}
======
[[counter 3]] will output 3 2 1 0, and so on. The procedure has a
recursive tail call at the end of the if block. as you can see, the
[[counter $n]] call is the last call that will be executed in the
procedure. This means that the procedure is semantically equivalent
to this (with an immagination effort, I'll use [goto] in Tcl):
======
proc counter n {
start:
puts $n
if {$n} {
set n [expr {$n-1}]
goto start
}
}
======
Because Tcl does not have [goto], is it still possible to jump at
the start of the procedure to reiterate in some way? It is, using
[while], we can write a (this time valid) Tcl procedure with
the tail call optimized away:
======
proc counter n {
while 1 {
puts $n
if {$n} {
set n [expr {$n-1}]
continue
}
break ; # note the final break
}
}
======
Now that the [while] 1 is sorrounding the procedure code, we can
use [continue] to jump at the start of the procedure. And it will
work inside conditionals: we at least need to ensure that tail
calls will be optimized inside [if] branches, as nested as the
programmer like, if there are tail recursive call inside.
There is another problem, as we did with the 'n' variable in
the previous example, we need to setup the formal arguments of
the procedure to the right value before to call [continue] and
jump at the start. The basic work to do is to
set every parameter to the value passed at it's position in
the tail call, so if the recursive tail call of a procedure foobar
accepting {x y z} as arguments is called with A B C, like in:
======
foobar A B C
======
We will translate it to:
======
set x A
set y B
set z C
continue
======
Actually, it's not enough. The following is the recursive GCD
algorithm:
======
proc gcd {a b} {
if {$b == 0} {
return $a
} else {
gcd $b [expr {$a%$b}]
}
}
======
According to the previous rule, we may translate the recursive
call to:
======
set a $b
set b [expr {$a%$b}]
continue
======
But this will not work, because $a gets replaced with $b before
[expr] can compute $a%$b. To avoid this problem, we need to use
some temp variable, and translate the script in this way:
======
set __t0 $b
set __t1 [expr {$a%$b}]
set a $__t0
set b $__t1
continue
======
Note that the creation of variables before a tail call is unlikely
to create collision problems because even if the procedure were
using a __t0 variable, it's value is no longer useful, but still in the
real implementation you may want to call the temp variables
__tailcall__t0 or something like this.
Finally we know how our transformation will look like:
* take the procedure body (fake step.. ;)
* recursively search for tail calls at "top level" and inside conditionals.
* translate every call as commands to set formal parameters and then call [continue]
* add a 'break' command at the end of the code
* use it as [while] 1 script argument
And we are done. It's as simple as a nightmare to do without
a macro system capable to translate the script in a simple to
process form, and then back again to a script, that's why
[Sugar] provides this API.
Now you may wonder what's this easy to process form that is returned
by sugar::scriptToList. Actually it is a list (representing the whole
script) of lists (representing every command), where every element
of a command is represented by a two-elements list, the first element
being the type, and the second the value. The following types are
possible:
SPACE - a valid argument separator in a Tcl script, like " ", or "\t".
TOK - a valid argument in a Tcl script, that can be just a string, or a command or variable substitution form, or any mix of they.
EOL - a valid command separator in a Tcl script, like "\n", or ";".
Spaces are reported varbatim, so a transformer is able to process the
script without to mess with the identation. Commands may be empty,
with just an element of type EOL. This happens when there are
newlines or ";" between differnet commands:
======
# like this
puts foo
puts bar ; ; ; puts foobar
======
This means that a transformer is able to create semantic from spaces
in extreme cases, like in a transformer that simulates the [Python] way
to create blocks of code.
That's an example of output of sugar::scriptToList.
For the following code:
======
{
puts [string length $foo]
puts $foo$bar
if {$j} {
command arg arg
}
}
======
the equivalent translation to a list is:
{EOL {
}}
{SPACE { }} {TOK puts} {SPACE { }} {TOK {[string length $foo]}} {EOL {
}}
{SPACE { }} {TOK puts} {SPACE { }} {TOK {$foo$bar}} {EOL {
}}
{SPACE { }} {TOK if} {SPACE { }} {TOK {{$j}}} {SPACE { }} {TOK {{
command arg arg
}}} {EOL {
}}
{EOL {}}
The API guarantees that the opposite transformation from list to a
script is performed by mere concatenation of all the tokens, so
"types" are information only useful for the transformer, but
not for sugar::listToScript.
There is an important thing to note in the example output.
The code of [if] is not automagically converted to a list.
This is intentional, because if you want to, you can call again
scriptToList against it, or better use a normal registered
transformer macro instead to use the API directly.
It depends on your transformation, sometimes
it's better to have only the first level, and recusively transform
to scripts only the wanted parts. When instead we want to do some
processing in every part of the Tcl program that is a script, we
register a transformer macro, that like command and syntax macros
are automatically called against arguments that are known to be
scripts (thanks to the macros we already shown).
(Note: there is a middle point between this two extremes: the programmer
may want to perform a transformation that's not global to the
whole Tcl program, so doesn't want to register a transformer macro
but to use the low level API, but for the spirit of the transformation
it can be useful to call it recursively in all the tokens that
are scripts. Actually it's possible to register a transformer macro,
then call sugar::expand $myscript, and then unregister the macro, but
I'll experiment with other ways as well in the future. Another solution
is to add some redundant code inside the transformer that checks if
the command name is while/if/for/switch/ .... and so on, or write
a function that is able to automatically recognize such commands)
In the case of our transformer for tail recursive procedures
the low-level API is just fine.
Now we are ready to show the actual [tailrec_proc] implementation:
======
proc tailrec_proc {name arglist body} {
# Convert the script into a Tcl list
set l [sugar::scriptToList $body]
# Convert tail calls
set l [tailrec_convert_calls $name $arglist $l]
# Add the final break
lappend l [list {TOK break} {EOL "\n"}]
# Convert it back to script
set body [sugar::listToScript $l]
# Add the surrounding while 1
set body "while 1 {$body}"
# Call [proc]
uplevel proc [list $name $arglist $body]
}
# Convert tail calls. Helper for tailrec_proc.
# Recursively call itself on [if] script arguments.
proc tailrec_convert_calls {name arglist code} {
# Search the last non-null command.
set lastidx -1
for {set j 0} {$j < [llength $code]} {incr j} {
set cmd [lindex $code $j]
if {[sugar::indexbytype $cmd TOK 0] != -1} {
set lastidx $j
set cmdidx [sugar::indexbytype $cmd TOK 0]
}
}
if {$lastidx == -1} {
return $code
}
set cmd [lindex $code $lastidx]
set cmdname [lindex $cmd $cmdidx 1]
if {$cmdname eq $name} {
set c 0
set recargs [lrange [sugar::tokens $cmd] 1 end]
foreach v $recargs {
set t [list [list TOK set] [list SPACE " "] \
[list TOK __t$c] [list SPACE " "]\
[list TOK $v] [list SPACE " "]\
[list EOL "\n"]]
set code [linsert $code $lastidx $t]
incr c
incr lastidx
}
set c 0
foreach a $arglist {
set a [lindex $a 0]
set t [list [list TOK set] [list SPACE " "] \
[list TOK $a] [list SPACE " "]\
[list TOK \$__t$c] [list SPACE " "]\
[list EOL "\n"]]
set code [linsert $code $lastidx $t]
incr c
incr lastidx
}
lset code $lastidx [list [list TOK continue] [list EOL "\n"]]
} elseif {$cmdname eq {if}} {
for {set j 0} {$j < [llength $cmd]} {incr j} {
if {[lindex $cmd $j 0] ne {TOK}} continue
switch -- [lindex $cmd $j 1] {
if - elseif {
incr j 2
}
else {
incr j 1
}
default {
set script [lindex $code $lastidx $j 1]
set scriptcode [sugar::scriptToList [lindex $script 0]]
set converted [tailrec_convert_calls $name $arglist $scriptcode]
lset code $lastidx $j 1 [list [sugar::listToScript $converted]]
}
}
}
}
return $code
}
======
Well.. I wrote a lot, to show this, but actually is very simple
as you can see. Usually transformers have to deal with a particular
construct, and use recursion to deal with nested levels.
This transformer uses sugar::token command, it's very simple,
just it takes a list representing a command and returns only
the values of the elements of type TOK as a list.
With this list as input:
{SPACE { }} {TOK puts} {SPACE { }} {TOK {[string length $foo]}} {EOL {}}
It returns this list:
======
puts {[string length $foo]}
======
It's just a facility to have access to the meaningful parts of the
command in a simple way.
That's a more complex example of what the macro does. Writing
the following ackermann function implementation:
======
tailrec_proc ack {m n} {
if {$m == 0} {
return [expr {$n + 1}]
} elseif {$n == 0} {
ack [expr {$m - 1}] 1
} else {
ack [expr {$m - 1}] [ack $m [expr {$n - 1}]]
}
}
======
The procedure body is translated to:
======
while 1 {
if {$m == 0} {
return [expr {$n + 1}]
} elseif {$n == 0} {
set __t0 [expr {$m - 1}]
set __t1 1
set m $__t0
set n $__t1
continue
} else {
set __t0 [expr {$m - 1}]
set __t1 [ack $m [expr {$n - 1}]]
set m $__t0
set n $__t1
continue
}
break
}
======
Of the three calls to [[ack]], only one is left (the only that
is not tail-recursive).
Note that it's possible to extend the macro to optimize recursive
tail calls inside [switch], but actually [if] is the thing
that's really needed to write most tail recursive functions.
Other two examples of tail calls:
======
tailrec_proc dohanoi {n to from using} {
if {$n > 0} {
dohanoi [expr {$n-1}] $using $from $to
moveit $from $to
dohanoi [expr {$n-1}] $to $using $from
}
}
======
and
======
tailrec_proc show_list l {
if {[llength $l]} {
puts [lindex $l 0]
show_list [lrange $l 1 end]
}
}
======
The programmer should care to don't use [return], because the
macro for semplicity does not check for "return [call ...]":
with tail recursive calls return is always not need.
'''4) Transformer macros allows to implement features that may otherwise require changes to the compiler itself. It's possible, for example, to translate a program in one semantically equivalent, but with different space complexity.'''
'''[if] with C-like block indentation'''
While it's quite ideal to build a specialized version of [proc],
the API from transformer should not be called to perform
general transformations in the whole source code at all levels.
Instead, it's possible to register a transformer macro with
this API:
======
sugar::transformermacro foobar list {
... do something with the list representation of the script ...
return $list
}
======
The transformer macro will be called for every part of the script
that is recognized as a script, and is re-called after other macro
expansions (actually all the macros are guaranteed to be called
in turn until there is something to expand, so you don't have to
care about the registered order, at the same time you *can't* write
different macros conceived to run at a given order, the behaviour of
every macro must be self-contained).
The following is an example of a simple transformer macro that
translates occurrences of [if] indented with a newline before
the expression and the body:
======
if {$test}
{
set a [+ 1 2]; # Of course, + can be a simple command macro.
}
======
The above code will be translated to:
======
if {$test} \
{
set a ....
}
======
It's a very *bad* example of what you can do with transfomers :)
The macro doesn't implement support for elseif/else and so on,
but it's trivial to add. That's the implementation:
======
sugar::transformermacro sillyindentation list {
for {set i 0} {$i < [llength $list]} {incr i} {
set tokens [::sugar::tokens [lindex $list $i]]
if {[llength $tokens] == 2 && [lindex $tokens 0] eq {if}} {
set nexttokens [::sugar::tokens [lindex $list [expr {$i+1}]]]
if {[llength $nexttokens] == 1 && [string index [lindex $nexttokens 0] 0] eq "\{"} {
lset list $i end 1 " "
}
}
}
return $list
}
======
That's all for now. Positive and negative feedbacks are welcomed.
<<categories>> Tutorial
|