summaryrefslogtreecommitdiff
path: root/MLKLexicalEnvironment.m
blob: af2a103f27b784d59de558d1c4113a24978d936f (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
/* -*- mode: objc; coding: utf-8 -*- */
/* Toilet Lisp, a Common Lisp subset for the Étoilé runtime.
 * Copyright (C) 2008  Matthias Andreas Benkard.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or (at
 * your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#import <Foundation/NSArray.h>
#import <Foundation/NSDictionary.h>
#import <Foundation/NSException.h>
#import <Foundation/NSNull.h>
#import <Foundation/NSSet.h>
#import <Foundation/NSString.h>
#import <Foundation/NSThread.h>

#import "MLKCompiledClosure.h"
#import "MLKCons.h"
#import "MLKEnvironment.h"
#import "MLKLexicalContext.h"
#import "MLKLexicalEnvironment.h"
#import "MLKPackage.h"
#import "MLKParenReader.h"
#import "MLKReadtable.h"
#import "MLKSymbol.h"
#import "MLKInteger.h"
#import "MLKValuesFunction.h"
#import "runtime-compatibility.h"
#import "util.h"


#define MAKE_ENVIRONMENT(variable, parent, parent_member)               \
  [[MLKEnvironment alloc]                                               \
    initWithParent:(parent                                              \
                    ? (id) parent_member                                \
                    : nil)                                              \
    values:variable]


static MLKLexicalEnvironment *global_environment;


@implementation MLKLexicalEnvironment
+(void) initialize
{
  NSMutableDictionary *vars = [NSMutableDictionary dictionary];
  NSMutableDictionary *funs = [NSMutableDictionary dictionary];

  MLKPackage *cl = [MLKPackage findPackage:@"COMMON-LISP"];
  //  MLKPackage *sys = [MLKPackage findPackage:@"TOILET-SYSTEM"];

  [vars setObject:[NSNull null] forKey:[NSNull null]];
  [vars setObject:[cl intern:@"T"] forKey:[cl intern:@"T"]];

  [funs setObject:LAUTORELEASE ([[MLKValuesFunction alloc] init])
        forKey:[cl intern:@"VALUES"]];

  global_environment = [[self alloc] initWithParent:nil
                                     variables:vars
                                     functions:funs];
}

-(MLKLexicalEnvironment *) initWithParent:(MLKLexicalEnvironment *)aContext
                                variables:(NSDictionary *)vars
                                functions:(NSDictionary *)functions
{
  self = [super init];
  LASSIGN (_parent, (aContext ? aContext : global_environment));
  _variables = MAKE_ENVIRONMENT(vars, _parent, _parent->_variables);
  _functions = MAKE_ENVIRONMENT(functions, _parent, _parent->_functions);
  return self;
}

+(MLKLexicalEnvironment *) environmentWithParent:(MLKLexicalEnvironment *)context
                                       variables:(NSDictionary *)vars
                                       functions:(NSDictionary *)functions
{
  return LAUTORELEASE ([[self alloc] initWithParent:context
                                    variables:vars
                                    functions:functions]);
}

+(MLKLexicalEnvironment *) globalEnvironment
{
  return global_environment;
}

-(NSSet *) variables
{
  return [_variables bindings];
}

-(NSSet *) functions
{
  return [_functions bindings];
}

-(id) valueForSymbol:(MLKSymbol *)symbol
{
  if (![_variables environmentForSymbol:symbol]
      || [_variables environmentForSymbol:symbol] == global_environment->_variables)
    {
      id cell = [[MLKLexicalContext globalContext] bindingForSymbol:symbol];
      return [cell value];
    }
  else
    {
      return [_variables valueForSymbol:symbol];
    }
}

-(void) setValue:(id)value forSymbol:(MLKSymbol *)symbol
{
  if (![_variables environmentForSymbol:symbol]
      || [_variables environmentForSymbol:symbol] == global_environment->_variables)
    {
      id cell = [[MLKLexicalContext globalContext] bindingForSymbol:symbol];
      [cell setValue:value];
    }
  else
    {
      [_variables setValue:value forSymbol:symbol];
    }
}

-(void) addValue:(id)value forSymbol:(MLKSymbol *)symbol
{
  if (self == global_environment)
    {
      id cell = [[MLKLexicalContext globalContext] bindingForSymbol:symbol];
      [cell setValue:value];
    }
  else
    {
      [_variables addValue:value forSymbol:symbol];
    }
}

-(void) addBindingForSymbol:(MLKSymbol *)symbol
{
  [_variables addBindingForSymbol:symbol];
}

-(BOOL) boundp:(MLKSymbol *)symbol
{
  return [_variables boundp:symbol];
}

-(void) makunbound:(MLKSymbol *)symbol
{
  [_variables makunbound:symbol];
}

-(id) functionForSymbol:(MLKSymbol *)symbol
{
  return [_functions valueForSymbol:symbol];
}

-(void) setFunction:(id)value forSymbol:(MLKSymbol *)symbol
{
  [_functions setValue:value forSymbol:symbol];

  if ([_functions environmentForSymbol:symbol] == global_environment->_functions)
    {
      // If we're changing the global environment, we need to
      // interoperate with compiled code.  In this case, be sure to set
      // the global function cell.
      //
      // Note that this reserves memory for the function cell that is
      // never freed, which is why we do it for global function bindings
      // only!
      id (**cell)(void *, ...) = [[MLKLexicalContext globalContext]
                                   functionCellForSymbol:symbol];
      void **closure_data_cell = [[MLKLexicalContext globalContext]
                                   closureDataPointerForSymbol:symbol];
      if ([value isKindOfClass:[MLKCompiledClosure class]])
        {
          *cell = (id (*)(void *, ...))[value code];
          *closure_data_cell = [value closureData];
        }
      else
        {
          *cell = MLKInterpretedFunctionTrampoline;
          *closure_data_cell = value;
        }
    }
}

-(void) addFunction:(id)value forSymbol:(MLKSymbol *)symbol
{
  [_functions addValue:value forSymbol:symbol];

  if (self == global_environment)
    {
      // If we're changing the global environment, we need to
      // interoperate with compiled code.  In this case, be sure to set
      // the global function cell.
      //
      // Note that this reserves memory for the function cell that is
      // never freed, which is why we do it for global function bindings
      // only!
      id (**cell)(void *, ...) = [[MLKLexicalContext globalContext]
                                   functionCellForSymbol:symbol];
      void **closure_data_cell = [[MLKLexicalContext globalContext]
                                   closureDataPointerForSymbol:symbol];
      if ([value isKindOfClass:[MLKCompiledClosure class]])
        {
          *cell = (id (*)(void *, ...))[value code];
          *closure_data_cell = [value closureData];
        }
      else
        {
          *cell = MLKInterpretedFunctionTrampoline;
          *closure_data_cell = value;
        }
    }
}

-(BOOL) fboundp:(MLKSymbol *)symbol
{
  return [_functions boundp:symbol];
}

-(void) fmakunbound:(MLKSymbol *)symbol
{
  [_functions makunbound:symbol];
}

-(void) dealloc
{
  LRELEASE (_variables);
  LRELEASE (_functions);
  LRELEASE (_parent);
  [super dealloc];
}
@end