Skip to content

Commit b857944

Browse files
authored
Rewrite runtime, switch to tracing GC and bootstrap (AssemblyScript#1559)
BREAKING: The exported runtime interface has changed, affecting how external objects are being kept alive. Please refer to the updated documentation on [Garbage collection](https://www.assemblyscript.org/garbage-collection.html) for all the details.
1 parent ffdf411 commit b857944

File tree

640 files changed

+545120
-251713
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

640 files changed

+545120
-251713
lines changed

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
dist/
22
docs/
3+
lib/binaryen.js
34
lib/parse/index.js
45
out/
56
raw/

.github/workflows/test.yml

+25-23
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,25 @@ jobs:
102102
run: npm test
103103
- name: Test browser build
104104
run: node tests/browser-asc
105+
test-bootstrap:
106+
name: "Compiler (Bootstrap)"
107+
runs-on: ubuntu-latest
108+
needs: check
109+
steps:
110+
- uses: actions/[email protected]
111+
- uses: dcodeIO/setup-node-nvm@master
112+
with:
113+
node-version: current
114+
- name: Install dependencies
115+
run: npm ci --no-audit
116+
- name: Clean distribution files
117+
run: npm run clean
118+
- name: Bootstrap the compiler
119+
run: npm run bootstrap
120+
- name: Run compiler tests (untouched-bootstrap)
121+
run: npm run test:compiler -- --wasm out/assemblyscript.untouched-bootstrap.wasm
122+
- name: Run compiler tests (optimized-bootstrap)
123+
run: npm run test:compiler -- --wasm out/assemblyscript.optimized-bootstrap.wasm
105124
test-features:
106125
name: "Features"
107126
runs-on: ubuntu-latest
@@ -134,18 +153,18 @@ jobs:
134153
run: npm ci --no-audit
135154
- name: Clean distribution files
136155
run: npm run clean
137-
- name: Test full runtime
156+
- name: Test default allocator
138157
run: |
139-
cd tests/allocators/rt-full
158+
cd tests/allocators/default
140159
npm run build
141160
cd ..
142-
npm test rt-full
143-
- name: Test stub runtime
161+
npm test default
162+
- name: Test stub allocator
144163
run: |
145-
cd tests/allocators/rt-stub
164+
cd tests/allocators/stub
146165
npm run build
147166
cd ..
148-
npm test rt-stub
167+
npm test stub
149168
test-loader:
150169
name: "Loader"
151170
runs-on: ubuntu-latest
@@ -164,20 +183,3 @@ jobs:
164183
cd lib/loader
165184
npm run asbuild
166185
npm run test
167-
test-bootstrap:
168-
name: "Bootstrap"
169-
runs-on: ubuntu-latest
170-
needs: check
171-
steps:
172-
- uses: actions/[email protected]
173-
- uses: dcodeIO/setup-node-nvm@master
174-
with:
175-
node-version: current
176-
- name: Install dependencies
177-
run: npm ci --no-audit
178-
- name: Clean distribution files
179-
run: npm run clean
180-
- name: Test self-compilation
181-
run: |
182-
npm run asbuild
183-
npm run astest

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ out/
66
raw/
77
.history
88
*.backup
9-
.vscode
9+
.vscode
10+
.idea

NOTICE

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ under the licensing terms detailed in LICENSE:
3030
* Gabor Greif <[email protected]>
3131
* Martin Fredriksson <[email protected]>
3232
* forcepusher <[email protected]>
33+
* Piotr Oleś <[email protected]>
3334

3435
Portions of this software are derived from third-party works licensed under
3536
the following terms:

cli/asc.d.ts

+36-1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,39 @@ export interface MemoryStream extends OutputStream {
5555
toString(): string;
5656
}
5757

58+
/** Relevant subset of the Source class for diagnostic reporting. */
59+
export interface Source {
60+
/** Normalized path with file extension. */
61+
normalizedPath: string;
62+
}
63+
64+
/** Relevant subset of the Range class for diagnostic reporting. */
65+
export interface Range {
66+
/** Start offset within the source file. */
67+
start: number;
68+
/** End offset within the source file. */
69+
end: number;
70+
/** Respective source file. */
71+
source: Source;
72+
}
73+
74+
/** Relevant subset of the DiagnosticMessage class for diagnostic reporting. */
75+
export interface DiagnosticMessage {
76+
/** Message code. */
77+
code: number;
78+
/** Message category. */
79+
category: number;
80+
/** Message text. */
81+
message: string;
82+
/** Respective source range, if any. */
83+
range: Range | null;
84+
/** Related range, if any. */
85+
relatedRange: Range | null;
86+
}
87+
88+
/** A function handling diagnostic messages. */
89+
type DiagnosticReporter = (diagnostic: DiagnosticMessage) => void;
90+
5891
/** Compiler options. */
5992
export interface CompilerOptions {
6093
/** Prints just the compiler's version and exits. */
@@ -157,6 +190,8 @@ export interface APIOptions {
157190
writeFile?: (filename: string, contents: Uint8Array, baseDir: string) => void;
158191
/** Lists all files within a directory. */
159192
listFiles?: (dirname: string, baseDir: string) => string[] | null;
193+
/** Handler for diagnostic messages. */
194+
reportDiagnostic?: DiagnosticReporter;
160195
}
161196

162197
/** Convenience function that parses and compiles source strings directly. */
@@ -176,7 +211,7 @@ export function main(argv: string[], options: APIOptions, callback?: (err: Error
176211
export function main(argv: string[], callback?: (err: Error | null) => number): number;
177212

178213
/** Checks diagnostics emitted so far for errors. */
179-
export function checkDiagnostics(emitter: Record<string,unknown>, stderr?: OutputStream): boolean;
214+
export function checkDiagnostics(emitter: Record<string,unknown>, stderr?: OutputStream, reportDiagnostic?: DiagnosticReporter): boolean;
180215

181216
/** An object of stats for the current task. */
182217
export interface Stats {

0 commit comments

Comments
 (0)