-
Notifications
You must be signed in to change notification settings - Fork 0
/
ast.rb
1160 lines (959 loc) · 37 KB
/
ast.rb
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
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#! /usr/bin/ruby
############################################################
# Universidad Simón Bolívar
# CI3175: Traductores e interpretadores
#
# Bitiondo
#
# Análisis sintáctico y árbol sintáctico abstracto
#
# David Cabeza 13-10191 <[email protected]>
# Fabiola Martínez 13-10838 <[email protected]>
############################################################
# The classes in this file are nodes that are instantiated by the parser file.
# These classes contain a "print" function which is responsible for making the
# appropriate printing for each node in the requested format of the syntax tree.
# Each class has a meaning depending on the path it is taking. Their names
# indicate the meaning of each node.
# For more information about the meaning of each node, see the file parser.y
SemanticErrors = []
#-----------------------------------------------------------
#
#-----------------------------------------------------------
class BlockNode
attr_accessor :statements, :instructions
def initialize(statements, instructions)
@statements = statements
@instructions = instructions
@t = nil
end
#-----------------------------------------------------------
#
#-----------------------------------------------------------
def printAST(indent="")
if not SemanticErrors.empty?
return printSemanticErrors()
end
puts "#{indent}BEGIN"
if @statements
puts "#{indent+" "}SYMBOL TABLE"
@t.printSymTab(indent+" ")
end
if @instructions
@instructions.printAST(indent+" ")
end
puts "#{indent}END"
return
end
#-----------------------------------------------------------
#
#-----------------------------------------------------------
def check(parentTable)
@t = SymbolTable.new(parentTable)
if @statements
@statements.check(@t)
end
if @instructions
@instructions.check(@t)
end
end
#--------------------------------------------------------------------------#
# INTERPRETADOR DEL NODO BLOQUE
# -> Si hay declaraciones, estas son interpretadas.
# -> Si hay instrucciones, estas son interpretadas.
# Las declaraciones son interpretadas primero que las instrucciones.
#--------------------------------------------------------------------------#
def interprete(symbol_table)
if @statements then @statements.interprete(@t) end
if @instructions then @instructions.interprete(@t) end
end
end
#-----------------------------------------------------------
#
#-----------------------------------------------------------
class StatementsNode
attr_accessor :statementsNode, :statementNode
def initialize(statementsNode, statementNode)
@statementsNode = statementsNode
@statementNode = statementNode
end
def printAST(indent)
@statementsNode.printAST(indent)
@statementNode.printAST(indent)
end
def check(table)
@statementsNode.check(table)
@statementNode.check(table)
end
#--------------------------------------------------------------------------#
# INTERPRETADOR DEL NODO LISTA DE DECLARACIONES
# Se encarga de llamar recursivamente al interpretador de cada declaración
#--------------------------------------------------------------------------#
def interprete(symbol_table)
@statementsNode.interprete(symbol_table)
@statementNode.interprete(symbol_table)
end
end
class StatementNode
def initialize(type, identifier, value, size)
@type = type
@identifier = identifier
@value = value
@size = size
end
def printAST(indent)
puts "#{indent}DECLARE"
puts "#{indent+" "}type: #{@type.type}"
puts "#{indent+" "}variable: #{@identifier.value}"
if @size
puts "#{indent+" "}size:"
@size.printAST(indent+" ")
end
if @value
puts "#{indent+" "}value:"
@value.printAST(indent+" ")
end
end
def check(table)
# Case: Variable has been declared before
if table.isMember(@identifier.value)
SemanticErrors.push("Error en línea #{@type.locationinfo[:line]}, columna #{@type.locationinfo[:column]}: La variable '#{@identifier.value}' ya ha sido declarada en este alcance")
return
end
# Variable hasnt been declared before, insert in table proper way
if not @size and not @value
if @type.type == "int"
return table.insert(@identifier.value, @type.type, 0, nil)
elsif @type.type == "bool"
return table.insert(@identifier.value, @type.type, "false", nil)
else
return SemanticErrors.push("Error en la línea #{@identifier.locationinfo[:line]}, column #{@identifier.locationinfo[:column]}: La declaración de tipo bits debe tener un tamaño")
end
end
# Checking for variables of type bool a = false;
if not @size
if @type.type == @value.check(table)
if @value.instance_of? BinExpressionNode or @value.instance_of? UnaryExpressionNode
return table.insert(@identifier.value, @type.type, @value.value, nil)
elsif @value.instance_of? ConstExpressionNode
return table.insert(@identifier.value, @type.type, @value.value.value, nil)
end
else
SemanticErrors.push("Error en línea #{@type.locationinfo[:line]}, columna #{@type.locationinfo[:column]}: El tipo #{@type.type} de la declaración no coincide con el tipo de la asignación")
return
end
end
if @size and @value
if @value.check(table) != "bits"
return SemanticErrors.push("Error en línea #{@type.locationinfo[:line]}, columna #{@type.locationinfo[:column]}: El tipo #{@type.type} de la declaración no coincide con el tipo de la asignación")
elsif @size.check(table) != "int"
return SemanticErrors.push("Error en línea #{@type.locationinfo[:line]}, columna #{@type.locationinfo[:column]}: El tamaño de identificador tipo bits debe ser un entero")
else
return table.insert(@identifier.value, @type.type, @value.value, @size.value)
end
end
if @size
if @type.value != "bits"
SemanticErrors.push("Error en línea #{@type.locationinfo[:line]}, columna #{@type.locationinfo[:column]}: La variable #{@identifier.value} no puede ser declarada con el tipo #{@type.type}")
elsif @size.check(table) != "int"
SemanticErrors.push("Error en línea #{@type.locationinfo[:line]}, columna #{@type.locationinfo[:column]}: El tamaño de identificador tipo bits debe ser un entero")
else
# Inserta una declaración de tipo bits sin valor por defecto
# ya que el valor no es interpretado.
return table.insert(@identifier.value, @type.type, nil, @size.value)
end
end
end
#--------------------------------------------------------------------------#
# INTERPRETADOR DEL NODO DECLARACION
# Este interpretador tiene dos tareas principales, una es verificar si el
# tamaño indicado de una expresión declarada con tipo bits coincide con el
# tamaño de la inicialización. Para esto, el tamaño de la declaracion es
# interpretado y luego este es verificado con el de la inicialización.
# La otra tarea de este interpretador es insertar una expresion tipo bits
# en la tabla de símbolos una vez es interpretado el valor de su tamaño
#--------------------------------------------------------------------------#
def interprete(symbol_table)
if @value and not @size
symbol_table.update(@identifier.value, @type.type, @value.interprete(symbol_table), nil)
end
if @size
bits_decl_size = @size.interprete(symbol_table).to_i
# si hay valor, verificar el tamaño del valor con el de la declaración
if @value
bits_value_size = @value.value.value.length - 2 # No contar 0b
if bits_decl_size == bits_value_size
symbol_table.update(@identifier.value, @type.type, @value.value.value, bits_decl_size)
else
raise "El tamaño de la declaración no coincide con el tamaño de la inicialización"
end
# si no lo hay, como fue posible interpretar el tamaño, actualizar en la
# tabla de simbolos el valor por defecto.
elsif not @value
bits_expression = "0b" + "0" * bits_decl_size
symbol_table.update(@identifier.value, @type.type, bits_expression, bits_decl_size)
end
end
end
end
class InstructionsNode
attr_reader :indent
def initialize(instructionsNode, instructionNode)
@instructionsNode = instructionsNode
@instructionNode = instructionNode
@indent = " "
end
def printAST(indent)
@instructionsNode.printAST(indent)
@instructionNode.printAST(indent)
end
def check(parentTable)
@instructionsNode.check(parentTable)
@instructionNode.check(parentTable)
end
#--------------------------------------------------------------------------#
# INTERPRETADOR DEL NODO LISTA DE INSTRUCCIONES
# Se encarga de llamar recursivamente al interpretador de cada instrucción
#--------------------------------------------------------------------------#
def interprete(symbol_table)
@instructionsNode.interprete(symbol_table)
@instructionNode.interprete(symbol_table)
end
end
class AssignationNode
attr_reader :identifier, :position, :value
def initialize(identifier, position, value)
@identifier = identifier
@position = position
@value = value
end
def printAST(indent)
puts "#{indent}ASSIGN"
puts "#{indent+" "}variable: #{@identifier.value}"
if @position
puts "#{indent+" "}position:"
@position.printAST(indent+" ")
end
puts "#{indent+" "}value:"
@value.printAST(indent+" ")
end
def check(table)
if not table.lookup(@identifier.value)
SemanticErrors.push("Error: La variable #{@identifier.value} no esta declarada.")
return
end
if @position and @position.check(table) != "int"
SemanticErrors.push("Error en la línea #{@identifier.locationinfo[:line]}, columna #{@identifier.locationinfo[:column]}: La posición de la declaración no es un entero")
return
end
if table.find(@identifier.value).type != @value.check(table)
SemanticErrors.push("Error en la línea #{@identifier.locationinfo[:line]}, columna #{@identifier.locationinfo[:column]}: El tipo de la declaración no coincide con el de la asignación")
return
end
end
#--------------------------------------------------------------------------#
# INTERPRETADOR DEL NODO ASIGNACIÓN
# VARIABLE
# POSITION
# VALUE
#--------------------------------------------------------------------------#
def interprete(symbol_table)
if symbol_table.find(@identifier.value).type == "bool"
val = @value.interprete(symbol_table)
return symbol_table.update(@identifier.value, "bool", val,nil)
end
if symbol_table.find(@identifier.value).type == "int"
val = @value.interprete(symbol_table)
return symbol_table.update(@identifier.value, "int", val, nil)
end
if symbol_table.find(@identifier.value).type == "bits"
bits_declared_expression = symbol_table.find(@identifier.value)
if not @position
bits_value_expression_size = @value.interprete(symbol_table).length - 2
if bits_declared_expression.size == bits_value_expression_size
return symbol_table.update(@identifier.value, "bits", @value.interprete(symbol_table), bits_value_expression_size)
else
raise "Error. Declaraste una variable de un tamaño y el tamaño que le estas intentando asignar no es el mismo."
end
elsif @position
position_value = @position.interprete(symbol_table).to_i
if (0 <= position_value) && (position_value <= bits_declared_expression.size - 1)
if @value.interprete(symbol_table) == '0' or @value.interprete(symbol_table) == '1'
bits_declared_expression.value[position_value+2] = @value.interprete(symbol_table)
else
raise "A expresiones tipo bits solo se le pueden asignar ceros o unos."
end
else
raise "Estas tratando de asignar en una posicion que el bits no tiene."
end
end
end
end
end
class InputNode
def initialize(identifier)
@identifier = identifier
end
def printAST(indent)
puts "#{indent}INPUT"
puts "#{indent+" "}element:"
puts "#{indent+" "}variable: #{@identifier.value}"
end
def check(table)
if not table.lookup(@identifier.value)
SemanticErrors.push("Error en ĺínea #{@identifier.locationinfo[:line]}, columna #{@identifier.locationinfo[:column]}: la variable #{@identifier.value} no fue declarada.")
end
end
def interprete(symbol_table)
while(true)
# Read from standard input
userInput = $stdin.gets
# Remove newline character
userInput = userInput.chomp
# Remove beginning whitespaces
userInput = userInput.lstrip
# Remove trailing whitespaces
userInput = userInput.rstrip
# Se obtiene el tipo que tiene la entrada del usuario
input_type = getInputType(userInput)
# Se obtiene el tipo de la variable a la que va el input
variable_info = symbol_table.find(@identifier.value)
if(input_type != variable_info.type)
puts "Error no coincide el tipo de variable con el tipo de la entrada"
puts "Intentalo de nuevo"
next
else
if variable_info.type == "bits" and variable_info.size != userInput.length - 2
puts "Error. El tamano introducido para la variable tipo bits no coincide con el inicializado"
puts "Intentalo de nuevo"
next
else
if variable_info.type == "bits"
symbol_table.update(@identifier.value, variable_info.type, userInput, variable_info.size)
else
symbol_table.update(@identifier.value, variable_info.type, userInput, nil)
end
break
end
end
end
end
def getInputType(userInput)
integer_regex = /\A[0-9]+/
true_regex = /\Atrue\b/
false_regex = /\Afalse\b/
bitexpr_regex = /\A0b[0-1]+/
if (userInput =~ bitexpr_regex)
return 'bits'
elsif (userInput =~ true_regex or userInput =~ false_regex)
return 'bool'
elsif (userInput =~ integer_regex)
return 'int'
else
return nil
end
end
end
class OutputNode
def initialize(type, expressions)
@type = type
@expressions = expressions
end
def printAST(indent)
puts "#{indent}#{@type}"
puts "#{indent+" "}elements:"
@expressions.printAST(indent+" ")
end
def check(table)
@expressions.check(table)
end
def interprete(symbol_table)
if @type == "OUTPUT"
if @expressions.class == ExpressionsNode
@expressions.interprete(symbol_table)
elsif @expressions.class == ConstExpressionNode
print @expressions.interprete(symbol_table)
end
elsif @type == "OUTPUTLN"
if @expressions.class == ExpressionsNode
@expressions.interprete(symbol_table)
print "\n"
elsif @expressions.class == ConstExpressionNode
print @expressions.interprete(symbol_table)
end
end
end
end
class ExpressionsNode
attr_reader :indent
def initialize(expressionsNode, expressionNode)
@expressionsNode = expressionsNode
@expressionNode = expressionNode
@indent = " "
end
def printAST(indent)
@expressionsNode.printAST(indent)
@expressionNode.printAST(indent)
end
def check(table)
@expressionsNode.check(table)
@expressionNode.check(table)
if @expressionNode.check(table) == "variable"
if !table.lookup(@expressionNode.value.value)
return SemanticErrors.push("Error aqui: La variable #{@expressionNode.value.value} no fue declarada")
end
end
end
def interprete(symbol_table)
print @expressionsNode.interprete(symbol_table)
print @expressionNode.interprete(symbol_table)
end
end
class ConditionalNode
def initialize(expression, ins1, ins2=nil)
@expression = expression
@ins1 = ins1
@ins2 = ins2
end
def printAST(indent)
puts "#{indent}CONDITIONAL"
puts "#{indent+" "}CONDITION:"
@expression.printAST(indent+" ")
puts "#{indent+" "}INSTRUCTION:"
@ins1.printAST(indent+" ")
if @ins2
puts "#{indent+" "}OTHERWISE:"
@ins2.printAST(indent+" ")
end
end
def check(table)
if @expression.check(table) != "bool"
if @expression.instance_of? BinExpressionNode
SemanticErrors.push("Error en línea #{findLeftMostOperand(@expression.leftoperand).value.locationinfo[:line]}, columna #{findLeftMostOperand(@expression.leftoperand).value.locationinfo[:column]}: Instrucción 'if' espera expresion de tipo 'bool'")
elsif @expression.instance_of? UnaryExpressionNode
SemanticErrors.push("Error en línea #{@expression.operand.value.locationinfo[:line]}, columna #{@expression.operand.value.locationinfo[:column]}: Instrucción 'if' espera expresion de tipo 'bool'")
elsif
@expression.instance_of? ConstExpressionNode
SemanticErrors.push("Error en línea #{@expression.value.locationinfo[:line]}, columna #{@expression.value.locationinfo[:column]}: Instrucción 'if' espera expresion de tipo 'bool'")
else
SemanticErrors.push("Error en línea #{@expression.value.locationinfo[:line]}, columna #{@expression.value.locationinfo[:column]}: Instruccion 'if' espera expresion de tipo 'bool'")
end
end
@ins1.check(table)
if @ins2 then @ins2.check(table) end
end
def interprete(symbol_table)
if eval(@expression.interprete(symbol_table)) == false
if @ins2
@ins2.interprete(symbol_table)
end
else
@ins1.interprete(symbol_table)
end
end
end
class ForLoopNode
def initialize(assignation, exp1, exp2, instruction)
@assignation = assignation
@exp1 = exp1
@exp2 = exp2
@instruction = instruction
@t = nil
end
def printAST(indent)
puts "#{indent}FOR LOOP"
puts "#{indent+" "}INITIALIZATION:"
@assignation.printAST(indent+" ")
puts "#{indent+" "}CONDITION:"
@exp1.printAST(indent+" ")
puts "#{indent+" "}VARIABLE UPDATE:"
@exp2.printAST(indent+" ")
puts "#{indent+" "}INSTRUCTION:"
@instruction.printAST(indent+" ")
end
def check(table)
# The for loop has its own table with the loop variable
@t = SymbolTable.new(table)
# Get assignation needed parameters
id = @assignation.identifier.value
pos = @assignation.position
val = @assignation.value
# Case: Assignation is like b[0] = 1;
if pos
SemanticErrors.push("Error en línea #{@assignation.identifier.locationinfo[:line]}, columna #{@assignation.identifier.locationinfo[:column]}: Inicialización de #{id} incorrecta.")
return
end
# Case: assignation is not integer
if val.check(table) != "int"
SemanticErrors.push("Error en línea #{@assignation.identifier.locationinfo[:line]}: La asignación de la inicialización no es un entero")
return
end
# After making sure that the identifier was properly declarated
# in the for scope, make sure that the condition is boolean and
# identifier is detected as a declared variable if used in the
# condition.
table.insert(id, val.check(table), val, nil)
if @exp1.check(table) != "bool"
SemanticErrors.push("Error en línea #{findLeftMostOperand(@exp1).value.locationinfo[:line]}, columna #{findLeftMostOperand(@exp1).value.locationinfo[:column]}: El tipo de la condición debe ser booleano")
return
end
# identifier is not itself a symbol for this scope.
table.delete(id)
if @exp2.check(table) != "int"
SemanticErrors.push("Error en línea #{findLeftMostOperand(@exp2).value.locationinfo[:line]}, columna #{findLeftMostOperand(@exp2).value.locationinfo[:column]}: El tipo de la expresión que actualiza la variable (paso) debe ser entero")
end
if @instruction.instance_of? AssignationNode and @instruction.identifier.value == id
return SemanticErrors.push("Error en línea #{@instruction.identifier.locationinfo[:line]}, columna #{@instruction.identifier.locationinfo[:column]}: No es posible modificar la variable de iteración '#{id}' ")
end
@instruction.check(table)
end
def interprete(symbol_table)
# Asignamos a i el valor inicial del for para llevar conteo de la condicion
i = @assignation.value.interprete(symbol_table).to_i
@t.insert(@assignation.identifier.value, "int", i, nil)
step = @exp2.interprete(@t).to_i
# Repetimos codigo hasta que la condicion sea falsa
while(@exp1.interprete(@t))
# Aqui se ejecuta la instruccion
@instruction.interprete(@t)
i = i + step
@t.update(@assignation.identifier.value, "int", i, nil)
end
end
end
class ForbitsLoopNode
def initialize(bits_expression, identifier, expresion_int, direction, instruction)
@bits_expression = bits_expression
@identifier = identifier
@expresion_int = expresion_int
@direction = direction
@instruction = instruction
end
def printAST(indent)
puts "#{indent}FORBITS LOOP"
puts "#{indent+" "}BITS EXPRESSION:"
@bits_expression.printAST(indent+" ")
puts "#{indent+" "}IDENTIFIER:"
puts "#{indent+" "}value: #{@identifier.value}"
puts "#{indent+" "}FROM:"
@expresion_int.printAST(indent+" ")
puts "#{indent+" "}GOING:"
puts "#{indent+" "}value: #{@direction.value}"
puts "#{indent+" "}INSTRUCTION:"
@instruction.printAST(indent+" ")
end
def check(table)
if @bits_expression.check(table) != "bits"
SemanticErrors.push("Error en línea #{@identifier.locationinfo[:line]}: La expresión no es de tipo bits")
end
@instruction.check(table)
end
def interprete(symbol_table)
k = @expresion_int.interprete(symbol_table).to_i
if @direction.value == "higher"
@bits_expression.interprete(symbol_table)[2+k..-1].each_char do |c|
puts c
end
elsif @direction.value == "lower"
@bits_expression.interprete(symbol_table).reverse[k..1].each_char do |c|
puts c
end
end
end
end
class RepeatWhileLoopNode
def initialize(instruction1, condition, instruction2=nil)
@condition = condition
@instruction1 = instruction1
@instruction2 = instruction2
end
def printAST(indent)
puts "#{indent}REPEAT LOOP"
puts "#{indent+" "}INSTRUCTION:"
@instruction1.printAST(indent+" ")
puts "#{indent+" "}WHILE:"
@condition.printAST(indent+" ")
if @instruction2 then
puts "#{indent+" "}DO:"
@instruction2.printAST(indent+" ")
end
end
def check(table)
if @condition.check(table) != "bool"
if @condition.instance_of? BinExpressionNode
SemanticErrors.push("Error en línea #{findLeftMostOperand(@condition.leftoperand).value.locationinfo[:line]}, columna #{findLeftMostOperand(@condition.leftoperand).value.locationinfo[:column]}: Instrucción 'while' espera expresion de tipo 'bool'")
elsif @condition.instance_of? UnaryExpressionNode
SemanticErrors.push("Error en línea #{@condition.operand.value.locationinfo[:line]}, columna #{@condition.operand.value.locationinfo[:column]}: Instrucción 'while' espera expresion de tipo 'bool'")
elsif
@condition.instance_of? ConstExpressionNode
SemanticErrors.push("Error en línea #{@condition.value.locationinfo[:line]}, columna #{@condition.value.locationinfo[:column]}: Instrucción 'while' espera expresion de tipo 'bool'")
else
SemanticErrors.push("Instruccion 'while' espera expresion de tipo 'bool'")
end
end
@instruction1.check(table)
if @instruction2
@instruction2.check(table)
end
end
def interprete(symbol_table)
if not @instruction2
@instruction1.interprete(symbol_table)
while(eval(@condition.interprete(symbol_table)))
@instruction1.interprete(symbol_table)
end
else
cond = @instruction1.interprete(symbol_table)
if cond.class == TrueClass or cond.class == FalseClass then cond = @instruction1.interprete(symbol_table)
else cond = eval(@instruction1.interprete(symbol_table))
end
while(cond)
@instruction2.interprete(symbol_table)
@instruction1.interprete(symbol_table)
if cond.class == TrueClass or cond.class == FalseClass then cond = @instruction1.interprete(symbol_table)
else cond = eval(@instruction1.interprete(symbol_table))
end
end
end
end
end
class WhileLoopNode
def initialize(condition, instruction)
@condition = condition
@instruction = instruction
end
def printAST(indent)
puts "#{indent}WHILE LOOP"
puts "#{indent+" "}WHILE:"
@condition.printAST(indent+" ")
puts "#{indent+" "}DO:"
@instruction.printAST(indent+" ")
end
def check(table)
if @condition.check(table) != "bool"
if @condition.instance_of? BinExpressionNode
SemanticErrors.push("Error en línea #{findLeftMostOperand(@condition.leftoperand).value.locationinfo[:line]}, columna #{findLeftMostOperand(@condition.leftoperand).value.locationinfo[:column]}: Instrucción 'while' espera expresion de tipo 'bool'")
elsif @condition.instance_of? UnaryExpressionNode
SemanticErrors.push("Error en línea #{@condition.operand.value.locationinfo[:line]}, columna #{@condition.operand.value.locationinfo[:column]}: Instrucción 'while' espera expresion de tipo 'bool'")
elsif
@condition.instance_of? ConstExpressionNode
SemanticErrors.push("Error en línea #{@condition.value.locationinfo[:line]}, columna #{@condition.value.locationinfo[:column]}: Instrucción 'while' espera expresion de tipo 'bool'")
else
SemanticErrors.push("Instruccion 'while' espera expresion de tipo 'bool'")
end
end
@instruction.check(table)
end
#--------------------------------------------------------------------------#
# INTERPRETADOR DEL CICLO WHILE
# -> Interpreta la condición (es un booleano)
# -> Interpreta la instrucción
# -> Interpreta la condición en cada iteración para verificar la modificación
#--------------------------------------------------------------------------#
def interprete(sym_table)
while(@condition.interprete(sym_table)) do
@instruction.interprete(sym_table)
end
end
end
class BinExpressionNode
attr_reader :leftoperand, :rightoperand, :operator, :value
def initialize(leftoperand, rightoperand, operator)
@leftoperand = leftoperand
@rightoperand = rightoperand
@operator = operator
@value = "#{@leftoperand.value} #{@operator} #{@rightoperand.value}"
# Key is operand, array[0] is left expected operator,
# array[1] is right expected operator, array[2] is result
# type
@validOperations = {
'sum'=> ['PLUS', 'int', 'int', 'int'],
'sub'=> ['MINUS', 'int', 'int', 'int'],
'mul'=> ['MULTIPLICATION', 'int', 'int', 'int'],
'div'=> ['DIVISION', 'int', 'int', 'int'],
'mod'=> ['MODULUS', 'int', 'int', 'int'],
'lt'=> ['LESSTHAN', 'int', 'int', 'bool'],
'gt'=> ['GREATERTHAN', 'int', 'int', 'bool'],
'lte'=> ['LESSTHANEQUAL', 'int', 'int', 'bool'],
'gte'=> ['GREATERTHANEQUAL', 'int', 'int', 'bool'],
'eqint'=> ['ISEQUAL', 'int', 'int', 'bool'],
'difint'=> ['ISNOTEQUAL', 'int', 'int', 'bool'],
'eqbool'=> ['ISEQUAL', 'bool','bool', 'bool'],
'difbool'=> ['ISNOTEQUAL', 'bool', 'bool', 'bool'],
'eqbits'=> ['ISEQUAL', 'bits','bits', 'bool'],
'difbits'=> ['ISNOTEQUAL', 'bits', 'bits', 'bool'],
'andbit'=> ['ANDBITS', 'bits', 'bits', 'bits'],
'orbit'=> ['ORBITS', 'bits', 'bits', 'bits'],
'excl'=> ['TRANSFORM', 'bits', 'bits', 'bits'],
'rshift'=> ['LEFTSHIFT', 'bits', 'int', 'bits'],
'lshift'=> ['RIGHTSHIFT', 'bits', 'int', 'bits'],
'and'=> ['ANDBOOL', 'bool', 'bool', 'bool'],
'or'=> ['ORBOOL', 'bool', 'bool', 'bool'],
}
end
def printAST(indent)
puts "#{indent}BIN_EXPRESSION:"
puts "#{indent+" "}operator: #{@operator}"
puts "#{indent+" "}left operand:"
@leftoperand.printAST(indent+" ")
puts "#{indent+" "}right operand:"
@rightoperand.printAST(indent+" ")
end
def check(table)
operandoDeclarado = true
if @leftoperand.check(table) == "variable"
if table.lookup(@leftoperand.value.value)
leftType = table.find(@leftoperand.value.value).type
else
operandoDeclarado = false
SemanticErrors.push("Error en línea #{findLeftMostOperand(@leftoperand).value.locationinfo[:line]}, columna #{findLeftMostOperand(@leftoperand).value.locationinfo[:column]}: El operando #{@leftoperand.value.value} no fue declarado")
return
end
else
leftType = @leftoperand.check(table)
end
if @rightoperand.check(table) == "variable"
if table.lookup(@rightoperand.value.value)
rightType = table.find(@rightoperand.value.value).type
else
operandoDeclarado = false
SemanticErrors.push("Error en línea #{findLeftMostOperand(@rightoperand).value.locationinfo[:line]}, columna #{findLeftMostOperand(@rightoperand).value.locationinfo[:column]}: El operando #{@rightoperand.value.value} no fue declarado")
return
end
else
rightType = @rightoperand.check(table)
end
if operandoDeclarado
@validOperations.each do |op, value|
if leftType == value[1] and @operator == value[0] and rightType == value[2]
return value[3]
end
end
end
if @leftoperand.instance_of? BinExpressionNode
SemanticErrors.push("Error en línea #{findLeftMostOperand(@leftoperand).value.locationinfo[:line]}: #{@operator} no puede funcionar con estos tipos")
return
elsif @leftoperand.instance_of? UnaryExpressionNode
SemanticErrors.push("Error: #{@operator} no puede funcionar con estos tipos")
return
else
SemanticErrors.push("Error en línea #{findLeftMostOperand(@leftoperand).value.locationinfo[:line]}, columna #{@leftoperand.value.locationinfo[:column]}: #{@operator} no puede funcionar con estos tipos")
return
end
end
#--------------------------------------------------------------------------#
# INTERPRETADOR DE LAS EXPRESIONES BINARIAS
# '(' EXPRESSION ')' < Delimitador de expresiones >
# EXPRESION '*' EXPRESION < Multiplicación con enteros >
# EXPRESION '/' EXPRESION < División con enteros >
# EXPRESION '%' EXPRESION < Módulo con enteros >
# EXPRESION '+' EXPRESION < Suma con enteros >
# EXPRESION '-' EXPRESION < Resta con enteros >
# EXPRESION '<<' EXPRESION < Shift a la izquierda de expresiones con bits >
# EXPRESION '>>' EXPRESION < Shift a la derecha de expresiones con bits >
# EXPRESION '<' EXPRESION < Menor que con enteros>
# EXPRESION '<=' EXPRESION < Menor o igual que con enteros>
# EXPRESION '>' EXPRESION < Mayor que entre con enteros >
# EXPRESION '>=' EXPRESION < Mayor o igual que >
# EXPRESION '==' EXPRESION < Equivalencia entre enteros, entre booleanos o entre bits >
# EXPRESION '!=' EXPRESION < Inequivalencia entre enteros, entre booleanos, o entre bits >
# EXPRESION '&' EXPRESION < Conjunción entre bits >
# EXPRESION '|' EXPRESION < Disyuncíón entre bits >
# EXPRESION '^' EXPRESION < Exclusión entre bits >
# EXPRESION '&&' EXPRESION < Conjunción entre booleanos >
# EXPRESION '||' EXPRESION < Disyunción entre booleanos >
#--------------------------------------------------------------------------#
def interprete(sym_table)
if (@operator == "MULTIPLICATION") then
return @leftoperand.interprete(sym_table).to_i * @rightoperand.interprete(sym_table).to_i
elsif (@operator == "DIVISION") then
opizq = @leftoperand.interprete(sym_table).to_i
opdech = @rightoperand.interprete(sym_table).to_i
if (opdech == 0)
raise "Error. División por cero."
end
return opizq / opdech
elsif (@operator == "MODULUS") then
return @leftoperand.interprete(sym_table).to_i % @rightoperand.interprete(sym_table).to_i
elsif (@operator == "PLUS") then
return @leftoperand.interprete(sym_table).to_i + @rightoperand.interprete(sym_table).to_i
elsif (@operator == "MINUS") then
return @leftoperand.interprete(sym_table).to_i - @rightoperand.interprete(sym_table).to_i
elsif (@operator == "LEFTSHIFT")
return "0b"+((@leftoperand.interprete(sym_table).to_i(2) << @rightoperand.interprete(sym_table).to_i(2)).to_s(2))
elsif (@operator == "RIGHTSHIFT")
return "0b"+((@leftoperand.interprete(sym_table).to_i(2) >> @rightoperand.interprete(sym_table).to_i(2)).to_s(2))
elsif (@operator == "LESSTHAN") then
return @leftoperand.interprete(sym_table).to_i < @rightoperand.interprete(sym_table).to_i
elsif (@operator == "LESSTHANEQUAL")
return @leftoperand.interprete(sym_table).to_i <= @rightoperand.interprete(sym_table).to_i
elsif (@operator == "GREATERTHAN")
return @leftoperand.interprete(sym_table).to_i > @rightoperand.interprete(sym_table).to_i
elsif (@operator == "GREATERTHANEQUAL")
return @leftoperand.interprete(sym_table).to_i >= @rightoperand.interprete(sym_table).to_i
elsif (@operator == "ISEQUAL")
return @leftoperand.interprete(sym_table).to_i == @rightoperand.interprete(sym_table).to_i
elsif (@operator == "ISNOTEQUAL")
return @leftoperand.interprete(sym_table).to_i != @rightoperand.interprete(sym_table).to_i
elsif (@operator == "ANDBITS")
return "0b"+((@leftoperand.interprete(sym_table).to_i(2) & @rightoperand.interprete(sym_table).to_i(2)).to_s(2))
elsif (@operator == "ORBITS")
return "0b"+((@leftoperand.interprete(sym_table).to_i(2) | @rightoperand.interprete(sym_table).to_i(2)).to_s(2))
elsif (@operator == "EXCLUSIVE")
return "0b"+((@leftoperand.interprete(sym_table).to_i(2) ^ @rightoperand.interprete(sym_table).to_i(2)).to_s(2))
elsif (@operator == "ANDBOOL")
return (@leftoperand.interprete(sym_table) && @rightoperand.interprete(sym_table))
elsif (@operator == "ORBOOL")
return (@leftoperand.interprete(sym_table) || @rightoperand.interprete(sym_table))
end
raise "Hubo un error al verificar una operación binaria"
end
end
class UnaryExpressionNode
attr_reader :operand, :operator, :value
def initialize(operand, operator)
@operand = operand
@operator = operator
@value = "#{operator} #{operand.value}"
@validUnaryOperations = {
'-'=> ['UMINUS', 'int', 'int'],
'@'=> ['TRANSFORM', 'int', 'bits'],
'!'=> ['NOT', 'bool', 'bool'],
'$'=> ['BITREPRESENTATION', 'bits', 'int'],
'~'=> ['NOTBITS', 'bits', 'bits']