forked from mathk/gst-thunder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRFunction.st
117 lines (75 loc) · 1.99 KB
/
IRFunction.st
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
Instruction subclass: IRFunction [
IRFunction class >> function: aSymbol return: aType [
^ self function: aSymbol parameters: #() return: aType
]
IRFunction class >> function: aSymbol parameters: anArray return: aType [
^ self new
function: aSymbol parameters: anArray return: aType;
yourself
]
IRFunction class >> new [
^ self basicNew
initialize;
yourself
]
| args return name instructions variables |
initialize [
variables := Dictionary new.
instructions := OrderedCollection new
]
function: aSymbol return: aType [
self function: aSymbol parameters: #() return: aType
]
function: aSymbol parameters: anArray return: aType [
| keywords |
name := aSymbol.
args := OrderedCollection new.
return := aType.
keywords := name keywords.
anArray do: [ :each |
args addLast: (Variable named: each key type: each value) ]
]
name [
^ name
]
arguments [
^ args
]
argumentAt: anInteger [
^ self arguments at: anInteger
]
argumentDo: aOneArgBlock [
^ self arguments do: aOneArgBlock
]
return [
^ return
]
variables [
^ variables keys
]
variable: aSymbol type: aType [
variables at: aSymbol ifPresent: [ self error: 'Register ', aSymbol, ' is already in' ].
variables at: aSymbol put: (Variable named: aSymbol type: aType)
]
variableAt: aSymbol [
^ self variableAt: aSymbol ifAbsent: [ self ]
]
variableAt: aSymbol ifAbsent: aBlock [
^ variables at: aSymbol ifAbsent: aBlock
]
variablesDo: aOneArgBlock [
^ variables do: aOneArgBlock
]
instructions [
^ instructions
]
addInstruction: anInstruction [
self instructions add: anInstruction
]
instructionsDo: aOneArgBlock [
self instructions do: aOneArgBlock
]
accept: aVisitor [
aVisitor visitFunction: self
]
]