-
Notifications
You must be signed in to change notification settings - Fork 2
/
Value.cpp
764 lines (679 loc) · 18.4 KB
/
Value.cpp
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
#include <jetscript/Value.h>
#include <jetscript/JetContext.h>
using namespace Jet;
#undef Yield
#ifdef _DEBUG
#ifndef DBG_NEW
#define DBG_NEW new ( _NORMAL_BLOCK , __FILE__ , __LINE__ )
#define new DBG_NEW
#endif
#define _CRTDBG_MAP_ALLOC
#include <crtdbg.h>
#endif
Generator::Generator(JetContext* context, Closure* closure, unsigned int args)
{
state = GeneratorState::Suspended;
this->closure = closure;
//need to push args onto the stack
this->stack = new Value[closure->prototype->locals];
//pass in arguments
if (args <= closure->prototype->args)
{
for (int i = closure->prototype->args-1; i >= 0; i--)
{
if (i < args)
stack[i] = context->stack.Pop();
else
stack[i] = Value();
}
}
else if (closure->prototype->vararg)
{
stack[closure->prototype->locals-1] = context->NewArray();
auto arr = &stack[closure->prototype->locals-1]._array->data;
arr->resize(args - closure->prototype->args);
for (int i = args-1; i >= 0; i--)
{
if (i < closure->prototype->args)
stack[i] = context->stack.Pop();
else
(*arr)[i] = context->stack.Pop();
}
}
else
{
for (int i = args-1; i >= 0; i--)
{
if (i < closure->prototype->args)
stack[i] = context->stack.Pop();
else
context->stack.Pop();
}
}
this->curiptr = 0;//set current position to start of function
}
void Generator::Yield(JetContext* context, unsigned int iptr)
{
this->state = GeneratorState::Suspended;
//store the iptr
this->curiptr = iptr+1;
this->lastyielded = context->stack.Peek();
//store stack
for (unsigned int i = 0; i < this->closure->prototype->locals; i++)
this->stack[i] = context->sptr[i];
}
unsigned int Generator::Resume(JetContext* context)
{
if (this->state == GeneratorState::Dead)
throw RuntimeException("Cannot resume dead generator");
if (this->state == GeneratorState::Running)
throw RuntimeException("Cannot resume active generator");
this->state = GeneratorState::Running;
//restore stack
for (unsigned int i = 0; i < this->closure->prototype->locals; i++)
context->sptr[i] = this->stack[i];
if (this->curiptr == 0)
context->stack.Pop();
return this->curiptr;
}
Value::Value()
{
this->type = ValueType::Null;
}
Value::Value(JetString* str)
{
if (str == 0)
return;
type = ValueType::String;
length = strlen(str->data);
_string = str;
}
Value::Value(JetObject* obj)
{
this->type = ValueType::Object;
this->_object = obj;
}
Value::Value(JetArray* arr)
{
type = ValueType::Array;
this->_array = arr;
}
Value::Value(double val)
{
type = ValueType::Number;
value = val;
}
Value::Value(int val)
{
type = ValueType::Number;
value = val;
}
Value::Value(JetNativeFunc a)
{
type = ValueType::NativeFunction;
func = a;
}
Value::Value(Closure* func)
{
type = ValueType::Function;
_function = func;
}
Value::Value(JetUserdata* userdata, JetObject* prototype)
{
this->type = ValueType::Userdata;
this->_userdata = userdata;
this->_userdata->prototype = prototype;
}
JetObject* Value::GetPrototype()
{
//add defaults for string and array
switch (type)
{
case ValueType::Array:
return 0;
case ValueType::Object:
return this->_object->prototype;
case ValueType::String:
return 0;
case ValueType::Userdata:
return this->_userdata->prototype;
default:
return 0;
}
}
void Value::AddRef()
{
switch (type)
{
case ValueType::Array:
case ValueType::Object:
if (this->_object->refcount == 0)
this->_object->context->gc.nativeRefs.push_back(*this);
case ValueType::String:
case ValueType::Userdata:
if (this->_object->refcount == 255)
throw RuntimeException("Tried to addref when count was at the maximum of 255!");
this->_object->refcount++;
break;
case ValueType::Function:
if (this->_function->refcount == 0)
this->_function->prototype->context->gc.nativeRefs.push_back(*this);
if (this->_function->refcount == 255)
throw RuntimeException("Tried to addref when count was at the maximum of 255!");
this->_function->refcount++;
}
}
void Value::Release()
{
switch (type)
{
case ValueType::String:
case ValueType::Userdata:
if (this->_object->refcount == 0)
throw RuntimeException("Tried to subtract from reference count of 0!");
this->_object->refcount--;
break;
case ValueType::Array:
case ValueType::Object:
if (this->_object->refcount == 0)
throw RuntimeException("Tried to subtract from reference count of 0!");
this->_object->refcount--;
if (this->_object->refcount == 0)
{
//remove me from the list
//swap this and the last then remove the last
JetContext* context = this->_object->context;
if (context->gc.nativeRefs.size() > 1)
{
for (unsigned int i = 0; i < context->gc.nativeRefs.size(); i++)
{
if (context->gc.nativeRefs[i] == *this)
{
context->gc.nativeRefs[i] = context->gc.nativeRefs[context->gc.nativeRefs.size()-1];
break;
}
}
}
this->_object->context->gc.nativeRefs.pop_back();
}
break;
case ValueType::Function:
if (this->_function->refcount == 0)
throw RuntimeException("Tried to subtract from reference count of 0!");
this->_function->refcount--;
if (this->_function->refcount == 0)
{
//remove me from the list
//swap this and the last then remove the last
JetContext* context = this->_function->prototype->context;
if (context->gc.nativeRefs.size() > 1)
{
for (unsigned int i = 0; i < context->gc.nativeRefs.size(); i++)
{
if (context->gc.nativeRefs[i] == *this)
{
context->gc.nativeRefs[i] = context->gc.nativeRefs[context->gc.nativeRefs.size()-1];
break;
}
}
}
context->gc.nativeRefs.pop_back();
}
}
}
std::string Value::ToString(int depth) const
{
switch(this->type)
{
case ValueType::Null:
return "Null";
case ValueType::Number:
return std::to_string(this->value);
case ValueType::String:
return this->_string->data;
case ValueType::Function:
return "[Function "+this->_function->prototype->name+" " + std::to_string((size_t)this->_function)+"]";
case ValueType::NativeFunction:
return "[NativeFunction "+std::to_string((size_t)this->func)+"]";
case ValueType::Array:
{
std::string str = "[\n";
if (depth++ > 3)
return "[Array " + std::to_string((size_t)this->_array)+"]";
int i = 0;
for (auto ii: this->_array->data)
{
str += "\t";
str += std::to_string(i++);
str += " = ";
str += ii.ToString(depth) + "\n";
}
str += "]";
return str;
}
case ValueType::Object:
{
std::string str = "{\n";
if (depth++ > 3)
return "[Object " + std::to_string((size_t)this->_object)+"]";
for (auto ii: *this->_object)
{
str += "\t";
str += ii.first.ToString(depth);
str += " = ";
str += ii.second.ToString(depth) + "\n";
}
str += "}";
return str;
}
case ValueType::Userdata:
{
return "[Userdata "+std::to_string((size_t)this->_userdata)+"]";
}
default:
return "";
}
}
void Value::SetPrototype(JetObject* obj)
{
switch (this->type)
{
case ValueType::Object:
this->_object->prototype = obj;
case ValueType::Userdata:
this->_userdata->prototype = obj;
default:
throw RuntimeException("Cannot set prototype of non-object or non-userdata!");
}
}
Value Value::CallMetamethod(JetObject* table, const char* name, const Value* other)
{
auto node = table->prototype->findNode(name);
if (node == 0)
{
auto obj = table->prototype;
while(obj)
{
node = obj->findNode(name);
if (node)
break;
obj = obj->prototype;
}
}
if (node)
{
Value args[2];
args[0] = *this;
if (other)
args[1] = *other;
return table->prototype->context->Call(&node->second, (Value*)&args, other ? 2 : 1);
}
throw RuntimeException("Cannot " + (std::string)(name+1) + " two non-numeric types! " + (std::string)ValueTypes[(int)this->type] + " and " + (std::string)ValueTypes[(int)other->type]);
}
Value Value::CallMetamethod(const char* name, const Value* other)
{
auto node = this->_object->prototype->findNode(name);
if (node == 0)
{
auto obj = this->_object->prototype;
while(obj)
{
node = obj->findNode(name);
if (node)
break;
obj = obj->prototype;
}
}
if (node)
{
Value args[2];
args[0] = *this;
if (other)
args[1] = *other;
return this->_object->prototype->context->Call(&node->second, (Value*)&args, other ? 2 : 1);
}
throw RuntimeException("Cannot " + (std::string)(name+1) + " two non-numeric types! " + (std::string)ValueTypes[(int)this->type] + " and " + (std::string)ValueTypes[(int)other->type]);
}
bool Value::TryCallMetamethod(const char* name, const Value* iargs, int numargs, Value* out) const
{
auto node = this->_object->prototype->findNode(name);
if (node == 0)
{
auto obj = this->_object->prototype;
while(obj)
{
node = obj->findNode(name);
if (node)
break;
obj = obj->prototype;
}
}
if (node)
{
//fix this not working with arguments > 1
Value* args = (Value*)alloca(sizeof(Value)*(numargs+1));
//Value args[2];
args[numargs] = *this;
for (int i = 0; i < numargs; i++)
args[i] = iargs[i];
//help, calling this derps up curframe
*out = this->_object->prototype->context->Call(&node->second, args, numargs+1);
return true;
}
return false;
}
Value Value::operator()(JetContext* context, Value* v, int args)
{
return context->Call(this, v, args);
}
Value Value::Call(Value* v, int args)
{
if (this->type == ValueType::Function)
{
return this->_function->prototype->context->Call(this, v, args);
}
else if (this->type == ValueType::NativeFunction)
{
throw RuntimeException("Not implemented!");
}
throw RuntimeException("Cannot call non function!");
}
bool Value::operator== (const Value& other) const
{
if (other.type != this->type)
return false;
switch (this->type)
{
case ValueType::Number:
return other.value == this->value;
case ValueType::Array:
return other._array == this->_array;
case ValueType::Function:
return other._function == this->_function;
case ValueType::NativeFunction:
return other.func == this->func;
case ValueType::String:
return strcmp(other._string->data, this->_string->data) == 0;
case ValueType::Null:
return true;
case ValueType::Object:
return other._object == this->_object;
case ValueType::Userdata:
return other._userdata == this->_userdata;
}
}
Value& Value::operator[] (int key)
{
switch (type)
{
case ValueType::Array:
return this->_array->data[key];
case ValueType::Object:
return (*this->_object)[key];
default:
throw RuntimeException("Cannot index type " + (std::string)ValueTypes[(int)this->type]);
}
}
Value& Value::operator[] (const char* key)
{
switch (type)
{
case ValueType::Object:
{
return (*this->_object)[key];
}
default:
throw RuntimeException("Cannot index type " + (std::string)ValueTypes[(int)this->type]);
}
}
Value& Value::operator[] (const Value& key)
{
switch (type)
{
case ValueType::Array:
{
return this->_array->data[(int)key.value];
}
case ValueType::Object:
{
return (*this->_object)[key];
}
default:
throw RuntimeException("Cannot index type " + (std::string)ValueTypes[(int)this->type]);
}
}
Value Value::operator+( const Value &other )
{
switch(this->type)
{
case ValueType::Number:
if (other.type == ValueType::Number)
return Value(value+other.value);
break;
case ValueType::Userdata:
if (this->_userdata->prototype)
return this->CallMetamethod(this->_userdata->prototype, "_add", &other);
break;
case ValueType::Object:
if (this->_object->prototype)
return this->CallMetamethod("_add", &other);
//throw JetRuntimeException("Cannot Add A String");
//if (other.type == ValueType::String)
//return Value((std::string(other.string.data) + std::string(this->string.data)).c_str());
//else
//return Value((other.ToString() + std::string(this->string.data)).c_str());
}
throw RuntimeException("Cannot add two non-numeric types! " + (std::string)ValueTypes[(int)this->type] + " and " + (std::string)ValueTypes[(int)other.type]);
};
Value Value::operator-( const Value &other )
{
switch(this->type)
{
case ValueType::Number:
if (other.type == ValueType::Number)
return Value(value-other.value);
break;
case ValueType::Userdata:
if (this->_userdata->prototype)
return this->CallMetamethod(this->_userdata->prototype, "_sub", &other);
break;
case ValueType::Object:
if (this->_object->prototype)
return this->CallMetamethod("_sub", &other);
break;
}
/*if (type == ValueType::Number && other.type == ValueType::Number)
return Value(value-other.value);
else if (type == ValueType::Object)
{
if (this->_object->prototype)
return this->CallMetamethod("_sub", &other);
}*/
throw RuntimeException("Cannot subtract two non-numeric types! " + (std::string)ValueTypes[(int)this->type] + " and " + (std::string)ValueTypes[(int)other.type]);
};
Value Value::operator*( const Value &other )
{
switch(this->type)
{
case ValueType::Number:
if (other.type == ValueType::Number)
return Value(value*other.value);
break;
case ValueType::Userdata:
if (this->_userdata->prototype)
return this->CallMetamethod(this->_userdata->prototype, "_mul", &other);
break;
case ValueType::Object:
if (this->_object->prototype)
return this->CallMetamethod("_mul", &other);
break;
}
throw RuntimeException("Cannot multiply two non-numeric types! " + (std::string)ValueTypes[(int)this->type] + " and " + (std::string)ValueTypes[(int)other.type]);
};
Value Value::operator/( const Value &other )
{
switch(this->type)
{
case ValueType::Number:
if (other.type == ValueType::Number)
return Value(value/other.value);
break;
case ValueType::Userdata:
if (this->_userdata->prototype)
return this->CallMetamethod(this->_userdata->prototype, "_div", &other);
break;
case ValueType::Object:
if (this->_object->prototype)
return this->CallMetamethod("_div", &other);
break;
}
throw RuntimeException("Cannot divide two non-numeric types! " + (std::string)ValueTypes[(int)this->type] + " and " + (std::string)ValueTypes[(int)other.type]);
};
Value Value::operator%( const Value &other )
{
switch(this->type)
{
case ValueType::Number:
if (other.type == ValueType::Number)
return Value((int)value%(int)other.value);
break;
case ValueType::Userdata:
if (this->_userdata->prototype)
return this->CallMetamethod(this->_userdata->prototype, "_mod", &other);
break;
case ValueType::Object:
if (this->_object->prototype)
return this->CallMetamethod("_mod", &other);
break;
}
throw RuntimeException("Cannot modulus two non-numeric types! " + (std::string)ValueTypes[(int)this->type] + " and " + (std::string)ValueTypes[(int)other.type]);
};
Value Value::operator|( const Value &other )
{
switch(this->type)
{
case ValueType::Number:
if (other.type == ValueType::Number)
return Value((int)value|(int)other.value);
break;
case ValueType::Userdata:
if (this->_userdata->prototype)
return this->CallMetamethod(this->_userdata->prototype, "_bor", &other);
break;
case ValueType::Object:
if (this->_object->prototype)
return this->CallMetamethod("_bor", &other);
break;
}
throw RuntimeException("Cannot binary or two non-numeric types! " + (std::string)ValueTypes[(int)this->type] + " and " + (std::string)ValueTypes[(int)other.type]);
};
Value Value::operator&( const Value &other )
{
switch(this->type)
{
case ValueType::Number:
if (other.type == ValueType::Number)
return Value((int)value&(int)other.value);
break;
case ValueType::Userdata:
if (this->_userdata->prototype)
return this->CallMetamethod(this->_userdata->prototype, "_band", &other);
break;
case ValueType::Object:
if (this->_object->prototype)
return this->CallMetamethod("_band", &other);
break;
}
throw RuntimeException("Cannot binary and two non-numeric types! " + (std::string)ValueTypes[(int)this->type] + " and " + (std::string)ValueTypes[(int)other.type]);
};
Value Value::operator^( const Value &other )
{
switch(this->type)
{
case ValueType::Number:
if (other.type == ValueType::Number)
return Value((int)value^(int)other.value);
break;
case ValueType::Userdata:
if (this->_userdata->prototype)
return this->CallMetamethod(this->_userdata->prototype, "_xor", &other);
break;
case ValueType::Object:
if (this->_object->prototype)
return this->CallMetamethod("_xor", &other);
break;
}
throw RuntimeException("Cannot xor two non-numeric types! " + (std::string)ValueTypes[(int)this->type] + " and " + (std::string)ValueTypes[(int)other.type]);
};
Value Value::operator<<( const Value &other )
{
switch(this->type)
{
case ValueType::Number:
if (other.type == ValueType::Number)
return Value((int)value<<(int)other.value);
break;
case ValueType::Userdata:
if (this->_userdata->prototype)
return this->CallMetamethod(this->_userdata->prototype, "_ls", &other);
break;
case ValueType::Object:
if (this->_object->prototype)
return this->CallMetamethod("_ls", &other);
break;
}
throw RuntimeException("Cannot left-shift two non-numeric types! " + (std::string)ValueTypes[(int)this->type] + " and " + (std::string)ValueTypes[(int)other.type]);
};
Value Value::operator>>( const Value &other )
{
switch(this->type)
{
case ValueType::Number:
if (other.type == ValueType::Number)
return Value((int)value>>(int)other.value);
break;
case ValueType::Userdata:
if (this->_userdata->prototype)
return this->CallMetamethod(this->_userdata->prototype, "_rs", &other);
break;
case ValueType::Object:
if (this->_object->prototype)
return this->CallMetamethod("_rs", &other);
break;
}
throw RuntimeException("Cannot right-shift two non-numeric types! " + (std::string)ValueTypes[(int)this->type] + " and " + (std::string)ValueTypes[(int)other.type]);
};
Value Value::operator~()
{
switch(this->type)
{
case ValueType::Number:
return Value(~(int)value);
case ValueType::Userdata:
if (this->_userdata->prototype)
return this->CallMetamethod(this->_userdata->prototype, "_bnot", 0);
break;
case ValueType::Object:
if (this->_object->prototype)
return this->CallMetamethod("_bnot", 0);
break;
}
throw RuntimeException("Cannot binary complement non-numeric type! " + (std::string)ValueTypes[(int)this->type]);
};
Value Value::operator-()
{
switch(this->type)
{
case ValueType::Number:
return Value(-value);
case ValueType::Userdata:
if (this->_userdata->prototype)
return this->CallMetamethod(this->_userdata->prototype, "_neg", 0);
break;
case ValueType::Object:
if (this->_object->prototype)
return this->CallMetamethod("_neg", 0);
break;
}
throw RuntimeException("Cannot negate non-numeric type! " + (std::string)ValueTypes[(int)this->type]);
}