-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Expand file tree
/
Copy pathlibrary.js
More file actions
724 lines (624 loc) · 18.6 KB
/
library.js
File metadata and controls
724 lines (624 loc) · 18.6 KB
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
var Library = {
// stdio.h
printf: function() {
__print__(Pointer_stringify(__formatString.apply(null, arguments)));
},
fprintf: function() {
var file = arguments[0]; // TODO: something clever with this
var args = Array.prototype.slice.call(arguments, 1);
__print__(Pointer_stringify(__formatString.apply(null, args)));
},
sprintf: function() {
var str = arguments[0];
var args = Array.prototype.slice.call(arguments, 1);
_strcpy(str, __formatString.apply(null, args)); // not terribly efficient
},
fflush: function(file) {
__print__(null);
},
puts: function(p) {
__print__(Pointer_stringify(p) + '\n');
},
fputs: function(p, stream) {
__print__(Pointer_stringify(p) + '\n');
},
fputc: function(chr, stream) {
__print__(String.fromCharCode(chr));
},
putchar: function(p) {
__print__(String.fromCharCode(p));
},
_ZNSo3putEc: 'putchar',
fopen: function(filename, mode) {
return 1; // XXX
},
_IO_getc: function(file) {
return -1; // EOF
},
ungetc: function(chr, stream) {
return chr;
},
feof: function(stream) {
return 1;
},
ferror: function(stream) {
return 0;
},
fwrite: function(ptr, size, count, stream) {
__print__(intArrayToString(Array_copy(ptr, count)));
return count;
},
fclose: function(stream) {
return 0;
},
_ZNSo5flushEv: function() {
__print__('\n');
},
vsnprintf: function(dst, num, src, ptr) {
var text = __formatString(-src, ptr); // |-|src tells formatstring to use C-style params (typically they are from varargs)
var i;
for (i = 0; i < num; i++) {
IHEAP[dst+i] = IHEAP[text+i];
if (IHEAP[dst+i] == 0) break;
}
return i; // Actually, should return how many *would* have been written, if the |num| had not stopped us.
},
fileno: function(file) {
return 1; // XXX
},
isatty: function(file) {
return 0; // XXX
},
clearerr: function(stream) {
},
// stdlib.h
abs: 'Math.abs',
atexit: function(func) {
__ATEXIT__.push(func);
},
__cxa_atexit: 'atexit',
abort: function(code) {
ABORT = true;
throw 'ABORT: ' + code + ', at ' + (new Error().stack);
},
realloc: function(ptr, size) {
// Very simple, inefficient implementation - if you use a real malloc, best to use
// a real realloc with it
if (!size) {
if (ptr) _free(ptr);
return 0;
}
var ret = _malloc(size);
if (ptr) {
_memcpy(ret, ptr, size); // might be some invalid reads
_free(ptr);
}
return ret;
},
getenv: function(name_) {
return 0; // TODO
},
strtod__deps: ['isspace', 'isdigit'],
strtod: function(str, endptr) {
// XXX handles only whitespace + |[0-9]+(.[0.9]+)?|, no e+
while (_isspace(str)) str++;
var chr;
var ret = 0;
while(1) {
chr = IHEAP[str];
if (!_isdigit(chr)) break;
ret = ret*10 + chr - '0'.charCodeAt(0);
str++;
}
if (IHEAP[str] == '.'.charCodeAt(0)) {
str++;
var mul=1/10;
while(1) {
chr = IHEAP[str];
if (!_isdigit(chr)) break;
ret += mul*(chr - '0'.charCodeAt(0));
mul /= 10;
str++;
}
}
if (endptr) {
IHEAP[endptr] = str;
#if SAFE_HEAP
SAFE_HEAP_ACCESS(endptr, null, true);
#endif
}
return ret;
},
qsort: function(base, num, size, comparator) {
// forward calls to the JavaScript sort method
// first, sort the items logically
comparator = FUNCTION_TABLE[comparator];
var keys = [];
for (var i = 0; i < num; i++) keys.push(i);
keys.sort(function(a, b) {
return comparator(base+a*size, base+b*size);
});
// apply the sort
var temp = _malloc(num*size);
_memcpy(temp, base, num*size);
for (var i = 0; i < num; i++) {
if (keys[i] == i) continue; // already in place
_memcpy(base+i*size, temp+keys[i]*size, size);
}
_free(temp);
},
// string.h
strspn: function(pstr, pset) {
var str = String_copy(pstr, true);
var set = String_copy(pset);
var i = 0;
while (set.indexOf(str[i]) != -1) i++; // Must halt, as 0 is in str but not set
return i;
},
strcspn: function(pstr, pset) {
var str = String_copy(pstr, true);
var set = String_copy(pset, true);
var i = 0;
while (set.indexOf(str[i]) == -1) i++; // Must halt, as 0 is in both
return i;
},
strcpy: function(pdest, psrc) {
var i = 0;
do {
#if SAFE_HEAP
SAFE_HEAP_STORE(pdest+i, IHEAP[psrc+i], null);
#else
IHEAP[pdest+i] = IHEAP[psrc+i];
#endif
i ++;
} while (IHEAP[psrc+i-1] != 0);
},
strncpy: function(pdest, psrc, num) {
var padding = false;
for (var i = 0; i < num; i++) {
#if SAFE_HEAP
SAFE_HEAP_STORE(pdest+i, padding ? 0 : IHEAP[psrc+i], null);
#else
IHEAP[pdest+i] = padding ? 0 : IHEAP[psrc+i];
#endif
padding = padding || IHEAP[psrc+i] == 0;
}
},
strcat: function(pdest, psrc) {
var len = Pointer_stringify(pdest).length; // TODO: use strlen, but need dependencies system
var i = 0;
do {
IHEAP[pdest+len+i] = IHEAP[psrc+i];
#if SAFE_HEAP
SAFE_HEAP_ACCESS(pdest+len+i, 'i8', true);
#endif
i ++;
} while (IHEAP[psrc+i-1] != 0);
return pdest;
},
strncat: function(pdest, psrc, num) {
var len = Pointer_stringify(pdest).length; // TODO: use strlen, but need dependencies system
var i = 0;
while(1) {
IHEAP[pdest+len+i] = IHEAP[psrc+i];
#if SAFE_HEAP
SAFE_HEAP_ACCESS(pdest+len+i, 'i8', true);
#endif
if (IHEAP[pdest+len+i] == 0) break;
i ++;
if (i == num) {
IHEAP[pdest+len+i] = 0;
break;
}
}
return pdest;
},
strtol: function(ptr) {
// XXX: We ignore the other two params!
return parseInt(Pointer_stringify(ptr));
},
strcmp: function(px, py) {
var i = 0;
while (true) {
var x = IHEAP[px+i];
var y = IHEAP[py+i];
if (x == y && x == 0) return 0;
if (x == 0) return -1;
if (y == 0) return 1;
if (x == y) {
i ++;
continue;
} else {
return x > y ? 1 : -1;
}
}
},
strncmp: function(px, py, n) {
var i = 0;
while (i < n) {
var x = IHEAP[px+i];
var y = IHEAP[py+i];
if (x == y && x == 0) return 0;
if (x == 0) return -1;
if (y == 0) return 1;
if (x == y) {
i ++;
continue;
} else {
return x > y ? 1 : -1;
}
}
return 0;
},
memcmp: function(p1, p2, num) {
for (var i = 0; i < num; i++) {
var v1 = IHEAP[p1+i];
var v2 = IHEAP[p2+i];
if (v1 != v2) return v1 > v2 ? 1 : -1;
}
return 0;
},
memchr: function(ptr, chr, num) {
chr = unSign(chr);
for (var i = 0; i < num; i++) {
if (IHEAP[ptr] == chr) return ptr;
ptr++;
}
return 0;
},
strchr: function(ptr, chr) {
ptr--;
do {
ptr++;
var val = IHEAP[ptr];
if (val == chr) return ptr;
} while (val);
return 0;
},
strrchr: function(ptr, chr) {
var ptr2 = ptr + Pointer_stringify(ptr).length; // TODO: use strlen, but need dependencies system
do {
if (IHEAP[ptr2] == chr) return ptr2;
ptr2--;
} while (ptr2 >= ptr);
return 0;
},
strdup: function(ptr) {
return Pointer_make(String_copy(ptr, true), 0, ALLOC_NORMAL);
},
strpbrk: function(ptr1, ptr2) {
var searchSet = set.apply(null, String_copy(ptr2));
while (IHEAP[ptr1]) {
if (IHEAP[ptr1] in searchSet) return ptr1;
ptr1++;
}
return 0;
},
// ctype.h
isdigit: function(chr) {
return chr >= '0'.charCodeAt(0) && chr <= '9'.charCodeAt(0);
},
isxdigit: function(chr) {
return (chr >= '0'.charCodeAt(0) && chr <= '9'.charCodeAt(0)) ||
(chr >= 'a'.charCodeAt(0) && chr <= 'f'.charCodeAt(0)) ||
(chr >= 'A'.charCodeAt(0) && chr <= 'F'.charCodeAt(0));
},
isalpha: function(chr) {
return (chr >= 'a'.charCodeAt(0) && chr <= 'z'.charCodeAt(0)) ||
(chr >= 'A'.charCodeAt(0) && chr <= 'Z'.charCodeAt(0));
},
isalnum: function(chr) {
return (chr >= '0'.charCodeAt(0) && chr <= '9'.charCodeAt(0)) ||
(chr >= 'a'.charCodeAt(0) && chr <= 'z'.charCodeAt(0)) ||
(chr >= 'A'.charCodeAt(0) && chr <= 'Z'.charCodeAt(0));
},
isspace: function(chr) {
return chr in { 32: 0, 9: 0, 10: 0, 11: 0, 12: 0, 13: 0 };
},
iscntrl: function(chr) {
return (chr >= 0 && chr <= 0x1f) || chr === 0x7f;
},
toupper: function(chr) {
if (chr >= 'a'.charCodeAt(0) && chr <= 'z'.charCodeAt(0)) {
return chr - 'a'.charCodeAt(0) + 'A'.charCodeAt(0);
}
return chr;
},
tolower: function(chr) {
if (chr >= 'A'.charCodeAt(0) && chr <= 'Z'.charCodeAt(0)) {
return chr - 'A'.charCodeAt(0) + 'a'.charCodeAt(0);
}
return chr;
},
// ctype.h Linux specifics
__ctype_b_loc: function() { // http://refspecs.freestandards.org/LSB_3.0.0/LSB-Core-generic/LSB-Core-generic/baselib---ctype-b-loc.html
var me = arguments.callee;
if (!me.ret) {
var values = [
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,8195,0,8194,0,8194,0,8194,0,8194,0,2,0,2,
0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,24577,0,49156,0,49156,0,49156,0,49156,0,49156,0,49156,
0,49156,0,49156,0,49156,0,49156,0,49156,0,49156,0,49156,0,49156,0,49156,0,55304,0,55304,0,55304,0,55304,0,55304,0,55304,
0,55304,0,55304,0,55304,0,55304,0,49156,0,49156,0,49156,0,49156,0,49156,0,49156,0,49156,0,54536,0,54536,0,54536,0,54536,
0,54536,0,54536,0,50440,0,50440,0,50440,0,50440,0,50440,0,50440,0,50440,0,50440,0,50440,0,50440,0,50440,0,50440,0,50440,
0,50440,0,50440,0,50440,0,50440,0,50440,0,50440,0,50440,0,49156,0,49156,0,49156,0,49156,0,49156,0,49156,0,54792,0,54792,
0,54792,0,54792,0,54792,0,54792,0,50696,0,50696,0,50696,0,50696,0,50696,0,50696,0,50696,0,50696,0,50696,0,50696,0,50696,
0,50696,0,50696,0,50696,0,50696,0,50696,0,50696,0,50696,0,50696,0,50696,0,49156,0,49156,0,49156,0,49156,0,2,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0
];
me.ret = Pointer_make([Pointer_make(values, 0, ALLOC_STATIC)+256], 0, ALLOC_STATIC);
assert(IHEAP[IHEAP[me.ret]] == 2);
assert(IHEAP[IHEAP[me.ret]-2] == 0);
assert(IHEAP[IHEAP[me.ret]+18] == 8195);
}
return me.ret;
},
// LLVM specifics
llvm_va_copy: function(ppdest, ppsrc) {
IHEAP[ppdest] = IHEAP[ppsrc];
#if SAFE_HEAP
SAFE_HEAP_ACCESS(ppdest, null, true);
#endif
/* Alternate implementation that copies the actual DATA; it assumes the va_list is prefixed by its size
var psrc = IHEAP[ppsrc]-1;
var num = IHEAP[psrc]; // right before the data, is the number of (flattened) values
var pdest = _malloc(num+1);
_memcpy(pdest, psrc, num+1);
IHEAP[ppdest] = pdest+1;
*/
},
__assert_fail: function(condition, file, line) {
ABORT = true;
throw 'Assertion failed: ' + Pointer_stringify(condition);//JSON.stringify(arguments)//condition;
},
__cxa_guard_acquire: function() {
return 1;
},
__cxa_guard_release: function() {
return 1;
},
// Exceptions - minimal support, only (...) for now (no actual exception objects can be caught)
__cxa_allocate_exception: function(size) {
return _malloc(size); // warning: leaked
},
__cxa_throw: function(ptr, data, dunno) {
#if EXCEPTION_DEBUG
print('Compiled code throwing an exception, ' + [ptr,data,dunno] + ', at ' + new Error().stack);
#endif
throw ptr;
},
llvm_eh_exception: function() {
return 'code-generated exception: ' + (new Error().stack);
},
llvm_eh_selector: function(exception, personality, num) {
return 0;
},
__cxa_begin_catch: function(ptr) {
},
__cxa_end_catch: function(ptr) {
},
__cxa_call_unexpected: function(exception) {
ABORT = true;
throw exception;
},
__gxx_personality_v0: function() {
},
llvm_umul_with_overflow_i32: function(x, y) {
return {
f0: x*y,
f1: 0 // We never overflow... for now
};
},
llvm_stacksave: function() {
var self = _llvm_stacksave;
if (!self.LLVM_SAVEDSTACKS) {
self.LLVM_SAVEDSTACKS = [];
}
self.LLVM_SAVEDSTACKS.push(STACKTOP);
return self.LLVM_SAVEDSTACKS.length-1;
},
llvm_stackrestore: function(p) {
var self = _llvm_stacksave;
var ret = self.LLVM_SAVEDSTACKS[p];
self.LLVM_SAVEDSTACKS.splice(p, 1);
return ret;
},
__cxa_pure_virtual: function() {
ABORT = true;
throw 'Pure virtual function called!';
},
llvm_flt_rounds: function() {
return -1; // 'indeterminable' for FLT_ROUNDS
},
// iostream
_ZNSt8ios_base4InitC1Ev: function() {
// need valid 'file descriptors'
__ZSt4cout = 1;
__ZSt4cerr = 2;
},
_ZNSt8ios_base4InitD1Ev: '_ZNSt8ios_base4InitC1Ev',
_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_: 0, // endl
_ZNSolsEi: function(stream, data) {
__print__(data);
},
_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc: function(stream, data) {
__print__(Pointer_stringify(data));
},
_ZNSolsEd: function(stream, data) {
__print__('\n');
},
_ZNSolsEPFRSoS_E: function(stream, data) {
__print__('\n');
},
_ZSt16__ostream_insertIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_PKS3_i: function(stream, data, call_) {
__print__(Pointer_stringify(data));
},
// math.h
cos: 'Math.cos',
cosf: 'Math.cos',
sin: 'Math.sin',
sinf: 'Math.sin',
tan: 'Math.tan',
tanf: 'Math.tan',
acos: 'Math.acos',
acosf: 'Math.acos',
asin: 'Math.asin',
asinf: 'Math.asin',
atan: 'Math.atan',
atanf: 'Math.atan',
atan2: 'Math.atan2',
atan2f: 'Math.atan2',
sqrt: 'Math.sqrt',
sqrtf: 'Math.sqrt',
fabs: 'Math.abs',
fabsf: 'Math.abs',
llvm_sqrt_f64: 'Math.sqrt',
llvm_pow_f32: 'Math.pow',
modf: function(x, intpart) {
FHEAP[intpart] = Math.floor(x);
#if SAFE_HEAP
SAFE_HEAP_ACCESS(intpart, 'f32', true); // XXX f64?
#endif
return x - FHEAP[intpart];
},
frexp: function(x, exp_addr) {
var sig = 0, exp_ = 0;
if (x !== 0) {
var raw_exp = Math.log(x)/Math.log(2);
exp_ = Math.ceil(raw_exp);
if (exp_ === raw_exp) exp_ += 1;
sig = x/Math.pow(2, exp_);
}
IHEAP[exp_addr] = exp_;
#if SAFE_HEAP
SAFE_HEAP_ACCESS(exp_addr, 'i32', true);
#endif
return sig;
},
__finite: function(x) {
return x !== Infinity && x !== -Infinity;
},
__isinf: function(x) {
return x === Infinity || x === -Infinity;
},
__isnan: function(x) {
return isNaN(x);
},
// unistd.h
sysconf: function(name_) {
switch(name_) {
case 30: return PAGE_SIZE; // _SC_PAGE_SIZE
default: throw 'unknown sysconf param: ' + name_;
}
},
sbrk: function(bytes) {
// Implement a Linux-like 'memory area' for our 'process'.
// Changes the size of the memory area by |bytes|; returns the
// address of the previous top ('break') of the memory area
// We need to make sure no one else allocates unfreeable memory!
// We must control this entirely. So we don't even need to do
// unfreeable allocations - the HEAP is ours, from STATICTOP up.
// TODO: We could in theory slice off the top of the HEAP when
// sbrk gets a negative increment in |bytes|...
var self = arguments.callee;
if (!self.STATICTOP) {
STATICTOP = alignMemoryPage(STATICTOP);
self.STATICTOP = STATICTOP;
self.DATASIZE = 0;
} else {
assert(self.STATICTOP == STATICTOP, "Noone should touch the heap!");
}
var ret = STATICTOP + self.DATASIZE;
self.DATASIZE += alignMemoryPage(bytes);
return ret; // previous break location
},
readlink: function(path, buf, bufsiz) {
return -1;
},
// time.h
time: function(ptr) {
var ret = Math.floor(Date.now()/1000);
if (ptr) {
IHEAP[ptr] = ret;
}
return ret;
},
gettimeofday: function(ptr) {
// %struct.timeval = type { i32, i32 }
var indexes = Runtime.calculateStructAlignment({ fields: ['i32', 'i32'] });
var now = Date.now();
IHEAP[ptr + indexes[0]] = Math.floor(now/1000); // seconds
IHEAP[ptr + indexes[1]] = Math.floor((now-1000*Math.floor(now/1000))*1000); // microseconds
#if SAFE_HEAP
SAFE_HEAP_ACCESS(ptr + indexes[0], 'i32', true);
SAFE_HEAP_ACCESS(ptr + indexes[1], 'i32', true);
#endif
return 0;
},
// setjmp.h
_setjmp: function(env) {
// not really working...
assert(!arguments.callee.called);
arguments.callee.called = true;
return 0;
},
_longjmp: function(env, val) {
// not really working...
assert(0);
},
// signal.h
signal: function(sig, func) {
// TODO
return 0;
},
__libc_current_sigrtmin: function() {
return 0;
},
__libc_current_sigrtmax: function() {
return 0;
},
// stat.h
__01stat64_: function() { return -1 },
__01fstat64_: function() { return -1 },
// locale.h
setlocale: function(category, locale) {
return 0;
},
localeconv: function() {
// %struct.timeval = type { char* decimal point, other stuff... }
// var indexes = Runtime.calculateStructAlignment({ fields: ['i32', 'i32'] });
var me = arguments.callee;
if (!me.ret) {
me.ret = Pointer_make([Pointer_make(intArrayFromString('.'), null)], null); // just decimal point, for now
#if SAFE_HEAP
SAFE_HEAP_ACCESS(me.ret, 'i32', true);
SAFE_HEAP_ACCESS(IHEAP[me.ret], 'i32', true);
#endif
}
return me.ret;
},
// langinfo.h
nl_langinfo: function(item) {
var me = arguments.callee;
if (!me.ret) {
me.ret = Pointer_make(intArrayFromString("eh?"), null);
}
return me.ret;
},
// errno.h
__errno_location: function() {
var me = arguments.callee;
if (!me.ret) {
me.ret = Pointer_make([0], 0, ALLOC_STATIC);
}
return me.ret;
}
};
load('library_sdl.js');