summaryrefslogtreecommitdiff
path: root/src/cgil/rlhc-go.lm
blob: 1eb2a61bf1a9f120e8e4845d990cf43883923489 (plain)
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
include 'ril.lm'

namespace out_go
	token _IN_ /''/
	token _EX_ /''/

	lex
		token comment /
			'//' any* :> '\n' |
			'/*' any* :>> '*/'
		/

		token id
			/[a-zA-Z_][a-zA-Z_0-9]*/

		token number /
			[0-9]+
		/

		token symbol /
			'!' | '#' | '$' | '%' | '&' | '(' | ')' | '*' |
			'+' | ',' | '-' | '.' | '/' | ':' | ';' | '<' |
			'=' | '>' | '?' | '@' | '[' | ']' | '^' | '|' |
			'~' /

		literal `{ `}

		token string /
				'"' ( [^"\\] | '\\' any ) * '"' |
				"'" ( [^'\\] | '\\' any ) * "'"
			/

		ignore
			/[ \t\v\r\n]+/
	end

	def item
		[comment]
	|	[id]
	|	[number]
	|	[symbol]
	|	[string]
	|	[`{ _IN_ item* _EX_ `} ]

	def out_go
		[_IN_ _EX_ item*]
end



namespace go_gen

	global _: parser<out_go::out_go>

	void tok_list( TL: host::tok* )
	{
		for Tok: host::tok in repeat(TL) {
			switch Tok
			case Stmt {
				<<	"{
					"	[stmt_list( StmtList )]
					"}
			}
			case Expr {
				<<	"([expr( Expr )])"
			}
			case Escape {
				Str: str = $Tok
				<<	"[Str.suffix( 1 )]"
			}
			default {
				<<	[Tok]
			}
		}
	}

	void embedded_host( EmbeddedHost: embedded_host )
	{
		switch EmbeddedHost
		case Expr
		{
			<<	['(' tok_list( TL ) ')']
		}
		case Stmt
		{
			<<	['{' tok_list( TL ) '}\n']
		}
		case Bare
		{
			<<	[tok_list( TL )]
		}
	}

	void expr_factor( ExprFactor: expr_factor )
	{
		switch ExprFactor
		case EmbeddedHost
		{
			<<	[embedded_host(embedded_host)]
		}
		case Paren
		{
			<<	['( ' expr(expr) ' )']
		}
		case ArraySub
		{
			<<	[ident '[ ' expr( expr ) ' ]']
		}
		case Offset
		{
			<<	"int([expr(expr)])
		}
		case Deref
		{
			<<	[ base '[ ' expr( expr ) ' ]' ]
		}
		case True
		{
			<<	"true"
		}
		case False
		{
			<<	"false"
		}
		case Nil
		{
			<<	"0"
		}
		case Access
		{
			embedded_host(embedded_host)
			expr_factor(_expr_factor)
		}
		case Cast
		{
			<<	[type(type) '( ' expr_factor(_expr_factor) ' )' ]
		}
		default {
			# Catches cases not specified
			<<	[ExprFactor]
		}
	}

	void lvalue( ExprFactor: lvalue )
	{
		switch ExprFactor
		case [EH: embedded_host]
		{
			<<	[embedded_host(EH)]
		}
		case [ident `[ TL: expr `]]
		{
			<<	[ident '[' expr( TL ) ']']
		}
		case [E1: embedded_host `-> E2: lvalue]
		{
			embedded_host( E1 )
			lvalue( E2 )
		}
		default {
			# Catches cases not specified
			<<	[ExprFactor]
		}
	}

	void expr_factor_op( ExprFactorOp: expr_factor_op )
	{
		switch ExprFactorOp
		case [B: `! expr_factor_op]
		{
			<<	['! ' expr_factor_op( _expr_factor_op )]
		}
		case [T: `~ expr_factor_op]
		{
			<<	['^ ' expr_factor_op( _expr_factor_op )]
		}
		case [expr_factor]
		{
			<<	[expr_factor( ExprFactorOp.expr_factor )]
		}
	}

	void expr_bitwise( ExprBitwise: expr_bitwise )
	{
		switch ExprBitwise
		case [expr_bitwise A: `& expr_factor_op]
		{
			<<	[expr_bitwise( _expr_bitwise ) ' & ' expr_factor_op( expr_factor_op )]
		}
		case [expr_factor_op]
		{
			<<	[expr_factor_op( ExprBitwise.expr_factor_op )]
		}
	}

	void expr_mult( ExprMult: expr_mult )
	{
		switch ExprMult
		case [expr_mult T: `* expr_bitwise]
		{
			<<	[expr_mult( _expr_mult ) ' * ' expr_bitwise( expr_bitwise )]
		}
		case [expr_bitwise]
		{
			<<	[expr_bitwise( expr_bitwise )]
		}
	}

	void expr_add( ExprAdd: expr_add )
	{
		switch ExprAdd
		case [expr_add Op: add_op expr_mult]
		{
			<<	[expr_add( _expr_add ) ' ' Op ' ' expr_mult( expr_mult )]
		}
		case [expr_mult]
		{
			<<	[expr_mult( ExprAdd.expr_mult )]
		}
	}

	void expr_shift( ExprShift: expr_shift )
	{
		switch ExprShift
		case [expr_shift Op: shift_op expr_add]
		{
			<<	[expr_shift( _expr_shift ) ' ' Op ' ' expr_add( expr_add )]
		}
		case [expr_add]
		{
			<<	[expr_add( expr_add )]
		}
	}

	void expr_test( ExprTest: expr_test )
	{
		switch ExprTest
		case [expr_test Op: test_op expr_shift]
		{
			<<	[expr_test( _expr_test ) ' ' Op ' ' expr_shift( expr_shift )]
		}
		case [expr_shift]
		{
			<<	[expr_shift( ExprTest.expr_shift )]
		}
	}

	void expr( Expr: expr )
	{
		expr_test( Expr.expr_test )
	}

	void type( Type: type )
	{
		switch Type
		case S8
			<<	['int8']
		case S16
			<<	['int16']
		case S32
			<<	['int32']
		case S64
			<<	['int64']
		case S128
			<<	['long long']
		default
			<<	[Type]
	}

	void number( Number: number )
	{
		switch Number
		case Unsigned
			<<	[uint]
		default
			<<	[Number]
	}

	void num_list( NumList: num_list )
	{
		number( NumList.number )
		for CommaNum: comma_num in NumList {
			<<	[', ' number( CommaNum.number )]
		}
	}

	# Go must have {} around if and for statements. We strip any blocks from
	# these statments and force our own.
	void strip_block_stmt( Stmt: stmt )
	{
		if match Stmt [`{ StmtList: stmt* `}]
			stmt_list(StmtList)
		else
			stmt( Stmt )
	}

	void stmt( Stmt: stmt )
	{
		switch Stmt
		case [EH: embedded_host]
		{
			<<	[embedded_host(EH)]
		}
		case [A: static_array] {
			<<	"var [A.ident] = \[\] "
				"[type(A.type)] { [num_list(A.num_list)] }
		}
		case [V: static_value] {
			<<	"var [V.ident] [type(V.type)] = [V.number]
				"var _ = [V.ident]
		}
		case [
				'if' O: `( IfExpr: expr C: `) IfStmt: stmt
		] {
			# if-statements with only the if clause can go out as an if.
			<<	"if [expr(IfExpr)] {
				"	[strip_block_stmt(IfStmt)]
				"}
		}
		case [
				'if' O: `( IfExpr: expr C: `) IfStmt: stmt
				ElseIfClauseList: else_if_clause* ElseClauseOpt: else_clause?
		] {
			# If the if-statement has more than just an if clause it goes out as a switch.
			<<	"if [expr( IfExpr )] {
				"	[strip_block_stmt( IfStmt )]

			for ElseIfClause: else_if_clause in repeat( ElseIfClauseList ) {
				match ElseIfClause
					['else if (' ElseIfExpr: expr ')' ElseIfStmt: stmt]

				<<	"} else if [expr(ElseIfExpr)] {
					"	[strip_block_stmt(ElseIfStmt)]
			}

			if ( match ElseClauseOpt ['else' ElseStmt: stmt] ) {
				<<	"} else {
					"	[strip_block_stmt(ElseStmt)]
			}

			<<	"}
		}
		case ["while ( TRUE )" WhileStmt: stmt] {
			<<	"for {
				"	[strip_block_stmt(WhileStmt)]
				"}
		}
		case ['while' '(' WhileExpr: expr ')' WhileStmt: stmt] {
			<<	"for [expr(WhileExpr)] {
				"	[strip_block_stmt(WhileStmt)]
				"}
		}
		case ['switch' '(' SwitchExpr: expr ')' '{' StmtList: stmt* '}'] {
			<<	"switch [expr(SwitchExpr)] {
				"	[stmt_list(StmtList)]
				"}
		}
		case [ExprExpr: expr `;] {
			<<	[expr(ExprExpr) ';']
		}
		case [B: block] {
			<<	"{
				"	[stmt_list(B.StmtList)]
				"}
		}
		case [D: declaration]
		{
			<<	"var [D.ident] [type(D.type)]"

			if match D.opt_init ['=' Expr: expr] {
				<<	"  = [expr(Expr)]"
			}

			<<	['\n']
		}
		case [ES: export_stmt]
		{
			<<	"#define [ES.ident] [number(ES.number)]
		}
		case [fallthrough]
		{
			<<	"fallthrough
		}
		case [Index: index_stmt]
		{
			<<	"var [Index.ident] int"

			if match Index.opt_init ['=' Expr: expr] {
				<<	" = [expr(Expr)]"
			}

			<<	['\n']
		}
		case [CB: case_block]
		{
			<<	"case [expr( CB.expr )]:
				"	[stmt_list( CB._repeat_stmt )]
		}
		case [DB: default_block]
		{
			<<	"default:
				"	[stmt_list( DB._repeat_stmt )]
		}
		case [CL: case_label]
		{
			<<	"case [expr( CL.expr )]:
		}
		case [AS: assign_stmt]
		{
			<<	"[lvalue(AS.LValue) AS.assign_op expr(AS.expr)];
		}
		default {
			# catches unspecified cases
			<<	"[Stmt]
		}
	}

	void stmt_list( StmtList: stmt* )
	{
		for Stmt: stmt in repeat( StmtList )
			stmt( Stmt )
	}

	void trans( Output: stream, Start: start )
	{
		_ = new parser<out_go::out_go>()
		Input: _input = _->gets()
		Input->auto_trim(true)

		if ( Start.opt_bom.bom )
			send Output [Start.opt_bom.bom]

		stmt_list( Start._repeat_stmt )

		GO: out_go::out_go = _->finish()

		if GO {
			send Output
				[GO]
		}
		else {
			send stderr
				"failed to parse output: [_->error]
		}

	}
end

void trans( Output: stream, Start: start )
{
	go_gen::trans( Output, Start )
}

include 'rlhc-main.lm'