-
-
Notifications
You must be signed in to change notification settings - Fork 664
/
index-wasm.ts
390 lines (324 loc) · 11.7 KB
/
index-wasm.ts
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
/**
* @fileoverview The C-like and re-exported public compiler interface.
*
* The intended way to consume the compiler sources is to import this
* file, which again exports all relevant functions, classes and constants
* as a flat namespace.
*
* Note though that the compiler sources are written in "portable
* AssemblyScript" that can be compiled to both JavaScript with tsc and
* to WebAssembly with asc, and as such require additional glue code
* depending on the target.
*
* When compiling to JavaScript `glue/js/index.js` must be included.
* When compiling to WebAssembly `glue/wasm/index.ts` must be included.
*/
import {
Target,
Runtime,
Feature
} from "./common";
import {
Compiler,
Options,
UncheckedBehavior,
defaultFeatures
} from "./compiler";
import {
TSDBuilder,
JSBuilder
} from "./bindings";
import {
Range,
DiagnosticMessage,
DiagnosticCategory,
formatDiagnosticMessage
} from "./diagnostics";
import { Module } from "./module";
import { Program } from "./program";
import { Source } from "./ast";
// Options
/** Creates a new set of compiler options. */
export function newOptions(): Options {
return new Options();
}
/** Sets the `target` option. */
export function setTarget(options: Options, target: Target): void {
options.target = target;
}
export function setRuntime(options: Options, runtime: Runtime): void {
options.runtime = runtime;
}
/** Sets the `noAssert` option. */
export function setNoAssert(options: Options, noAssert: bool): void {
options.noAssert = noAssert;
}
/** Sets the `exportMemory` option. */
export function setExportMemory(options: Options, exportMemory: bool): void {
options.exportMemory = exportMemory;
}
/** Sets the `importMemory` option. */
export function setImportMemory(options: Options, importMemory: bool): void {
options.importMemory = importMemory;
}
/** Sets the `initialMemory` option. */
export function setInitialMemory(options: Options, initialMemory: u32): void {
options.initialMemory = initialMemory;
}
/** Sets the `maximumMemory` option. */
export function setMaximumMemory(options: Options, maximumMemory: u32): void {
options.maximumMemory = maximumMemory;
}
/** Sets the `sharedMemory` option. */
export function setSharedMemory(options: Options, sharedMemory: bool): void {
options.sharedMemory = sharedMemory;
}
/** Sets the `importTable` option. */
export function setImportTable(options: Options, importTable: bool): void {
options.importTable = importTable;
}
/** Sets the `exportTable` option. */
export function setExportTable(options: Options, exportTable: bool): void {
options.exportTable = exportTable;
}
/** Sets the `sourceMap` option. */
export function setSourceMap(options: Options, sourceMap: bool): void {
options.sourceMap = sourceMap;
}
/** Sets the `uncheckedBehavior` option. */
export function setUncheckedBehavior(options: Options, uncheckedBehavior: UncheckedBehavior): void {
options.uncheckedBehavior = uncheckedBehavior;
}
/** Sets the `memoryBase` option. */
export function setMemoryBase(options: Options, memoryBase: u32): void {
options.memoryBase = memoryBase;
}
/** Sets the `tableBase` option. */
export function setTableBase(options: Options, tableBase: u32): void {
options.tableBase = tableBase;
}
/** Adds a 'globalAliases' value. */
export function addGlobalAlias(options: Options, alias: string, name: string): void {
let globalAliases = options.globalAliases;
if (!globalAliases) options.globalAliases = globalAliases = new Map();
globalAliases.set(alias, name);
}
/** Removes a 'globalAliases' value. */
export function removeGlobalAlias(options: Options, alias: string): void {
let globalAliases = options.globalAliases;
if (globalAliases) globalAliases.delete(alias);
}
/** Sets the `exportStart` option. */
export function setExportStart(options: Options, exportStart: string | null): void {
options.exportStart = exportStart;
}
/** Sets the `noUnsafe` option. */
export function setNoUnsafe(options: Options, noUnsafe: bool): void {
options.noUnsafe = noUnsafe;
}
/** Sets the `lowMemoryLimit` option. */
export function setLowMemoryLimit(options: Options, lowMemoryLimit: i32): void {
options.lowMemoryLimit = lowMemoryLimit;
}
/** Sets the `exportRuntime` option. */
export function setExportRuntime(options: Options, exportRuntime: bool): void {
options.exportRuntime = exportRuntime;
}
/** Default stack size. */
export const DEFAULT_STACK_SIZE = 32768;
/** Sets the `stackSize` option. */
export function setStackSize(options: Options, stackSize: i32): void {
options.stackSize = stackSize;
}
/** Sets the bundle semantic version. */
export function setBundleVersion(
options: Options,
bundleMajorVersion: i32,
bundleMinorVersion: i32,
bundlePatchVersion: i32,
): void {
options.bundleMajorVersion = bundleMajorVersion;
options.bundleMinorVersion = bundleMinorVersion;
options.bundlePatchVersion = bundlePatchVersion;
}
/** Sign extension operations. */
export const FEATURE_SIGN_EXTENSION = Feature.SignExtension;
/** Mutable global imports and exports. */
export const FEATURE_MUTABLE_GLOBALS = Feature.MutableGlobals;
/** Non-trapping float to int conversion operations. */
export const FEATURE_NONTRAPPING_F2I = Feature.NontrappingF2I;
/** Bulk memory operations. */
export const FEATURE_BULK_MEMORY = Feature.BulkMemory;
/** SIMD types and operations. */
export const FEATURE_SIMD = Feature.Simd;
/** Threading and atomic operations. */
export const FEATURE_THREADS = Feature.Threads;
/** Exception handling operations. */
export const FEATURE_EXCEPTION_HANDLING = Feature.ExceptionHandling;
/** Tail call operations. */
export const FEATURE_TAIL_CALLS = Feature.TailCalls;
/** Reference types. */
export const FEATURE_REFERENCE_TYPES = Feature.ReferenceTypes;
/** Multi value types. */
export const FEATURE_MULTI_VALUE = Feature.MultiValue;
/** Garbage collection. */
export const FEATURE_GC = Feature.GC;
/** Memory64. */
export const FEATURE_MEMORY64 = Feature.Memory64;
/** Relaxed SIMD. */
export const FEATURE_RELAXED_SIMD = Feature.RelaxedSimd;
/** Extended const expressions. */
export const FEATURE_EXTENDED_CONST = Feature.ExtendedConst;
/** String references. */
export const FEATURE_STRINGREF = Feature.Stringref;
/** All features. */
export const FEATURES_ALL = Feature.All;
/** Default features. */
export const FEATURES_DEFAULT = defaultFeatures;
/** Sets whether a specific feature is enabled. */
export function setFeature(options: Options, feature: Feature, on: bool): void {
options.setFeature(feature, on);
}
/** Gives the compiler a hint at the optimize levels that will be used later on. */
export function setOptimizeLevelHints(options: Options, optimizeLevel: i32, shrinkLevel: i32): void {
options.optimizeLevelHint = optimizeLevel;
options.shrinkLevelHint = shrinkLevel;
}
/** Gives the compiler a hint of the emitted module's basename. */
export function setBasenameHint(options: Options, basename: string): void {
options.basenameHint = basename;
}
/** Gives the compiler a hint that bindings will be generated. */
export function setBindingsHint(options: Options, bindings: bool): void {
options.bindingsHint = bindings;
}
/** Sets the `pedantic` option. */
export function setPedantic(options: Options, pedantic: bool): void {
options.pedantic = pedantic;
}
export function setDebugInfo(options: Options, debug: bool): void {
options.debugInfo = debug;
}
// Program
/** Creates a new Program. */
export function newProgram(options: Options): Program {
return new Program(options);
}
/** Obtains the next diagnostic message. Returns `null` once complete. */
export function nextDiagnostic(program: Program): DiagnosticMessage | null {
return program.diagnosticsOffset < program.diagnostics.length
? program.diagnostics[program.diagnosticsOffset++]
: null;
}
/** Obtains the source of the given file. */
export function getSource(program: Program, internalPath: string): string | null {
return program.getSource(internalPath);
}
/** Formats a diagnostic message to a string. */
export { formatDiagnosticMessage as formatDiagnostic };
/** Gets the code of a diagnostic message. */
export function getDiagnosticCode(diagnostic: DiagnosticMessage): i32 {
return diagnostic.code;
}
/** Gets the category of a diagnostic message. */
export function getDiagnosticCategory(diagnostic: DiagnosticMessage): DiagnosticCategory {
return diagnostic.category;
}
/** Gets the textual message of a diagnostic message. */
export function getDiagnosticMessage(diagnostic: DiagnosticMessage): string {
return diagnostic.message;
}
/** Gets the primary range, if any, of a diagnostic message. */
export function getDiagnosticRange(diagnostic: DiagnosticMessage): Range | null {
return diagnostic.range;
}
/** Gets the related range, if any, of a diagnostic message. */
export function getDiagnosticRelatedRange(diagnostic: DiagnosticMessage): Range | null {
return diagnostic.relatedRange;
}
/** Gets a range's start offset. */
export function getRangeStart(range: Range): i32 {
return range.start;
}
/** Gets a range's end offsset. */
export function getRangeEnd(range: Range): i32 {
return range.end;
}
/** Gets a range's relevant source. */
export function getRangeSource(range: Range): Source {
return range.source;
}
/** Gets a source's normalized path. */
export function getSourceNormalizedPath(source: Source): string {
return source.normalizedPath;
}
/** Tests whether a diagnostic is informatory. */
export function isInfo(message: DiagnosticMessage): bool {
return message.category == DiagnosticCategory.Info;
}
/** Tests whether a diagnostic is a warning. */
export function isWarning(message: DiagnosticMessage): bool {
return message.category == DiagnosticCategory.Warning;
}
/** Tests whether a diagnostic is an error. */
export function isError(message: DiagnosticMessage): bool {
return message.category == DiagnosticCategory.Error;
}
// Parser
/** Parses a source file. If `parser` has been omitted a new one is created. */
export function parse(
/** Program reference. */
program: Program,
/** Source text of the file, or `null` to indicate not found. */
text: string | null,
/** Normalized path of the file. */
path: string,
/** Whether this is an entry file. */
isEntry: bool = false
): void {
program.parser.parseFile(text, path, isEntry);
}
/** Obtains the next required file's path. Returns `null` once complete. */
export function nextFile(program: Program): string | null {
return program.parser.nextFile();
}
/** Obtains the path of the dependee of a given imported file. */
export function getDependee(program: Program, file: string): string | null {
return program.parser.getDependee(file);
}
// Compiler
/** Initializes the program pre-emptively for transform hooks. */
export function initializeProgram(program: Program): void {
program.initialize();
}
/** Compiles the parsed sources to a module. */
export function compile(program: Program): Module {
program.parser.finish();
return new Compiler(program).compile();
}
/** Builds TypeScript definitions for the specified program. */
export function buildTSD(program: Program, esm: bool): string {
return TSDBuilder.build(program, esm);
}
/** Builds JavaScript glue code for the specified program. */
export function buildJS(program: Program, esm: bool): string {
return JSBuilder.build(program, esm);
}
/** Gets the Binaryen module reference of a module. */
export function getBinaryenModuleRef(module: Module): usize {
return module.ref;
}
/** Validates a module. */
export function validate(module: Module): bool {
return module.validate();
}
/** Optimizes a module. */
export function optimize(
module: Module,
optimizeLevel: i32,
shrinkLevel: i32,
debugInfo: bool = false,
zeroFilledMemory: bool = false
): void {
module.optimize(optimizeLevel, shrinkLevel, debugInfo, zeroFilledMemory);
}