-
Notifications
You must be signed in to change notification settings - Fork 0
/
cuadruplos.rb
469 lines (368 loc) · 12.4 KB
/
cuadruplos.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
# -*- coding: utf-8 -*-
class Cuadruplo
attr_accessor :operator, :op1, :op2, :memory_id
def initialize(operator, op1, op2, memory_id)
@operator = operator
@op1 = op1
@op2 = op2
@memory_id = memory_id
end
def to_a
[operator, op1, op2, memory_id]
end
end
class Function
attr_accessor :name, :index, :parameters, :return_type, :memory_id
def initialize(name, return_type, index)
@name = name
@return_type = return_type
@index = index
end
def add_parameter(param_id, param_type)
parameters << [param_id, param_type]
end
def parameters
@parameters ||= []
end
def void?
return_type == 'void'
end
end
# inicializa una nueva dirección de memoria para una nueva variable
def new_memory_id(data_type)
cont = instance_variable_get("@cont_#{data_type}")
memory_id = "#{data_type[0]}:#{cont}"
instance_variable_set("@cont_#{data_type}", cont + 1)
memory_id
end
# crea un nuevo objeto cuadruplo, lo agrega a la pila e incrementa el contador de saltos
def pushCuadruplo(*args)
q = Cuadruplo.new(*args)
@quadruples.push(q)
@saltos += 1
end
# redirige el primer cuadruplo al main en ejecución
def goto_main
pushCuadruplo("goto", nil, nil, nil)
end
# agrega el end al final del programa
def statement_end
pushCuadruplo("end", nil, nil, nil)
end
# rellena el primer cuadruplo con la casilla donde comienza el programa
def fill_main
@quadruples[0].memory_id = @saltos
end
# Crea la nueva variable y verifica si la variable ya habia sido declarada antes.
def define_variable(name, type, dimension=1)
scope = @current_scope
key = [scope, name].compact.join('.').to_sym
if @symbols.has_key?(key)
raise "'#{name}' has already been declared"
else
value = nil
dimension.to_i.times do |i|
new_key = i > 0 ? [key, i].join('.').to_sym : key
memory_id = new_memory_id(type)
@symbols[new_key] = [name, type, value, memory_id]
end
end
end
# obtiene una variable de la lista o si no se encuentra regresa error undefined variable.
def get_variable(name, scope = @current_scope)
name_with_scope = variable_with_scope(name, scope)
@symbols[name_with_scope] || @symbols[name.to_sym] or
raise "undefined variable '#{name}'"
end
# crea una constante nueva o obtiene la direccion de la constante
def get_constant(value, data_type)
@constants[value.to_sym] ||= new_memory_id(data_type)
end
# verifica si una constante se encuentra declarada
def constant?(memory_id)
@constants.has_value?(memory_id)
end
# se crea una variable de acuerdo al scope.
def variable_with_scope(name, scope)
[scope, name].compact.join('.').to_sym
end
# asigna la direccion de momoria que traera el valor al asignar una variable
def assign(variable_name, index = nil)
if index
array1(variable_name, index)
else
variable = get_variable(variable_name)
memory_id = variable[3]
var_type = variable[1]
@pila_operandos.push(memory_id)
@pila_tipos.push(var_type)
end
end
# se obtiene la dirección de memoria para un array previamente declarado dependiendo del subindex
def array1(variable_name, subindex)
index_type = @pila_tipos.pop
if index_type != 'int'
raise "wrong index data type for array '#{variable_name}': expected int, got #{index_type}"
end
array = get_variable(variable_name)
data_type = array[1]
op1 = array[3]
op2 = @pila_operandos.pop
memory_id = new_memory_id(data_type)
pushCuadruplo('+', "(#{op1})", op2, memory_id)
@pila_operandos.push(memory_id)
@pila_tipos.push(data_type)
end
# verifica que la funcion no haya sido declarada previamente, guarda el tipo de retorno,
# y agrega la funcion al directorio de procedimientos
def func1(return_type)
if @functions.has_key?(@current_scope.to_sym)
raise "function '#{@current_scope}' has already been declared"
end
function = Function.new(@current_scope, return_type, @saltos)
@functions[@current_scope.to_sym] = function
end
# guarda los parametros declarados en la funcion
def func2(param_id, param_type)
@functions[@current_scope.to_sym].add_parameter(param_id, param_type)
define_variable(param_id, param_type)
end
# verifica que el tipo de dato de retorno sea el correcto y genera el cuadruplo del ret
def func3(block_text)
function = @functions[@current_scope.to_sym]
has_return = !(String(block_text) =~ /return/).nil?
if !function.void? && !has_return
raise "missing return statement for '#{function.return_type}'"
end
pushCuadruplo('ret', nil, nil, nil)
end
# genera el cuadruplo para el return con el resultado
def return_expression
function = @functions[@current_scope.to_sym]
if function.return_type == 'void'
raise "'void' function should not have return statement"
end
result_type = @pila_tipos.pop
unless result_type == function.return_type
raise "wrong return type in function '#{function.name}': " +
"expected #{function.return_type}, got #{result_type}"
end
result = @pila_operandos.pop
pushCuadruplo('return', result, nil, nil)
end
# verifica que la funcion llamada exista en el directorio de procedimientos,
# y genera el cuadruplo para el era
def call_func1(function_name)
unless @functions.has_key?(function_name.to_sym)
raise "undefined function '#{function_name}'"
end
@cont_params = 0
@current_function = @functions[function_name.to_sym]
pushCuadruplo('era', function_name, nil, nil)
end
# genera los cuadruplos necesarios para pasarle parametros a la funcion
def call_func2
param_value = @pila_operandos.pop
param_type = @pila_tipos.pop
function = @current_function
func_param_id, func_param_type = function.parameters[@cont_params]
begin
_name, param_type, _value, param_memory_id = get_variable(param_value)
rescue
param_memory_id = param_value
end
unless func_param_type
raise "wrong number of arguments (must be #{function.parameters.size})"
end
unless func_param_type == param_type
raise "wrong parameter type: expected #{func_param_type}, got #{param_type}"
end
func_var = get_variable(func_param_id, function.name)
func_var_memory_id = func_var[3]
pushCuadruplo('param', func_var_memory_id, nil, param_memory_id)
@cont_params += 1
end
# crea los cuadruplos para mover el apuntador a la funcion
def call_func3
function = @current_function
pushCuadruplo('goSub', function.name, nil, function.index)
if (return_type = function.return_type) && return_type != 'void'
memory_id = new_memory_id(return_type)
@pila_tipos.push(return_type)
@pila_operandos.push(memory_id)
pushCuadruplo('=', nil, nil, memory_id)
end
end
# se introduce a pila de operandos la variable y a pila de tipos el tipo de la variable
def exp1(value, data_type)
if data_type == "id"
_name, data_type, _value, memory_id = get_variable(value)
else
memory_id = get_constant(value, data_type)
end
@pila_operandos.push(memory_id)
@pila_tipos.push(data_type)
end
# introduce el operador a la pila de operadores, se usa para el paso 2, 3 y 8
def exp2(operador)
@pila_operadores.push(operador)
end
# compara los tipo para determinar si es una operación permitida
def get_result_type(operator, op1_type, op2_type)
result_type = cubo_semantico[op1_type][op2_type][operator]
case result_type
when "int", "float", "string", "boolean"
# do nothing
else
raise "illegal operation #{operator} between #{op1_type} and #{op2_type}"
end
result_type
end
# se genera el cuadruplo correspondiente a la operación si es que esta fué valida
def exp4(operators=['+','-','||'])
return unless operators.include?(operator = @pila_operadores.last)
@pila_operadores.pop
op2_type = @pila_tipos.pop
op1_type = @pila_tipos.pop
result_type = get_result_type(operator, op1_type, op2_type)
op2 = @pila_operandos.pop
op1 = @pila_operandos.pop
memory_id = new_memory_id(result_type)
@pila_operandos.push(memory_id)
@pila_tipos.push(result_type)
pushCuadruplo(operator, op1, op2, memory_id)
end
# se genera el cuadruplo correspondiente a la operación si es que esta fué valida
def exp5
exp4(['*','/','&&'])
end
# se introduce fondo falso para prioridad de operaciones
def exp6
@pila_operadores.push("(")
end
# se extrae el fondo falso de la pila de operadores
def exp7
@pila_operadores.pop
end
# se genera el cuadruplo correspondiente dependiendo de la operación o la asignacion
def exp9(operators=['=', '==', '>', '<', '<=', '>=', '!='])
return unless operators.include?(operator = @pila_operadores.last)
@pila_operadores.pop
op2_type = @pila_tipos.pop
op1_type = @pila_tipos.pop
result_type = get_result_type(operator, op1_type, op2_type)
if operator == '='
op1 = @pila_operandos.pop
op2 = nil
memory_id = @pila_operandos.pop
else
op2 = @pila_operandos.pop
op1 = @pila_operandos.pop
memory_id = new_memory_id(result_type)
end
pushCuadruplo(operator, op1, op2, memory_id)
@pila_operandos.push(memory_id)
@pila_tipos.push(result_type)
end
# verifica que el valor recibido de la expresion sea booleando y genera el jump en falso
def if1
@check_bool = @pila_tipos.pop
if @check_bool != "boolean"
raise "If statement should recive a boolean value not a #{@check_bool}"
else
cuadruplo_jump = @pila_operandos.pop
pushCuadruplo("gotoF", cuadruplo_jump, nil , nil)
@pila_saltos.push(@saltos-1)
end
end
# se genera el goto en caso de haber sido ser verdadero salta hasta el final del estatuto
def if2
pushCuadruplo("goto",nil, nil, nil)
jump_to_false = @pila_saltos.pop
@quadruples[jump_to_false].memory_id = @saltos
@pila_saltos.push(@saltos-1)
end
# se registra el final del estatuto y se rellenan el salto al cuadruplo correspondiente
def if3
@inserta_fin = @pila_saltos.pop
@quadruples[@inserta_fin].memory_id = @saltos
end
# se crean cuadruplos de control que en ejecución se van decrementando
# para controlar el numero de veces que se realiza el estatuto
def times1
check_int = @pila_tipos.pop
if check_int != "int"
raise "Times expression must recive int value not #{check_int}"
else
init_id = @pila_operandos.pop
memory_id = "t:i:#{@cont_int}"
@cont_int += 1
op_1_memory_id = get_constant('1', 'int')
op_2_memory_id = get_constant('0', 'int')
pushCuadruplo('=', init_id, nil ,memory_id)
@pila_saltos.push(@saltos)
pushCuadruplo('-', memory_id, op_1_memory_id , memory_id)
pushCuadruplo('>=', memory_id, op_2_memory_id,"c:b:#{@cont_boolean}")
pushCuadruplo("gotoF", "c:b:#{@cont_boolean}", nil, nil)
@pila_saltos.push(@saltos-1)
@cont_boolean += 1
end
end
# se genera el salto para volver a ejecutar el estatuto
def times2
go_false = @pila_saltos.pop
return_times = @pila_saltos.pop
pushCuadruplo("goto", nil , nil, return_times)
@quadruples[go_false].memory_id = @saltos
end
# genera el cuadruplo para la función gets (input)
def r_gets
memory_id = new_memory_id('string')
pushCuadruplo("gets", nil, nil, memory_id)
end
# genera el cuadruplo para la funcion print (output)
def r_print
memory_id = @pila_operandos.pop
@pila_tipos.pop
pushCuadruplo("print", memory_id, nil, nil)
end
# cambia el color de la linea que dibuja la tortuga
def turtle_change_color(color)
memory_id = get_constant(color, 'string')
pushCuadruplo('change_color', memory_id, nil, nil)
end
# cambia la direccion de la tortuga
def turtle_change_direction(direction)
memory_id = get_constant(direction, 'string')
pushCuadruplo('change_direction', memory_id, nil, nil)
end
# hace que la tortuga dibuje un rectangulo
def turtle_draw_rectangle
w_type, h_type = @pila_tipos.pop, @pila_tipos.pop
unless w_type == h_type && w_type == 'int'
raise "wrong data type for turtle drawing: expected int, got #{w_type}"
end
op2 = @pila_operandos.pop
op1 = @pila_operandos.pop
pushCuadruplo('draw_rectangle', op1, op2, nil)
end
# envia a pantalla una alerta con un mensaje
def turtle_talk
_data_type = @pila_tipos.pop
memory_id = @pila_operandos.pop
pushCuadruplo('talk', memory_id, nil, nil)
end
# genera dinamicamente los cuadruplos de las funciones basicas de la tortuga:
# pen_up, pen_down, reset, move
def turtle_send(method_name, expected_data_type = nil)
if expected_data_type
data_type = @pila_tipos.pop
result_type = get_result_type("+", expected_data_type, data_type)
unless data_type == expected_data_type || result_type == expected_data_type
raise "wrong data type for turtle movement: expected #{expected_data_type}, got #{data_type}"
end
memory_id = @pila_operandos.pop
end
memory_id ||= nil
pushCuadruplo(method_name, memory_id, nil, nil)
end