This file is indexed.

/usr/lib/parrot/3.6.0/include/hllmacros.pir is in parrot 3.6.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
# Copyright (C) 2006-2009, Parrot Foundation.

=head1 High Level Language Macros

These macros are to make it easier to write readable and maintainable PIR by
preprocessing common HLL forms into their low level PIR forms.  These are
B<not> actually high level constructs, but merely preprocessor directives.

=head2 Conditionals

When a conditional is labeled as a parameter, the valid syntax is limited.
Only code snippets such as C<$P0>, C<< $I0 <= 42 >>, C<null $P0>, are allowed.
Groupings such as C<< $I0 <= 42 || $I0 > 142 >> are not allowed, although it is
possible to write a macro that contains two parameters representing
conditionals. It's important to avoid the { } delimiter on the conditionals
since a newline in the conditional renders the generated PIR invalid.

=head2 Code blocks

The macro preprocessor is very simple.  But it allows using braces to delimit
code that contains commas or right parenthesis, C<)>, without causing an error.
This allows for nesting macros to near infinite depths.  And macro parameter
that uses a comma or right parenthesis must be enclosed in braces.

=head1 Macros

=over 4

=item C<.NL()>

This is the most simple of macros.  Because PIR statements are delimited by
newlines, putting multiple statements, no matter how simple or short, is not
allowed.  Sometimes for readability you wish to have two on the same line.
Using C<.NL()> in a line will insert a linebreak.

=cut


.macro NL()
.endm


=item C<.If(conditional, code)>

Runs the code in C<code> if C<conditional> is true.

=cut

.macro If(conditional, code)
    unless .conditional goto .$endif
    .code
.label $endif:
.endm


=item C<.Unless(conditional, code)>

Runs the code in C<code> if C<conditional> is false.

=cut

.macro Unless(conditional, code)
    if .conditional goto .$endif
    .code
.label $endif:
.endm


=item C<.IfElse(conditional, true, false)>

Runs the code in C<true> if C<conditional> is true, otherwise runs the code in
C<false>.

=cut

.macro IfElse(conditional, true, false)
    unless .conditional goto .$else
    .true
    goto .$endif
.label $else:
    .false
.label $endif:
.endm


=item C<.While(conditional, code)>

Runs the code in C<code> as long as C<conditional> is true.

=cut

.macro While(conditional, code)
.label $beginwhile:
    unless .conditional goto .$endwhile
    .code
    goto .$beginwhile
.label $endwhile:
.endm


=item C<.DoWhile(code, conditional)>

Runs the code in C<code> once, and then as long as C<conditional> is true.

=cut

.macro DoWhile(code, conditional)
.label $beginwhile:
    .code
    if .conditional goto .$beginwhile
.endm

=item C<.Loop(code)>

Runs the code in C<code> forever.

=cut

.macro Loop(code)
.label $beginloop:
    .code
    goto .$beginloop
.endm

=item C<.For(start, conditional, continue, code)>

First C<start> is executed, such as C<i = 0>, and then if the C<conditional> is
true, runs C<code>, and then the C<continue> code, such as C<inc i>.

=cut

.macro For(start, conditional, cont, code)
    .start
.label $beginfor:
    unless .conditional goto .$endfor
    .code
    .cont
    goto .$beginfor
.label $endfor:
.endm


=item C<.Foreach(name, array, code)>

A simple foreach loop.  Given the aggregate C<array>, which B<must> be a
register, it iterates through the array, putting each value into C<name> to
work with in C<code>.

=cut

# TT #911 - the unlikely to conflict variable names here must be
# replaced with the .macro_local syntax.
.macro Foreach(name, array, code)
    .local int __Foreach__local__i
    .local int __Foreach__local__k
    __Foreach__local__i = 0
    __Foreach__local__k = .array
.label $beginforeach:
    unless __Foreach__local__i < __Foreach__local__k goto .$endforeach
    .name = .array[__Foreach__local__i]
    .code
    inc __Foreach__local__i
    goto .$beginforeach
.label $endforeach:
.endm


=back

=head1 Examples

=head2 Good morning!

"Hello, world!" is so mundane, make it more fun.

    .include "tm.pasm"
    .include "hllmacros.pir"
    .sub main :main
        $I0 = time
        $P0 = decodelocaltime $I0
        $I0 = $P0[.TM_HOUR]
        .IfElse($I0 < 12,{
            print "Good morning!\n"
        },{
            .IfElse($I0 > 18,{
                print "Good night!\n"
            },{
                print "Good evening!\n"
            })
        })
    .end

=head2 Simple looping

A simple demonstration of the For loop.

    .include "hllmacros.pir"
    .sub main :main
        print "For\n"
        .For(i = 0 , i < 5, inc i,
            print "\t"
            print i
            print "\n"
        )
    .end

A simple demonstration of the Foreach loop.

    .include "hllmacros.pir"
    .sub main :main
        print "Foreach\n"
        .local pmc array, letter
        array = new 'ResizablePMCArray'
        push array, "a"
        push array, "b"
        push array, "c"
        .Foreach(letter, array, {
            print "\t"
            print letter
            print " "
            .IfElse(letter == 'b',
                print "is b\n"
            ,
                print "isn't b\n"
            )
        })
    .end

Using C<.NL()>

    .local int i, j
    .For({i = 0 .NL() j = 11}, i < j, {inc i .NL() dec j }, {
        print i
        print "\t"
        print j
        print "\n"
    })


=head1 Caveats

The .Foreach macro is not nestable within itself currently.  You can use other macros inside a .Foreach loop, and the .Foreach loop can be nested inside other macros.

    .Foreach(foo, bar, {
        .Foreach(foobar, foo, {
            print foobar
        })
    })

Will not run as you would expect.

=cut

# Local Variables:
#   mode: pir
#   fill-column: 100
# End:
# vim: expandtab shiftwidth=4 ft=pir: