-
Notifications
You must be signed in to change notification settings - Fork 37
/
intertyper.js
1015 lines (987 loc) · 36.1 KB
/
intertyper.js
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
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//"use strict";
// LLVM assembly => internal intermediate representation, which is ready
// to be processed by the later stages.
var tokenizer; // TODO: Clean this up/out
// XXX In particular, this closes over the substrate, which can keep stuff in memory, which is bad
function tokenize(text) {
return tokenizer.processItem({ lineText: text }, true);
}
// Handy sets
var ENCLOSER_STARTERS = set('[', '(', '<');
var ENCLOSER_ENDERS = {
'[': ']',
'(': ')',
'<': '>'
};
var ZEROINIT_UNDEF = set('zeroinitializer', 'undef');
var NSW_NUW = set('nsw', 'nuw');
// Intertyper
function intertyper(data, sidePass, baseLineNums) {
var mainPass = !sidePass;
baseLineNums = baseLineNums || [[0,0]]; // each pair [#0,#1] means "starting from line #0, the base line num is #1"
dprint('framework', 'Big picture: Starting intertyper, main pass=' + mainPass);
// Substrate
var substrate = new Substrate('Intertyper');
// Line splitter. We break off some bunches of lines into unparsedBundles, which are
// parsed in separate passes later. This helps to keep memory usage low - we can start
// from raw lines and end up with final JS for each function individually that way, instead
// of intertyping them all, then analyzing them all, etc.
substrate.addActor('LineSplitter', {
processItem: function _lineSplitter(item) {
var lines = item.llvmLines;
var ret = [];
var inContinual = false;
var inFunction = false;
var currFunctionLines;
var currFunctionLineNum;
var unparsedBundles = [];
var unparsedTypes, unparsedGlobals;
if (mainPass) {
unparsedTypes = {
intertype: 'unparsedTypes',
lines: []
};
unparsedBundles.push(unparsedTypes);
unparsedGlobals = {
intertype: 'unparsedGlobals',
lines: []
};
unparsedBundles.push(unparsedGlobals);
}
var baseLineNumPosition = 0;
for (var i = 0; i < lines.length; i++) {
var line = lines[i];
if (singlePhase) lines[i] = null; // lines may be very very large. Allow GCing to occur in the loop by releasing refs here
while (baseLineNumPosition < baseLineNums.length-1 && i >= baseLineNums[baseLineNumPosition+1][0]) {
baseLineNumPosition++;
}
if (mainPass && (line[0] == '%' || line[0] == '@')) {
// If this isn't a type, it's a global variable, make a note of the information now, we will need it later
var testType = /[@%\w\d\.\" $-]+ = type .*/.exec(line);
if (!testType) {
var global = /([@%\w\d\.\" $-]+) = .*/.exec(line);
var globalIdent = toNiceIdent(global[1]);
var testAlias = /[@%\w\d\.\" $-]+ = (hidden )?alias .*/.exec(line);
Variables.globals[globalIdent] = {
name: globalIdent,
alias: !!testAlias,
impl: VAR_EMULATED
};
unparsedGlobals.lines.push(line);
} else {
unparsedTypes.lines.push(line);
}
continue;
}
if (mainPass && /^define .*/.test(line)) {
inFunction = true;
currFunctionLines = [];
currFunctionLineNum = i + 1;
}
if (!inFunction || !mainPass) {
if (inContinual || /^\ +(to|catch |filter |cleanup).*/.test(line)) {
// to after invoke or landingpad second line
ret.slice(-1)[0].lineText += line;
if (/^\ +\]/.test(line)) { // end of llvm switch
inContinual = false;
}
} else {
ret.push({
lineText: line,
lineNum: i + 1 + baseLineNums[baseLineNumPosition][1] - baseLineNums[baseLineNumPosition][0]
});
if (/^\ +switch\ .*/.test(line)) {
// beginning of llvm switch
inContinual = true;
}
}
} else {
currFunctionLines.push(line);
}
if (mainPass && /^}.*/.test(line)) {
inFunction = false;
if (mainPass) {
var func = funcHeader.processItem(tokenizer.processItem({ lineText: currFunctionLines[0], lineNum: currFunctionLineNum }, true))[0];
if (SKIP_STACK_IN_SMALL && /emscripten_autodebug/.exec(func.ident)) {
warnOnce('Disabling SKIP_STACK_IN_SMALL because we are apparently processing autodebugger data');
SKIP_STACK_IN_SMALL = 0;
}
unparsedBundles.push({
intertype: 'unparsedFunction',
// We need this early, to know basic function info - ident, params, varargs
ident: toNiceIdent(func.ident),
params: func.params,
hasVarArgs: func.hasVarArgs,
lineNum: currFunctionLineNum,
lines: currFunctionLines
});
currFunctionLines = [];
}
}
}
// We need lines beginning with ';' inside functions, because older LLVM versions generated labels that way. But when not
// parsing functions, we can ignore all such lines and save some time that way.
this.forwardItems(ret.filter(function(item) { return item.lineText && (item.lineText[0] != ';' || !mainPass); }), 'Tokenizer');
return unparsedBundles;
}
});
// Line tokenizer
tokenizer = substrate.addActor('Tokenizer', {
processItem: function _tokenizer(item, inner) {
//assert(item.lineNum != 40000);
//if (item.lineNum) print(item.lineNum);
var tokens = [];
var quotes = 0;
var lastToken = null;
var CHUNKSIZE = 64; // How much forward to peek forward. Too much means too many string segments copied
// Note: '{' is not an encloser, as its use in functions is split over many lines
var enclosers = {
'[': 0,
']': '[',
'(': 0,
')': '(',
'<': 0,
'>': '<'
};
var totalEnclosing = 0;
var that = this;
function makeToken(text) {
if (text.length == 0) return;
// merge certain tokens
if (lastToken && ( (lastToken.text == '%' && text[0] == '"') || /^\**$/.test(text) ) ) {
lastToken.text += text;
return;
}
var token = {
text: text
};
if (text[0] in enclosers) {
token.item = that.processItem({
lineText: text.substr(1, text.length-2)
}, true);
token.type = text[0];
}
// merge certain tokens
if (lastToken && isType(lastToken.text) && isFunctionDef(token)) {
lastToken.text += ' ' + text;
} else if (lastToken && text[0] == '}') { // }, }*, etc.
var openBrace = tokens.length-1;
while (tokens[openBrace].text.substr(-1) != '{') openBrace --;
token = combineTokens(tokens.slice(openBrace+1));
tokens.splice(openBrace, tokens.length-openBrace+1);
tokens.push(token);
token.type = '{';
token.text = '{ ' + token.text + ' }';
var pointingLevelsToAdd = pointingLevels(text) - pointingLevels(token.text);
while (pointingLevelsToAdd > 0) {
token.text += '*';
pointingLevelsToAdd--;
}
lastToken = token;
} else {
tokens.push(token);
lastToken = token;
}
}
// Split using meaningful characters
var lineText = item.lineText + ' ';
var re = /[\[\]\(\)<>, "]/g;
var segments = lineText.split(re);
segments.pop();
var len = segments.length;
var i = -1;
var curr = '';
var segment, letter;
for (var s = 0; s < len; s++) {
segment = segments[s];
i += segment.length + 1;
letter = lineText[i];
curr += segment;
switch (letter) {
case ' ':
if (totalEnclosing == 0 && quotes == 0) {
makeToken(curr);
curr = '';
} else {
curr += ' ';
}
break;
case '"':
if (totalEnclosing == 0) {
if (quotes == 0) {
if (curr == '@' || curr == '%') {
curr += '"';
} else {
makeToken(curr);
curr = '"';
}
} else {
makeToken(curr + '"');
curr = '';
}
} else {
curr += '"';
}
quotes = 1-quotes;
break;
case ',':
if (totalEnclosing == 0 && quotes == 0) {
makeToken(curr);
curr = '';
tokens.push({ text: ',' });
} else {
curr += ',';
}
break;
default:
assert(letter in enclosers);
if (quotes) {
curr += letter;
break;
}
if (letter in ENCLOSER_STARTERS) {
if (totalEnclosing == 0) {
makeToken(curr);
curr = '';
}
curr += letter;
enclosers[letter]++;
totalEnclosing++;
} else {
enclosers[enclosers[letter]]--;
totalEnclosing--;
if (totalEnclosing == 0) {
makeToken(curr + letter);
curr = '';
} else {
curr += letter;
}
}
}
}
var newItem = {
tokens: tokens,
indent: lineText.search(/[^ ]/),
lineNum: item.lineNum
};
if (inner) {
return newItem;
} else {
this.forwardItem(newItem, 'Triager');
}
return null;
}
});
substrate.addActor('Triager', {
processItem: function _triager(item) {
function triage() {
assert(!item.intertype);
var token0Text = item.tokens[0].text;
var token1Text = item.tokens[1] ? item.tokens[1].text : null;
var tokensLength = item.tokens.length;
if (item.indent === 2) {
if (tokensLength >= 5 &&
(token0Text == 'store' || token1Text == 'store'))
return 'Store';
if (tokensLength >= 3 && token0Text == 'br')
return 'Branch';
if (tokensLength >= 2 && token0Text == 'ret')
return 'Return';
if (tokensLength >= 2 && token0Text == 'switch')
return 'Switch';
if (token0Text == 'unreachable')
return 'Unreachable';
if (tokensLength >= 3 && token0Text == 'indirectbr')
return 'IndirectBr';
if (tokensLength >= 2 && token0Text == 'resume')
return 'Resume';
if (tokensLength >= 3 &&
(token0Text == 'load' || token1Text == 'load'))
return 'Load';
if (tokensLength >= 3 &&
token0Text in MATHOPS)
return 'Mathops';
if (tokensLength >= 3 && token0Text == 'bitcast')
return 'Bitcast';
if (tokensLength >= 3 && token0Text == 'getelementptr')
return 'GEP';
if (tokensLength >= 2 && token0Text == 'alloca')
return 'Alloca';
if (tokensLength >= 3 && token0Text == 'extractvalue')
return 'ExtractValue';
if (tokensLength >= 3 && token0Text == 'insertvalue')
return 'InsertValue';
if (tokensLength >= 3 && token0Text == 'phi')
return 'Phi';
if (tokensLength >= 3 && token0Text == 'landingpad')
return 'Landingpad';
if (token0Text == 'fence')
return '/dev/null';
} else if (item.indent === 0) {
if ((tokensLength >= 1 && token0Text.substr(-1) == ':') ||
(tokensLength >= 3 && token1Text == '<label>') ||
(tokensLength >= 2 && token1Text == ':'))
return 'Label';
if (tokensLength >= 4 && token0Text == 'declare')
return 'External';
if (tokensLength >= 3 && token1Text == '=')
return 'Global';
if (tokensLength >= 4 && token0Text == 'define' &&
item.tokens.slice(-1)[0].text == '{')
return 'FuncHeader';
if (tokensLength >= 1 && token0Text == '}')
return 'FuncEnd';
if (token0Text == 'module' && token1Text == 'asm') {
warn('Ignoring module asm: ' + item.tokens[2].text);
return '/dev/null';
}
}
if (tokensLength >= 3 && (token0Text == 'call' || token1Text == 'call'))
return 'Call';
if (token0Text == 'target')
return '/dev/null';
if (token0Text == ';')
return '/dev/null';
if (tokensLength >= 3 && token0Text == 'invoke')
return 'Invoke';
if (tokensLength >= 3 && token0Text == 'atomicrmw' || token0Text == 'cmpxchg')
return 'Atomic';
throw 'Invalid token, cannot triage: ' + dump(item);
}
var eq;
if (item.indent == 2 && (eq = findTokenText(item, '=')) >= 0) {
item.assignTo = toNiceIdent(combineTokens(item.tokens.slice(0, eq)).text);
item.tokens = item.tokens.slice(eq+1);
}
this.forwardItem(item, triage());
}
});
// Line parsers to intermediate form
// globals: type or variable
substrate.addActor('Global', {
processItem: function _global(item) {
function scanConst(value, type) {
// Gets an array of constant items, separated by ',' tokens
function handleSegments(tokens) {
// Handle a single segment (after comma separation)
function handleSegment(segment) {
if (segment[1].text == 'null') {
return { intertype: 'value', ident: '0', type: 'i32' };
} else if (segment[1].text == 'zeroinitializer') {
Types.needAnalysis[segment[0].text] = 0;
return { intertype: 'emptystruct', type: segment[0].text };
} else if (segment[1].text in PARSABLE_LLVM_FUNCTIONS) {
return parseLLVMFunctionCall(segment);
} else if (segment[1].type && segment[1].type == '{') {
Types.needAnalysis[segment[0].text] = 0;
return { intertype: 'struct', type: segment[0].text, contents: handleSegments(segment[1].tokens) };
} else if (segment[1].type && segment[1].type == '<') {
Types.needAnalysis[segment[0].text] = 0;
return { intertype: 'struct', type: segment[0].text, contents: handleSegments(segment[1].item.tokens[0].tokens) };
} else if (segment[1].type && segment[1].type == '[') {
Types.needAnalysis[segment[0].text] = 0;
return { intertype: 'list', type: segment[0].text, contents: handleSegments(segment[1].item.tokens) };
} else if (segment.length == 2) {
Types.needAnalysis[segment[0].text] = 0;
return { intertype: 'value', type: segment[0].text, ident: toNiceIdent(segment[1].text) };
} else if (segment[1].text === 'c') {
// string
var text = segment[2].text;
text = text.substr(1, text.length-2);
return { intertype: 'string', text: text, type: 'i8*' };
} else if (segment[1].text === 'blockaddress') {
return parseBlockAddress(segment);
} else {
throw 'Invalid segment: ' + dump(segment);
}
};
return splitTokenList(tokens).map(handleSegment);
}
Types.needAnalysis[type] = 0;
if (Runtime.isNumberType(type) || pointingLevels(type) >= 1) {
return { value: toNiceIdent(value.text), type: type };
} else if (value.text in ZEROINIT_UNDEF) { // undef doesn't really need initting, but why not
return { intertype: 'emptystruct', type: type };
} else if (value.text && value.text[0] == '"') {
return { intertype: 'string', text: value.text.substr(1, value.text.length-2) };
} else {
if (value.type == '<') { // <{ i8 }> etc.
value = value.item.tokens;
}
var contents;
if (value.item) {
// list of items
contents = value.item.tokens;
} else if (value.type == '{') {
// struct
contents = value.tokens;
} else if (value[0]) {
contents = value[0];
} else {
throw '// interfailzzzzzzzzzzzzzz ' + dump(value.item) + ' ::: ' + dump(value);
}
return { intertype: 'segments', contents: handleSegments(contents) };
}
}
cleanOutTokens(LLVM.VISIBILITIES, item.tokens, 2);
if (item.tokens[2].text == 'alias') {
cleanOutTokens(LLVM.LINKAGES, item.tokens, 3);
cleanOutTokens(LLVM.VISIBILITIES, item.tokens, 3);
var last = getTokenIndexByText(item.tokens, ';');
var ret = {
intertype: 'alias',
ident: toNiceIdent(item.tokens[0].text),
value: parseLLVMSegment(item.tokens.slice(3, last)),
lineNum: item.lineNum
};
ret.type = ret.value.type;
Types.needAnalysis[ret.type] = 0;
if (!NAMED_GLOBALS) {
Variables.globals[ret.ident].type = ret.type;
}
return [ret];
}
if (item.tokens[2].text == 'type') {
var fields = [];
var packed = false;
if (Runtime.isNumberType(item.tokens[3].text)) {
// Clang sometimes has |= i32| instead of |= { i32 }|
fields = [item.tokens[3].text];
} else if (item.tokens[3].text != 'opaque') {
if (item.tokens[3].type == '<') {
packed = true;
item.tokens[3] = item.tokens[3].item.tokens[0];
}
var subTokens = item.tokens[3].tokens;
if (subTokens) {
subTokens.push({text:','});
while (subTokens[0]) {
var stop = 1;
while ([','].indexOf(subTokens[stop].text) == -1) stop ++;
fields.push(combineTokens(subTokens.slice(0, stop)).text);
subTokens.splice(0, stop+1);
}
}
}
return [{
intertype: 'type',
name_: item.tokens[0].text,
fields: fields,
packed: packed,
lineNum: item.lineNum
}];
} else {
// variable
var ident = item.tokens[0].text;
var private_ = findTokenText(item, 'private') >= 0;
cleanOutTokens(LLVM.GLOBAL_MODIFIERS, item.tokens, [2, 3]);
var external = false;
if (item.tokens[2].text === 'external') {
external = true;
item.tokens.splice(2, 1);
}
Types.needAnalysis[item.tokens[2].text] = 0;
var ret = {
intertype: 'globalVariable',
ident: toNiceIdent(ident),
type: item.tokens[2].text,
external: external,
private_: private_,
lineNum: item.lineNum
};
if (!NAMED_GLOBALS) {
Variables.globals[ret.ident].type = ret.type;
Variables.globals[ret.ident].external = external;
}
Types.needAnalysis[ret.type] = 0;
if (ident == '@llvm.global_ctors') {
ret.ctors = [];
if (item.tokens[3].item) {
var subTokens = item.tokens[3].item.tokens;
splitTokenList(subTokens).forEach(function(segment) {
ret.ctors.push(segment[1].tokens.slice(-1)[0].text);
});
}
} else if (!external) {
if (item.tokens[3].text == 'c')
item.tokens.splice(3, 1);
if (item.tokens[3].text in PARSABLE_LLVM_FUNCTIONS) {
ret.value = parseLLVMFunctionCall(item.tokens.slice(2));
} else {
ret.value = scanConst(item.tokens[3], ret.type);
}
}
return [ret];
}
}
});
// function header
var funcHeader = substrate.addActor('FuncHeader', {
processItem: function(item) {
item.tokens = item.tokens.filter(function(token) {
return !(token.text in LLVM.LINKAGES || token.text in LLVM.PARAM_ATTR || token.text in LLVM.FUNC_ATTR || token.text in LLVM.CALLING_CONVENTIONS);
});
var params = parseParamTokens(item.tokens[2].item.tokens);
if (sidePass) dprint('unparsedFunctions', 'Processing function: ' + item.tokens[1].text);
return [{
intertype: 'function',
ident: toNiceIdent(item.tokens[1].text),
returnType: item.tokens[0].text,
params: params,
hasVarArgs: hasVarArgs(params),
lineNum: item.lineNum,
}];
}
});
// label
substrate.addActor('Label', {
processItem: function(item) {
var rawLabel = item.tokens[0].text.substr(-1) == ':' ?
'%' + item.tokens[0].text.substr(0, item.tokens[0].text.length-1) :
(item.tokens[1].text == '<label>' ?
'%' + item.tokens[2].text.substr(1) :
'%' + item.tokens[0].text)
var niceLabel = toNiceIdent(rawLabel);
return [{
intertype: 'label',
ident: niceLabel,
lineNum: item.lineNum
}];
}
});
// TODO: remove dis
substrate.addActor('Reintegrator', {
processItem: function(item) {
this.forwardItem(item, '/dev/stdout');
}
});
// 'load'
substrate.addActor('Load', {
processItem: function(item) {
item.intertype = 'load';
cleanOutTokens(LLVM.ACCESS_OPTIONS, item.tokens, [0, 1]);
item.pointerType = item.tokens[1].text;
item.valueType = item.type = removePointing(item.pointerType);
Types.needAnalysis[item.type] = 0;
var last = getTokenIndexByText(item.tokens, ';');
var segments = splitTokenList(item.tokens.slice(1, last));
item.pointer = parseLLVMSegment(segments[0]);
if (segments.length > 1) {
assert(segments[1][0].text == 'align');
item.align = parseInt(segments[1][1].text) || QUANTUM_SIZE; // 0 means preferred arch align
} else {
item.align = QUANTUM_SIZE;
}
item.ident = item.pointer.ident || null;
this.forwardItem(item, 'Reintegrator');
}
});
// 'extractvalue'
substrate.addActor('ExtractValue', {
processItem: function(item) {
var last = getTokenIndexByText(item.tokens, ';');
item.intertype = 'extractvalue';
item.type = item.tokens[1].text; // Of the origin aggregate - not what we extract from it. For that, can only infer it later
Types.needAnalysis[item.type] = 0;
item.ident = toNiceIdent(item.tokens[2].text);
item.indexes = splitTokenList(item.tokens.slice(4, last));
this.forwardItem(item, 'Reintegrator');
}
});
// 'insertvalue'
substrate.addActor('InsertValue', {
processItem: function(item) {
var last = getTokenIndexByText(item.tokens, ';');
item.intertype = 'insertvalue';
item.type = item.tokens[1].text; // Of the origin aggregate, as well as the result
Types.needAnalysis[item.type] = 0;
item.ident = toNiceIdent(item.tokens[2].text);
var segments = splitTokenList(item.tokens.slice(4, last));
item.value = parseLLVMSegment(segments[0]);
item.indexes = segments.slice(1);
this.forwardItem(item, 'Reintegrator');
}
});
// 'bitcast'
substrate.addActor('Bitcast', {
processItem: function(item) {
item.intertype = 'bitcast';
item.type = item.tokens[4].text; // The final type
Types.needAnalysis[item.type] = 0;
var to = getTokenIndexByText(item.tokens, 'to');
item.params = [parseLLVMSegment(item.tokens.slice(1, to))];
item.ident = item.params[0].ident;
item.type2 = item.tokens[1].text; // The original type
Types.needAnalysis[item.type2] = 0;
this.forwardItem(item, 'Reintegrator');
}
});
// 'getelementptr'
substrate.addActor('GEP', {
processItem: function(item) {
var first = 0;
while (!isType(item.tokens[first].text)) first++;
Types.needAnalysis[item.tokens[first].text] = 0;
var last = getTokenIndexByText(item.tokens, ';');
var segment = [ item.tokens[first], { text: 'getelementptr' }, null, { item: {
tokens: item.tokens.slice(first, last)
} } ];
var data = parseLLVMFunctionCall(segment);
item.intertype = 'getelementptr';
item.type = '*'; // We need type info to determine this - all we know is it's a pointer
item.params = data.params;
item.ident = data.ident;
this.forwardItem(item, 'Reintegrator');
}
});
// 'call', 'invoke'
function makeCall(item, type) {
item.intertype = type;
if (['tail'].indexOf(item.tokens[0].text) != -1) {
item.tokens.splice(0, 1);
}
while (item.tokens[1].text in LLVM.PARAM_ATTR || item.tokens[1].text in LLVM.CALLING_CONVENTIONS) {
item.tokens.splice(1, 1);
}
item.type = item.tokens[1].text;
Types.needAnalysis[item.type] = 0;
while (['@', '%'].indexOf(item.tokens[2].text[0]) == -1 && !(item.tokens[2].text in PARSABLE_LLVM_FUNCTIONS) &&
item.tokens[2].text != 'null' && item.tokens[2].text != 'asm') {
assert(item.tokens[2].text != 'asm', 'Inline assembly cannot be compiled to JavaScript!');
item.tokens.splice(2, 1);
}
var tokensLeft = item.tokens.slice(2);
item.ident = eatLLVMIdent(tokensLeft);
if (item.ident == 'asm') {
// Inline assembly is just JavaScript that we paste into the code
item.intertype = 'value';
if (tokensLeft[0].text == 'sideeffect') tokensLeft.splice(0, 1);
item.ident = tokensLeft[0].text.substr(1, tokensLeft[0].text.length-2) || ';'; // use ; for empty inline assembly
return { forward: null, ret: [item], item: item };
}
if (item.ident.substr(-2) == '()') {
// See comment in isStructType()
item.ident = item.ident.substr(0, item.ident.length-2);
// Also, we remove some spaces which might occur.
while (item.ident[item.ident.length-1] == ' ') {
item.ident = item.ident.substr(0, item.ident.length-1);
}
item.params = [];
} else {
item.params = parseParamTokens(tokensLeft[0].item.tokens);
}
item.ident = toNiceIdent(item.ident);
if (type === 'invoke') {
var toIndex = findTokenText(item, 'to');
item.toLabel = toNiceIdent(item.tokens[toIndex+2].text);
item.unwindLabel = toNiceIdent(item.tokens[toIndex+5].text);
assert(item.toLabel && item.unwindLabel);
}
if (item.indent == 2) {
// standalone call - not in assign
item.standalone = true;
return { forward: null, ret: [item], item: item };
}
return { forward: item, ret: [], item: item };
}
substrate.addActor('Call', {
processItem: function(item) {
var result = makeCall.call(this, item, 'call');
if (result.forward) this.forwardItem(result.forward, 'Reintegrator');
return result.ret;
}
});
substrate.addActor('Invoke', {
processItem: function(item) {
var result = makeCall.call(this, item, 'invoke');
if (DISABLE_EXCEPTION_CATCHING) {
result.item.intertype = 'call';
result.ret.push({
intertype: 'branch',
label: result.item.toLabel,
lineNum: (result.forward ? item.parentLineNum : item.lineNum) + 0.5
});
}
if (result.forward) this.forwardItem(result.forward, 'Reintegrator');
return result.ret;
}
});
substrate.addActor('Atomic', {
processItem: function(item) {
item.intertype = 'atomic';
if (item.tokens[0].text == 'atomicrmw') {
item.op = item.tokens[1].text;
item.tokens.splice(1, 1);
} else {
assert(item.tokens[0].text == 'cmpxchg')
item.op = 'cmpxchg';
}
var last = getTokenIndexByText(item.tokens, ';');
item.params = splitTokenList(item.tokens.slice(1, last)).map(parseLLVMSegment);
this.forwardItem(item, 'Reintegrator');
}
});
// 'landingpad'
substrate.addActor('Landingpad', {
processItem: function(item) {
item.intertype = 'landingpad';
item.type = item.tokens[1].text;
item.catchables = [];
var catchIdx = findTokenText(item, "catch");
if (catchIdx != -1) {
do {
var nextCatchIdx = findTokenTextAfter(item, "catch", catchIdx+1);
if (nextCatchIdx == -1)
nextCatchIdx = item.tokens.length;
item.catchables.push(parseLLVMSegment(item.tokens.slice(catchIdx+2, nextCatchIdx)));
catchIdx = nextCatchIdx;
} while (catchIdx != item.tokens.length);
}
Types.needAnalysis[item.type] = 0;
this.forwardItem(item, 'Reintegrator');
}
});
// 'alloca'
var allocaPossibleVars = ['allocatedNum'];
substrate.addActor('Alloca', {
processItem: function(item) {
item.intertype = 'alloca';
item.allocatedType = item.tokens[1].text;
if (item.tokens.length > 3 && Runtime.isNumberType(item.tokens[3].text)) {
item.allocatedNum = toNiceIdent(item.tokens[4].text);
item.possibleVars = allocaPossibleVars;
} else {
item.allocatedNum = 1;
}
item.type = addPointing(item.tokens[1].text); // type of pointer we will get
Types.needAnalysis[item.type] = 0;
item.type2 = item.tokens[1].text; // value we will create, and get a pointer to
Types.needAnalysis[item.type2] = 0;
this.forwardItem(item, 'Reintegrator');
}
});
// 'phi'
substrate.addActor('Phi', {
processItem: function(item) {
item.intertype = 'phi';
item.type = item.tokens[1].text;
var typeToken = [item.tokens[1]];
Types.needAnalysis[item.type] = 0;
var last = getTokenIndexByText(item.tokens, ';');
item.params = splitTokenList(item.tokens.slice(2, last)).map(function(segment) {
var subSegments = splitTokenList(segment[0].item.tokens);
var ret = {
intertype: 'phiparam',
label: toNiceIdent(subSegments[1][0].text),
value: parseLLVMSegment(typeToken.concat(subSegments[0]))
};
return ret;
}).filter(function(param) { return param.value && param.value.ident != 'undef' });
this.forwardItem(item, 'Reintegrator');
}
});
// mathops
substrate.addActor('Mathops', {
processItem: function(item) {
item.intertype = 'mathop';
item.op = item.tokens[0].text;
item.variant = null;
while (item.tokens[1].text in NSW_NUW) item.tokens.splice(1, 1);
if (['icmp', 'fcmp'].indexOf(item.op) != -1) {
item.variant = item.tokens[1].text;
item.tokens.splice(1, 1);
}
if (item.tokens[1].text == 'exact') item.tokens.splice(1, 1); // TODO: Implement trap values
var segments = splitTokenList(item.tokens.slice(1));
item.params = [];
for (var i = 1; i <= 4; i++) {
if (segments[i-1]) {
if (i > 1 && segments[i-1].length == 1 && segments[0].length > 1 && !isType(segments[i-1][0].text)) {
segments[i-1].unshift(segments[0][0]); // Add the type from the first segment, they are all alike
}
item.params[i-1] = parseLLVMSegment(segments[i-1]);
}
}
if (item.op === 'select') {
assert(item.params[1].type === item.params[2].type);
item.type = item.params[1].type;
} else if (item.op === 'inttoptr' || item.op === 'ptrtoint') {
item.type = item.params[1].type;
} else {
item.type = item.params[0].type;
}
if (item.op != 'ptrtoint') {
for (var i = 0; i < 4; i++) {
if (item.params[i]) item.params[i].type = item.type; // All params have the same type, normally
}
}
if (item.op in LLVM.EXTENDS) {
item.type = item.params[1].ident;
item.params[0].type = item.params[1].type;
// TODO: also remove 2nd param?
}
if (USE_TYPED_ARRAYS == 2) {
// Some specific corrections, since 'i64' is special
if (item.op in LLVM.SHIFTS) {
item.params[1].type = 'i32';
} else if (item.op == 'select') {
item.params[0].type = 'i1';
}
}
Types.needAnalysis[item.type] = 0;
this.forwardItem(item, 'Reintegrator');
}
});
// 'store'
substrate.addActor('Store', {
processItem: function(item) {
cleanOutTokens(LLVM.ACCESS_OPTIONS, item.tokens, [0, 1]);
var segments = splitTokenList(item.tokens.slice(1));
var ret = {
intertype: 'store',
valueType: item.tokens[1].text,
value: parseLLVMSegment(segments[0]),
pointer: parseLLVMSegment(segments[1]),
lineNum: item.lineNum
};
Types.needAnalysis[ret.valueType] = 0;
ret.ident = toNiceIdent(ret.pointer.ident);
ret.pointerType = ret.pointer.type;
Types.needAnalysis[ret.pointerType] = 0;
if (segments.length > 2) {
assert(segments[2][0].text == 'align');
ret.align = parseInt(segments[2][1].text) || QUANTUM_SIZE; // 0 means preferred arch align
} else {
ret.align = QUANTUM_SIZE;
}
return [ret];
}
});
// 'br'
substrate.addActor('Branch', {
processItem: function(item) {
if (item.tokens[1].text == 'label') {
return [{
intertype: 'branch',
label: toNiceIdent(item.tokens[2].text),
lineNum: item.lineNum
}];
} else {
var commaIndex = findTokenText(item, ',');
return [{
intertype: 'branch',
value: parseLLVMSegment(item.tokens.slice(1, commaIndex)),
labelTrue: toNiceIdent(item.tokens[commaIndex+2].text),
labelFalse: toNiceIdent(item.tokens[commaIndex+5].text),
lineNum: item.lineNum
}];
}
}
});
// 'ret'
substrate.addActor('Return', {
processItem: function(item) {
var type = item.tokens[1].text;
Types.needAnalysis[type] = 0;
return [{
intertype: 'return',
type: type,
value: (item.tokens[2] && type !== 'void') ? parseLLVMSegment(item.tokens.slice(1)) : null,
lineNum: item.lineNum
}];
}
});
// 'resume' - partial implementation
substrate.addActor('Resume', {
processItem: function(item) {
return [{
intertype: 'resume',
ident: toNiceIdent(item.tokens[2].text),
lineNum: item.lineNum
}];
}
});
// 'switch'
substrate.addActor('Switch', {
processItem: function(item) {
function parseSwitchLabels(item) {
var ret = [];
var tokens = item.item.tokens;
while (tokens.length > 0) {
ret.push({
value: tokens[1].text,
label: toNiceIdent(tokens[4].text)
});
tokens = tokens.slice(5);
}
return ret;
}
var type = item.tokens[1].text;
Types.needAnalysis[type] = 0;
return [{
intertype: 'switch',
type: type,
ident: toNiceIdent(item.tokens[2].text),
defaultLabel: toNiceIdent(item.tokens[5].text),
switchLabels: parseSwitchLabels(item.tokens[6]),
lineNum: item.lineNum
}];
}
});
// function end
substrate.addActor('FuncEnd', {
processItem: function(item) {
return [{
intertype: 'functionEnd',
lineNum: item.lineNum
}];
}
});
// external function stub
substrate.addActor('External', {
processItem: function(item) {
while (item.tokens[1].text in LLVM.LINKAGES || item.tokens[1].text in LLVM.PARAM_ATTR || item.tokens[1].text in LLVM.VISIBILITIES || item.tokens[1].text in LLVM.CALLING_CONVENTIONS) {
item.tokens.splice(1, 1);
}
var params = parseParamTokens(item.tokens[3].item.tokens);
return [{
intertype: 'functionStub',
ident: toNiceIdent(item.tokens[2].text),
returnType: item.tokens[1],
params: params,
hasVarArgs: hasVarArgs(params),
lineNum: item.lineNum
}];
}
});
// 'unreachable'
substrate.addActor('Unreachable', {
processItem: function(item) {
return [{
intertype: 'unreachable',
lineNum: item.lineNum
}];
}
});
// 'indirectbr'
substrate.addActor('IndirectBr', {
processItem: function(item) {
var ret = {
intertype: 'indirectbr',
value: parseLLVMSegment(splitTokenList(item.tokens.slice(1))[0]),
type: item.tokens[1].text,
lineNum: item.lineNum
};
Types.needAnalysis[ret.type] = 0;
return [ret];
}