mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-26 15:32:16 +00:00
Fix 'static readonly' not being recognized as constant anymore, see #44
This commit is contained in:
parent
5323e64af9
commit
fea8e65a41
2
dist/asc.js
vendored
2
dist/asc.js
vendored
File diff suppressed because one or more lines are too long
2
dist/asc.js.map
vendored
2
dist/asc.js.map
vendored
File diff suppressed because one or more lines are too long
2
dist/assemblyscript.js
vendored
2
dist/assemblyscript.js
vendored
File diff suppressed because one or more lines are too long
2
dist/assemblyscript.js.map
vendored
2
dist/assemblyscript.js.map
vendored
File diff suppressed because one or more lines are too long
@ -156,7 +156,7 @@ export abstract class Node {
|
|||||||
|
|
||||||
static createParameter(
|
static createParameter(
|
||||||
name: IdentifierExpression,
|
name: IdentifierExpression,
|
||||||
type: CommonTypeNode | null,
|
type: CommonTypeNode,
|
||||||
initializer: Expression | null,
|
initializer: Expression | null,
|
||||||
kind: ParameterKind,
|
kind: ParameterKind,
|
||||||
range: Range
|
range: Range
|
||||||
@ -1040,7 +1040,7 @@ export class ParameterNode extends Node {
|
|||||||
/** Parameter name. */
|
/** Parameter name. */
|
||||||
name: IdentifierExpression;
|
name: IdentifierExpression;
|
||||||
/** Parameter type. */
|
/** Parameter type. */
|
||||||
type: CommonTypeNode | null;
|
type: CommonTypeNode;
|
||||||
/** Initializer expression, if present. */
|
/** Initializer expression, if present. */
|
||||||
initializer: Expression | null;
|
initializer: Expression | null;
|
||||||
}
|
}
|
||||||
@ -1052,7 +1052,7 @@ export class SignatureNode extends CommonTypeNode {
|
|||||||
/** Accepted parameters. */
|
/** Accepted parameters. */
|
||||||
parameterTypes: ParameterNode[];
|
parameterTypes: ParameterNode[];
|
||||||
/** Return type. */
|
/** Return type. */
|
||||||
returnType: CommonTypeNode | null;
|
returnType: CommonTypeNode;
|
||||||
/** Explicitly provided this type, if any. */
|
/** Explicitly provided this type, if any. */
|
||||||
explicitThisType: TypeNode | null; // can't be a function
|
explicitThisType: TypeNode | null; // can't be a function
|
||||||
}
|
}
|
||||||
|
@ -510,12 +510,13 @@ export class Compiler extends DiagnosticEmitter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
var nativeType = global.type.toNativeType();
|
var nativeType = global.type.toNativeType();
|
||||||
|
var isConstant = global.isAny(CommonFlags.CONST) || global.is(CommonFlags.STATIC | CommonFlags.READONLY);
|
||||||
|
|
||||||
// handle imports
|
// handle imports
|
||||||
if (global.is(CommonFlags.DECLARE)) {
|
if (global.is(CommonFlags.DECLARE)) {
|
||||||
|
|
||||||
// constant global
|
// constant global
|
||||||
if (global.is(CommonFlags.CONST)) {
|
if (isConstant) {
|
||||||
global.set(CommonFlags.MODULE_IMPORT);
|
global.set(CommonFlags.MODULE_IMPORT);
|
||||||
module.addGlobalImport(
|
module.addGlobalImport(
|
||||||
global.internalName,
|
global.internalName,
|
||||||
@ -558,7 +559,7 @@ export class Compiler extends DiagnosticEmitter {
|
|||||||
if (_BinaryenExpressionGetId(initExpr) != ExpressionId.Const) {
|
if (_BinaryenExpressionGetId(initExpr) != ExpressionId.Const) {
|
||||||
|
|
||||||
// if a constant global, check if the initializer becomes constant after precompute
|
// if a constant global, check if the initializer becomes constant after precompute
|
||||||
if (global.is(CommonFlags.CONST)) {
|
if (isConstant) {
|
||||||
initExpr = this.precomputeExpressionRef(initExpr);
|
initExpr = this.precomputeExpressionRef(initExpr);
|
||||||
if (_BinaryenExpressionGetId(initExpr) != ExpressionId.Const) {
|
if (_BinaryenExpressionGetId(initExpr) != ExpressionId.Const) {
|
||||||
this.warning(
|
this.warning(
|
||||||
@ -586,7 +587,7 @@ export class Compiler extends DiagnosticEmitter {
|
|||||||
|
|
||||||
} else { // compile as-is
|
} else { // compile as-is
|
||||||
|
|
||||||
if (global.is(CommonFlags.CONST)) {
|
if (isConstant) {
|
||||||
let exprType = _BinaryenExpressionGetType(initExpr);
|
let exprType = _BinaryenExpressionGetType(initExpr);
|
||||||
switch (exprType) {
|
switch (exprType) {
|
||||||
case NativeType.I32: {
|
case NativeType.I32: {
|
||||||
@ -624,7 +625,7 @@ export class Compiler extends DiagnosticEmitter {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
global.set(CommonFlags.INLINED); // inline the value from now on
|
global.set(CommonFlags.INLINED); // inline the value from now on
|
||||||
if (declaration.isTopLevel) { // but keep the element if it might be re-exported
|
if (declaration.isTopLevel) { // but keep the element as it might be re-exported
|
||||||
module.addGlobal(internalName, nativeType, false, initExpr);
|
module.addGlobal(internalName, nativeType, false, initExpr);
|
||||||
}
|
}
|
||||||
if (declaration.range.source.isEntry && declaration.isTopLevelExport) {
|
if (declaration.range.source.isEntry && declaration.isTopLevelExport) {
|
||||||
@ -632,7 +633,7 @@ export class Compiler extends DiagnosticEmitter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
} else /* mutable */ {
|
} else /* mutable */ {
|
||||||
module.addGlobal(internalName, nativeType, !global.is(CommonFlags.CONST), initExpr);
|
module.addGlobal(internalName, nativeType, !isConstant, initExpr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
@ -844,6 +845,7 @@ export class Compiler extends DiagnosticEmitter {
|
|||||||
let flow = instance.flow;
|
let flow = instance.flow;
|
||||||
let stmt: ExpressionRef;
|
let stmt: ExpressionRef;
|
||||||
if (body.kind == NodeKind.EXPRESSION) { // () => expression
|
if (body.kind == NodeKind.EXPRESSION) { // () => expression
|
||||||
|
assert(instance.is(CommonFlags.ARROW));
|
||||||
stmt = this.compileExpression((<ExpressionStatement>body).expression, returnType);
|
stmt = this.compileExpression((<ExpressionStatement>body).expression, returnType);
|
||||||
flow.set(FlowFlags.RETURNS);
|
flow.set(FlowFlags.RETURNS);
|
||||||
} else {
|
} else {
|
||||||
@ -854,7 +856,7 @@ export class Compiler extends DiagnosticEmitter {
|
|||||||
if (returnType != Type.void && !allBranchesReturn) {
|
if (returnType != Type.void && !allBranchesReturn) {
|
||||||
this.error(
|
this.error(
|
||||||
DiagnosticCode.A_function_whose_declared_type_is_not_void_must_return_a_value,
|
DiagnosticCode.A_function_whose_declared_type_is_not_void_must_return_a_value,
|
||||||
assert(declaration.signature.returnType, "return type expected").range
|
declaration.signature.returnType.range
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1032,6 +1032,8 @@ export class Parser extends DiagnosticEmitter {
|
|||||||
if (tn.skip(Token.COLON)) {
|
if (tn.skip(Token.COLON)) {
|
||||||
type = this.parseType(tn);
|
type = this.parseType(tn);
|
||||||
if (!type) return null;
|
if (!type) return null;
|
||||||
|
} else {
|
||||||
|
type = Node.createOmittedType(tn.range(tn.pos));
|
||||||
}
|
}
|
||||||
let initializer: Expression | null = null;
|
let initializer: Expression | null = null;
|
||||||
if (tn.skip(Token.EQUALS)) {
|
if (tn.skip(Token.EQUALS)) {
|
||||||
|
@ -9,7 +9,8 @@
|
|||||||
|
|
||||||
import { MASK as AL_MASK } from "./common/alignment";
|
import { MASK as AL_MASK } from "./common/alignment";
|
||||||
|
|
||||||
var offset: usize = (HEAP_BASE + AL_MASK) & ~AL_MASK;
|
var startOffset: usize = (HEAP_BASE + AL_MASK) & ~AL_MASK;
|
||||||
|
var offset: usize = startOffset;
|
||||||
|
|
||||||
@global
|
@global
|
||||||
export function allocate_memory(size: usize): usize {
|
export function allocate_memory(size: usize): usize {
|
||||||
@ -37,5 +38,5 @@ export function free_memory(ptr: usize): void {
|
|||||||
|
|
||||||
@global
|
@global
|
||||||
export function reset_memory(): void {
|
export function reset_memory(): void {
|
||||||
offset = (HEAP_BASE + AL_MASK) & ~AL_MASK;
|
offset = startOffset;
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
(type $ii (func (param i32) (result i32)))
|
(type $ii (func (param i32) (result i32)))
|
||||||
(type $iv (func (param i32)))
|
(type $iv (func (param i32)))
|
||||||
(type $v (func))
|
(type $v (func))
|
||||||
|
(global "$(lib)/allocator/arena/startOffset" (mut i32) (i32.const 0))
|
||||||
(global "$(lib)/allocator/arena/offset" (mut i32) (i32.const 0))
|
(global "$(lib)/allocator/arena/offset" (mut i32) (i32.const 0))
|
||||||
(global $HEAP_BASE i32 (i32.const 4))
|
(global $HEAP_BASE i32 (i32.const 4))
|
||||||
(memory $0 1)
|
(memory $0 1)
|
||||||
@ -9,89 +10,89 @@
|
|||||||
(export "free_memory" (func "$(lib)/allocator/arena/free_memory"))
|
(export "free_memory" (func "$(lib)/allocator/arena/free_memory"))
|
||||||
(export "reset_memory" (func "$(lib)/allocator/arena/reset_memory"))
|
(export "reset_memory" (func "$(lib)/allocator/arena/reset_memory"))
|
||||||
(export "memory" (memory $0))
|
(export "memory" (memory $0))
|
||||||
(start $(lib)/allocator/arena/reset_memory)
|
(start $start)
|
||||||
(func "$(lib)/allocator/arena/allocate_memory" (; 0 ;) (type $ii) (param $0 i32) (result i32)
|
(func "$(lib)/allocator/arena/allocate_memory" (; 0 ;) (type $ii) (param $0 i32) (result i32)
|
||||||
(local $1 i32)
|
(local $1 i32)
|
||||||
(local $2 i32)
|
(local $2 i32)
|
||||||
(local $3 i32)
|
(local $3 i32)
|
||||||
(local $4 i32)
|
(local $4 i32)
|
||||||
;;@ (lib)/allocator/arena.ts:14:2
|
;;@ (lib)/allocator/arena.ts:17:2
|
||||||
(if
|
(if
|
||||||
;;@ (lib)/allocator/arena.ts:14:6
|
;;@ (lib)/allocator/arena.ts:17:6
|
||||||
(i32.eqz
|
(i32.eqz
|
||||||
;;@ (lib)/allocator/arena.ts:14:7
|
;;@ (lib)/allocator/arena.ts:17:7
|
||||||
(get_local $0)
|
(get_local $0)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:14:20
|
;;@ (lib)/allocator/arena.ts:17:20
|
||||||
(return
|
(return
|
||||||
(i32.const 0)
|
(i32.const 0)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:18:2
|
;;@ (lib)/allocator/arena.ts:21:2
|
||||||
(if
|
(if
|
||||||
;;@ (lib)/allocator/arena.ts:18:6
|
;;@ (lib)/allocator/arena.ts:21:6
|
||||||
(i32.gt_u
|
(i32.gt_u
|
||||||
;;@ (lib)/allocator/arena.ts:16:2
|
;;@ (lib)/allocator/arena.ts:19:2
|
||||||
(tee_local $2
|
(tee_local $2
|
||||||
;;@ (lib)/allocator/arena.ts:16:15
|
;;@ (lib)/allocator/arena.ts:19:15
|
||||||
(i32.and
|
(i32.and
|
||||||
(i32.add
|
(i32.add
|
||||||
;;@ (lib)/allocator/arena.ts:16:16
|
;;@ (lib)/allocator/arena.ts:19:16
|
||||||
(i32.add
|
(i32.add
|
||||||
;;@ (lib)/allocator/arena.ts:15:2
|
;;@ (lib)/allocator/arena.ts:18:2
|
||||||
(tee_local $1
|
(tee_local $1
|
||||||
;;@ (lib)/allocator/arena.ts:15:12
|
;;@ (lib)/allocator/arena.ts:18:12
|
||||||
(get_global "$(lib)/allocator/arena/offset")
|
(get_global "$(lib)/allocator/arena/offset")
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:16:22
|
;;@ (lib)/allocator/arena.ts:19:22
|
||||||
(get_local $0)
|
(get_local $0)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:16:29
|
;;@ (lib)/allocator/arena.ts:19:29
|
||||||
(i32.const 7)
|
(i32.const 7)
|
||||||
)
|
)
|
||||||
(i32.const -8)
|
(i32.const -8)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:18:15
|
;;@ (lib)/allocator/arena.ts:21:15
|
||||||
(i32.shl
|
(i32.shl
|
||||||
;;@ (lib)/allocator/arena.ts:17:2
|
;;@ (lib)/allocator/arena.ts:20:2
|
||||||
(tee_local $0
|
(tee_local $0
|
||||||
;;@ (lib)/allocator/arena.ts:17:20
|
;;@ (lib)/allocator/arena.ts:20:20
|
||||||
(current_memory)
|
(current_memory)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:18:37
|
;;@ (lib)/allocator/arena.ts:21:37
|
||||||
(i32.const 16)
|
(i32.const 16)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:21:4
|
;;@ (lib)/allocator/arena.ts:24:4
|
||||||
(if
|
(if
|
||||||
;;@ (lib)/allocator/arena.ts:21:8
|
;;@ (lib)/allocator/arena.ts:24:8
|
||||||
(i32.lt_s
|
(i32.lt_s
|
||||||
(grow_memory
|
(grow_memory
|
||||||
;;@ (lib)/allocator/arena.ts:20:22
|
;;@ (lib)/allocator/arena.ts:23:22
|
||||||
(select
|
(select
|
||||||
;;@ (lib)/allocator/arena.ts:20:26
|
;;@ (lib)/allocator/arena.ts:23:26
|
||||||
(get_local $0)
|
(get_local $0)
|
||||||
(tee_local $4
|
(tee_local $4
|
||||||
;;@ (lib)/allocator/arena.ts:19:4
|
;;@ (lib)/allocator/arena.ts:22:4
|
||||||
(tee_local $3
|
(tee_local $3
|
||||||
;;@ (lib)/allocator/arena.ts:19:22
|
;;@ (lib)/allocator/arena.ts:22:22
|
||||||
(i32.shr_u
|
(i32.shr_u
|
||||||
(i32.and
|
(i32.and
|
||||||
;;@ (lib)/allocator/arena.ts:19:23
|
;;@ (lib)/allocator/arena.ts:22:23
|
||||||
(i32.add
|
(i32.add
|
||||||
;;@ (lib)/allocator/arena.ts:19:24
|
;;@ (lib)/allocator/arena.ts:22:24
|
||||||
(i32.sub
|
(i32.sub
|
||||||
(get_local $2)
|
(get_local $2)
|
||||||
;;@ (lib)/allocator/arena.ts:19:33
|
;;@ (lib)/allocator/arena.ts:22:33
|
||||||
(get_local $1)
|
(get_local $1)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:19:39
|
;;@ (lib)/allocator/arena.ts:22:39
|
||||||
(i32.const 65535)
|
(i32.const 65535)
|
||||||
)
|
)
|
||||||
(i32.const -65536)
|
(i32.const -65536)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:19:62
|
;;@ (lib)/allocator/arena.ts:22:62
|
||||||
(i32.const 16)
|
(i32.const 16)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
@ -102,50 +103,60 @@
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:21:35
|
;;@ (lib)/allocator/arena.ts:24:35
|
||||||
(i32.const 0)
|
(i32.const 0)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:22:6
|
;;@ (lib)/allocator/arena.ts:25:6
|
||||||
(if
|
(if
|
||||||
;;@ (lib)/allocator/arena.ts:22:10
|
;;@ (lib)/allocator/arena.ts:25:10
|
||||||
(i32.lt_s
|
(i32.lt_s
|
||||||
(grow_memory
|
(grow_memory
|
||||||
;;@ (lib)/allocator/arena.ts:22:22
|
;;@ (lib)/allocator/arena.ts:25:22
|
||||||
(get_local $3)
|
(get_local $3)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:22:37
|
;;@ (lib)/allocator/arena.ts:25:37
|
||||||
(i32.const 0)
|
(i32.const 0)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:23:8
|
;;@ (lib)/allocator/arena.ts:26:8
|
||||||
(unreachable)
|
(unreachable)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:27:2
|
;;@ (lib)/allocator/arena.ts:30:2
|
||||||
(set_global "$(lib)/allocator/arena/offset"
|
(set_global "$(lib)/allocator/arena/offset"
|
||||||
;;@ (lib)/allocator/arena.ts:27:11
|
;;@ (lib)/allocator/arena.ts:30:11
|
||||||
(get_local $2)
|
(get_local $2)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:28:9
|
;;@ (lib)/allocator/arena.ts:31:9
|
||||||
(get_local $1)
|
(get_local $1)
|
||||||
)
|
)
|
||||||
(func "$(lib)/allocator/arena/free_memory" (; 1 ;) (type $iv) (param $0 i32)
|
(func "$(lib)/allocator/arena/free_memory" (; 1 ;) (type $iv) (param $0 i32)
|
||||||
;;@ (lib)/allocator/arena.ts:32:46
|
;;@ (lib)/allocator/arena.ts:35:46
|
||||||
(nop)
|
(nop)
|
||||||
)
|
)
|
||||||
(func "$(lib)/allocator/arena/reset_memory" (; 2 ;) (type $v)
|
(func "$(lib)/allocator/arena/reset_memory" (; 2 ;) (type $v)
|
||||||
;;@ (lib)/allocator/arena.ts:38:2
|
;;@ (lib)/allocator/arena.ts:41:2
|
||||||
(set_global "$(lib)/allocator/arena/offset"
|
(set_global "$(lib)/allocator/arena/offset"
|
||||||
;;@ (lib)/allocator/arena.ts:38:11
|
;;@ (lib)/allocator/arena.ts:41:11
|
||||||
|
(get_global "$(lib)/allocator/arena/startOffset")
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(func $start (; 3 ;) (type $v)
|
||||||
|
(set_global "$(lib)/allocator/arena/startOffset"
|
||||||
|
;;@ (lib)/allocator/arena.ts:12:25
|
||||||
(i32.and
|
(i32.and
|
||||||
(i32.add
|
(i32.add
|
||||||
;;@ (lib)/allocator/arena.ts:38:12
|
;;@ (lib)/allocator/arena.ts:12:26
|
||||||
(get_global $HEAP_BASE)
|
(get_global $HEAP_BASE)
|
||||||
;;@ (lib)/allocator/arena.ts:38:24
|
;;@ (lib)/allocator/arena.ts:12:38
|
||||||
(i32.const 7)
|
(i32.const 7)
|
||||||
)
|
)
|
||||||
(i32.const -8)
|
(i32.const -8)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
(set_global "$(lib)/allocator/arena/offset"
|
||||||
|
;;@ (lib)/allocator/arena.ts:13:20
|
||||||
|
(get_global "$(lib)/allocator/arena/startOffset")
|
||||||
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
(global "$(lib)/allocator/common/alignment/BITS" i32 (i32.const 3))
|
(global "$(lib)/allocator/common/alignment/BITS" i32 (i32.const 3))
|
||||||
(global "$(lib)/allocator/common/alignment/SIZE" i32 (i32.const 8))
|
(global "$(lib)/allocator/common/alignment/SIZE" i32 (i32.const 8))
|
||||||
(global "$(lib)/allocator/common/alignment/MASK" i32 (i32.const 7))
|
(global "$(lib)/allocator/common/alignment/MASK" i32 (i32.const 7))
|
||||||
|
(global "$(lib)/allocator/arena/startOffset" (mut i32) (i32.const 0))
|
||||||
(global "$(lib)/allocator/arena/offset" (mut i32) (i32.const 0))
|
(global "$(lib)/allocator/arena/offset" (mut i32) (i32.const 0))
|
||||||
(global $HEAP_BASE i32 (i32.const 4))
|
(global $HEAP_BASE i32 (i32.const 4))
|
||||||
(memory $0 1)
|
(memory $0 1)
|
||||||
@ -21,101 +22,101 @@
|
|||||||
(local $4 i32)
|
(local $4 i32)
|
||||||
(local $5 i32)
|
(local $5 i32)
|
||||||
(local $6 i32)
|
(local $6 i32)
|
||||||
;;@ (lib)/allocator/arena.ts:14:2
|
;;@ (lib)/allocator/arena.ts:17:2
|
||||||
(if
|
(if
|
||||||
;;@ (lib)/allocator/arena.ts:14:6
|
;;@ (lib)/allocator/arena.ts:17:6
|
||||||
(i32.eqz
|
(i32.eqz
|
||||||
;;@ (lib)/allocator/arena.ts:14:7
|
;;@ (lib)/allocator/arena.ts:17:7
|
||||||
(get_local $0)
|
(get_local $0)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:14:20
|
;;@ (lib)/allocator/arena.ts:17:20
|
||||||
(return
|
(return
|
||||||
(i32.const 0)
|
(i32.const 0)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:15:2
|
;;@ (lib)/allocator/arena.ts:18:2
|
||||||
(set_local $1
|
(set_local $1
|
||||||
;;@ (lib)/allocator/arena.ts:15:12
|
;;@ (lib)/allocator/arena.ts:18:12
|
||||||
(get_global "$(lib)/allocator/arena/offset")
|
(get_global "$(lib)/allocator/arena/offset")
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:16:2
|
;;@ (lib)/allocator/arena.ts:19:2
|
||||||
(set_local $2
|
(set_local $2
|
||||||
;;@ (lib)/allocator/arena.ts:16:15
|
;;@ (lib)/allocator/arena.ts:19:15
|
||||||
(i32.and
|
(i32.and
|
||||||
(i32.add
|
(i32.add
|
||||||
;;@ (lib)/allocator/arena.ts:16:16
|
;;@ (lib)/allocator/arena.ts:19:16
|
||||||
(i32.add
|
(i32.add
|
||||||
(get_local $1)
|
(get_local $1)
|
||||||
;;@ (lib)/allocator/arena.ts:16:22
|
;;@ (lib)/allocator/arena.ts:19:22
|
||||||
(get_local $0)
|
(get_local $0)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:16:29
|
;;@ (lib)/allocator/arena.ts:19:29
|
||||||
(i32.const 7)
|
(i32.const 7)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:16:40
|
;;@ (lib)/allocator/arena.ts:19:40
|
||||||
(i32.xor
|
(i32.xor
|
||||||
;;@ (lib)/allocator/arena.ts:16:41
|
;;@ (lib)/allocator/arena.ts:19:41
|
||||||
(i32.const 7)
|
(i32.const 7)
|
||||||
(i32.const -1)
|
(i32.const -1)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:17:2
|
;;@ (lib)/allocator/arena.ts:20:2
|
||||||
(set_local $3
|
(set_local $3
|
||||||
;;@ (lib)/allocator/arena.ts:17:20
|
;;@ (lib)/allocator/arena.ts:20:20
|
||||||
(current_memory)
|
(current_memory)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:18:2
|
;;@ (lib)/allocator/arena.ts:21:2
|
||||||
(if
|
(if
|
||||||
;;@ (lib)/allocator/arena.ts:18:6
|
;;@ (lib)/allocator/arena.ts:21:6
|
||||||
(i32.gt_u
|
(i32.gt_u
|
||||||
(get_local $2)
|
(get_local $2)
|
||||||
;;@ (lib)/allocator/arena.ts:18:15
|
;;@ (lib)/allocator/arena.ts:21:15
|
||||||
(i32.shl
|
(i32.shl
|
||||||
(get_local $3)
|
(get_local $3)
|
||||||
;;@ (lib)/allocator/arena.ts:18:37
|
;;@ (lib)/allocator/arena.ts:21:37
|
||||||
(i32.const 16)
|
(i32.const 16)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:18:41
|
;;@ (lib)/allocator/arena.ts:21:41
|
||||||
(block
|
(block
|
||||||
;;@ (lib)/allocator/arena.ts:19:4
|
;;@ (lib)/allocator/arena.ts:22:4
|
||||||
(set_local $4
|
(set_local $4
|
||||||
;;@ (lib)/allocator/arena.ts:19:22
|
;;@ (lib)/allocator/arena.ts:22:22
|
||||||
(i32.shr_u
|
(i32.shr_u
|
||||||
(i32.and
|
(i32.and
|
||||||
;;@ (lib)/allocator/arena.ts:19:23
|
;;@ (lib)/allocator/arena.ts:22:23
|
||||||
(i32.add
|
(i32.add
|
||||||
;;@ (lib)/allocator/arena.ts:19:24
|
;;@ (lib)/allocator/arena.ts:22:24
|
||||||
(i32.sub
|
(i32.sub
|
||||||
(get_local $2)
|
(get_local $2)
|
||||||
;;@ (lib)/allocator/arena.ts:19:33
|
;;@ (lib)/allocator/arena.ts:22:33
|
||||||
(get_local $1)
|
(get_local $1)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:19:39
|
;;@ (lib)/allocator/arena.ts:22:39
|
||||||
(i32.const 65535)
|
(i32.const 65535)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:19:49
|
;;@ (lib)/allocator/arena.ts:22:49
|
||||||
(i32.xor
|
(i32.xor
|
||||||
;;@ (lib)/allocator/arena.ts:19:50
|
;;@ (lib)/allocator/arena.ts:22:50
|
||||||
(i32.const 65535)
|
(i32.const 65535)
|
||||||
(i32.const -1)
|
(i32.const -1)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:19:62
|
;;@ (lib)/allocator/arena.ts:22:62
|
||||||
(i32.const 16)
|
(i32.const 16)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:20:4
|
;;@ (lib)/allocator/arena.ts:23:4
|
||||||
(set_local $5
|
(set_local $5
|
||||||
;;@ (lib)/allocator/arena.ts:20:22
|
;;@ (lib)/allocator/arena.ts:23:22
|
||||||
(select
|
(select
|
||||||
(tee_local $5
|
(tee_local $5
|
||||||
;;@ (lib)/allocator/arena.ts:20:26
|
;;@ (lib)/allocator/arena.ts:23:26
|
||||||
(get_local $3)
|
(get_local $3)
|
||||||
)
|
)
|
||||||
(tee_local $6
|
(tee_local $6
|
||||||
;;@ (lib)/allocator/arena.ts:20:39
|
;;@ (lib)/allocator/arena.ts:23:39
|
||||||
(get_local $4)
|
(get_local $4)
|
||||||
)
|
)
|
||||||
(i32.gt_s
|
(i32.gt_s
|
||||||
@ -124,40 +125,40 @@
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:21:4
|
;;@ (lib)/allocator/arena.ts:24:4
|
||||||
(if
|
(if
|
||||||
;;@ (lib)/allocator/arena.ts:21:8
|
;;@ (lib)/allocator/arena.ts:24:8
|
||||||
(i32.lt_s
|
(i32.lt_s
|
||||||
(grow_memory
|
(grow_memory
|
||||||
;;@ (lib)/allocator/arena.ts:21:20
|
;;@ (lib)/allocator/arena.ts:24:20
|
||||||
(get_local $5)
|
(get_local $5)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:21:35
|
;;@ (lib)/allocator/arena.ts:24:35
|
||||||
(i32.const 0)
|
(i32.const 0)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:22:6
|
;;@ (lib)/allocator/arena.ts:25:6
|
||||||
(if
|
(if
|
||||||
;;@ (lib)/allocator/arena.ts:22:10
|
;;@ (lib)/allocator/arena.ts:25:10
|
||||||
(i32.lt_s
|
(i32.lt_s
|
||||||
(grow_memory
|
(grow_memory
|
||||||
;;@ (lib)/allocator/arena.ts:22:22
|
;;@ (lib)/allocator/arena.ts:25:22
|
||||||
(get_local $4)
|
(get_local $4)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:22:37
|
;;@ (lib)/allocator/arena.ts:25:37
|
||||||
(i32.const 0)
|
(i32.const 0)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:23:8
|
;;@ (lib)/allocator/arena.ts:26:8
|
||||||
(unreachable)
|
(unreachable)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:27:2
|
;;@ (lib)/allocator/arena.ts:30:2
|
||||||
(set_global "$(lib)/allocator/arena/offset"
|
(set_global "$(lib)/allocator/arena/offset"
|
||||||
;;@ (lib)/allocator/arena.ts:27:11
|
;;@ (lib)/allocator/arena.ts:30:11
|
||||||
(get_local $2)
|
(get_local $2)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:28:9
|
;;@ (lib)/allocator/arena.ts:31:9
|
||||||
(return
|
(return
|
||||||
(get_local $1)
|
(get_local $1)
|
||||||
)
|
)
|
||||||
@ -165,42 +166,33 @@
|
|||||||
(func "$(lib)/allocator/arena/free_memory" (; 1 ;) (type $iv) (param $0 i32)
|
(func "$(lib)/allocator/arena/free_memory" (; 1 ;) (type $iv) (param $0 i32)
|
||||||
)
|
)
|
||||||
(func "$(lib)/allocator/arena/reset_memory" (; 2 ;) (type $v)
|
(func "$(lib)/allocator/arena/reset_memory" (; 2 ;) (type $v)
|
||||||
;;@ (lib)/allocator/arena.ts:38:2
|
;;@ (lib)/allocator/arena.ts:41:2
|
||||||
(set_global "$(lib)/allocator/arena/offset"
|
(set_global "$(lib)/allocator/arena/offset"
|
||||||
;;@ (lib)/allocator/arena.ts:38:11
|
;;@ (lib)/allocator/arena.ts:41:11
|
||||||
(i32.and
|
(get_global "$(lib)/allocator/arena/startOffset")
|
||||||
(i32.add
|
|
||||||
;;@ (lib)/allocator/arena.ts:38:12
|
|
||||||
(get_global $HEAP_BASE)
|
|
||||||
;;@ (lib)/allocator/arena.ts:38:24
|
|
||||||
(i32.const 7)
|
|
||||||
)
|
|
||||||
;;@ (lib)/allocator/arena.ts:38:35
|
|
||||||
(i32.xor
|
|
||||||
;;@ (lib)/allocator/arena.ts:38:36
|
|
||||||
(i32.const 7)
|
|
||||||
(i32.const -1)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
(func $start (; 3 ;) (type $v)
|
(func $start (; 3 ;) (type $v)
|
||||||
(set_global "$(lib)/allocator/arena/offset"
|
(set_global "$(lib)/allocator/arena/startOffset"
|
||||||
;;@ (lib)/allocator/arena.ts:10:20
|
;;@ (lib)/allocator/arena.ts:12:25
|
||||||
(i32.and
|
(i32.and
|
||||||
(i32.add
|
(i32.add
|
||||||
;;@ (lib)/allocator/arena.ts:10:21
|
;;@ (lib)/allocator/arena.ts:12:26
|
||||||
(get_global $HEAP_BASE)
|
(get_global $HEAP_BASE)
|
||||||
;;@ (lib)/allocator/arena.ts:10:33
|
;;@ (lib)/allocator/arena.ts:12:38
|
||||||
(i32.const 7)
|
(i32.const 7)
|
||||||
)
|
)
|
||||||
;;@ (lib)/allocator/arena.ts:10:44
|
;;@ (lib)/allocator/arena.ts:12:49
|
||||||
(i32.xor
|
(i32.xor
|
||||||
;;@ (lib)/allocator/arena.ts:10:45
|
;;@ (lib)/allocator/arena.ts:12:50
|
||||||
(i32.const 7)
|
(i32.const 7)
|
||||||
(i32.const -1)
|
(i32.const -1)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
(set_global "$(lib)/allocator/arena/offset"
|
||||||
|
;;@ (lib)/allocator/arena.ts:13:20
|
||||||
|
(get_global "$(lib)/allocator/arena/startOffset")
|
||||||
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -6,6 +6,7 @@
|
|||||||
(type $iv (func (param i32)))
|
(type $iv (func (param i32)))
|
||||||
(type $v (func))
|
(type $v (func))
|
||||||
(import "env" "abort" (func $abort (param i32 i32 i32 i32)))
|
(import "env" "abort" (func $abort (param i32 i32 i32 i32)))
|
||||||
|
(global "$(lib)/allocator/arena/startOffset" (mut i32) (i32.const 0))
|
||||||
(global "$(lib)/allocator/arena/offset" (mut i32) (i32.const 0))
|
(global "$(lib)/allocator/arena/offset" (mut i32) (i32.const 0))
|
||||||
(global $std/allocator_arena/ptr1 (mut i32) (i32.const 0))
|
(global $std/allocator_arena/ptr1 (mut i32) (i32.const 0))
|
||||||
(global $std/allocator_arena/ptr2 (mut i32) (i32.const 0))
|
(global $std/allocator_arena/ptr2 (mut i32) (i32.const 0))
|
||||||
@ -2361,17 +2362,11 @@
|
|||||||
)
|
)
|
||||||
(func "$(lib)/allocator/arena/reset_memory" (; 7 ;) (type $v)
|
(func "$(lib)/allocator/arena/reset_memory" (; 7 ;) (type $v)
|
||||||
(set_global "$(lib)/allocator/arena/offset"
|
(set_global "$(lib)/allocator/arena/offset"
|
||||||
(i32.and
|
(get_global "$(lib)/allocator/arena/startOffset")
|
||||||
(i32.add
|
|
||||||
(get_global $HEAP_BASE)
|
|
||||||
(i32.const 7)
|
|
||||||
)
|
|
||||||
(i32.const -8)
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
(func $start (; 8 ;) (type $v)
|
(func $start (; 8 ;) (type $v)
|
||||||
(set_global "$(lib)/allocator/arena/offset"
|
(set_global "$(lib)/allocator/arena/startOffset"
|
||||||
(i32.and
|
(i32.and
|
||||||
(i32.add
|
(i32.add
|
||||||
(get_global $HEAP_BASE)
|
(get_global $HEAP_BASE)
|
||||||
@ -2380,6 +2375,9 @@
|
|||||||
(i32.const -8)
|
(i32.const -8)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
(set_global "$(lib)/allocator/arena/offset"
|
||||||
|
(get_global "$(lib)/allocator/arena/startOffset")
|
||||||
|
)
|
||||||
(set_global $std/allocator_arena/ptr1
|
(set_global $std/allocator_arena/ptr1
|
||||||
(call "$(lib)/allocator/arena/allocate_memory"
|
(call "$(lib)/allocator/arena/allocate_memory"
|
||||||
(i32.const 42)
|
(i32.const 42)
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
(global "$(lib)/allocator/common/alignment/BITS" i32 (i32.const 3))
|
(global "$(lib)/allocator/common/alignment/BITS" i32 (i32.const 3))
|
||||||
(global "$(lib)/allocator/common/alignment/SIZE" i32 (i32.const 8))
|
(global "$(lib)/allocator/common/alignment/SIZE" i32 (i32.const 8))
|
||||||
(global "$(lib)/allocator/common/alignment/MASK" i32 (i32.const 7))
|
(global "$(lib)/allocator/common/alignment/MASK" i32 (i32.const 7))
|
||||||
|
(global "$(lib)/allocator/arena/startOffset" (mut i32) (i32.const 0))
|
||||||
(global "$(lib)/allocator/arena/offset" (mut i32) (i32.const 0))
|
(global "$(lib)/allocator/arena/offset" (mut i32) (i32.const 0))
|
||||||
(global $std/allocator_arena/size i32 (i32.const 42))
|
(global $std/allocator_arena/size i32 (i32.const 42))
|
||||||
(global $std/allocator_arena/ptr1 (mut i32) (i32.const 0))
|
(global $std/allocator_arena/ptr1 (mut i32) (i32.const 0))
|
||||||
@ -2668,20 +2669,11 @@
|
|||||||
)
|
)
|
||||||
(func "$(lib)/allocator/arena/reset_memory" (; 7 ;) (type $v)
|
(func "$(lib)/allocator/arena/reset_memory" (; 7 ;) (type $v)
|
||||||
(set_global "$(lib)/allocator/arena/offset"
|
(set_global "$(lib)/allocator/arena/offset"
|
||||||
(i32.and
|
(get_global "$(lib)/allocator/arena/startOffset")
|
||||||
(i32.add
|
|
||||||
(get_global $HEAP_BASE)
|
|
||||||
(i32.const 7)
|
|
||||||
)
|
|
||||||
(i32.xor
|
|
||||||
(i32.const 7)
|
|
||||||
(i32.const -1)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
(func $start (; 8 ;) (type $v)
|
(func $start (; 8 ;) (type $v)
|
||||||
(set_global "$(lib)/allocator/arena/offset"
|
(set_global "$(lib)/allocator/arena/startOffset"
|
||||||
(i32.and
|
(i32.and
|
||||||
(i32.add
|
(i32.add
|
||||||
(get_global $HEAP_BASE)
|
(get_global $HEAP_BASE)
|
||||||
@ -2693,6 +2685,9 @@
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
(set_global "$(lib)/allocator/arena/offset"
|
||||||
|
(get_global "$(lib)/allocator/arena/startOffset")
|
||||||
|
)
|
||||||
(set_global $std/allocator_arena/ptr1
|
(set_global $std/allocator_arena/ptr1
|
||||||
(call "$(lib)/allocator/arena/allocate_memory"
|
(call "$(lib)/allocator/arena/allocate_memory"
|
||||||
(i32.const 42)
|
(i32.const 42)
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
(type $iiiii (func (param i32 i32 i32 i32) (result i32)))
|
(type $iiiii (func (param i32 i32 i32 i32) (result i32)))
|
||||||
(type $v (func))
|
(type $v (func))
|
||||||
(import "env" "abort" (func $abort (param i32 i32 i32 i32)))
|
(import "env" "abort" (func $abort (param i32 i32 i32 i32)))
|
||||||
|
(global "$(lib)/allocator/arena/startOffset" (mut i32) (i32.const 0))
|
||||||
(global "$(lib)/allocator/arena/offset" (mut i32) (i32.const 0))
|
(global "$(lib)/allocator/arena/offset" (mut i32) (i32.const 0))
|
||||||
(global $std/array/arr (mut i32) (i32.const 0))
|
(global $std/array/arr (mut i32) (i32.const 0))
|
||||||
(global $std/array/i (mut i32) (i32.const 0))
|
(global $std/array/i (mut i32) (i32.const 0))
|
||||||
@ -3068,7 +3069,7 @@
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
(func $start (; 19 ;) (type $v)
|
(func $start (; 19 ;) (type $v)
|
||||||
(set_global "$(lib)/allocator/arena/offset"
|
(set_global "$(lib)/allocator/arena/startOffset"
|
||||||
(i32.and
|
(i32.and
|
||||||
(i32.add
|
(i32.add
|
||||||
(get_global $HEAP_BASE)
|
(get_global $HEAP_BASE)
|
||||||
@ -3077,6 +3078,9 @@
|
|||||||
(i32.const -8)
|
(i32.const -8)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
(set_global "$(lib)/allocator/arena/offset"
|
||||||
|
(get_global "$(lib)/allocator/arena/startOffset")
|
||||||
|
)
|
||||||
(set_global $std/array/arr
|
(set_global $std/array/arr
|
||||||
(call "$(lib)/allocator/arena/allocate_memory"
|
(call "$(lib)/allocator/arena/allocate_memory"
|
||||||
(i32.const 12)
|
(i32.const 12)
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
(global "$(lib)/allocator/common/alignment/BITS" i32 (i32.const 3))
|
(global "$(lib)/allocator/common/alignment/BITS" i32 (i32.const 3))
|
||||||
(global "$(lib)/allocator/common/alignment/SIZE" i32 (i32.const 8))
|
(global "$(lib)/allocator/common/alignment/SIZE" i32 (i32.const 8))
|
||||||
(global "$(lib)/allocator/common/alignment/MASK" i32 (i32.const 7))
|
(global "$(lib)/allocator/common/alignment/MASK" i32 (i32.const 7))
|
||||||
|
(global "$(lib)/allocator/arena/startOffset" (mut i32) (i32.const 0))
|
||||||
(global "$(lib)/allocator/arena/offset" (mut i32) (i32.const 0))
|
(global "$(lib)/allocator/arena/offset" (mut i32) (i32.const 0))
|
||||||
(global $std/array/arr (mut i32) (i32.const 0))
|
(global $std/array/arr (mut i32) (i32.const 0))
|
||||||
(global $std/array/i (mut i32) (i32.const 0))
|
(global $std/array/i (mut i32) (i32.const 0))
|
||||||
@ -3434,7 +3435,7 @@
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
(func $start (; 19 ;) (type $v)
|
(func $start (; 19 ;) (type $v)
|
||||||
(set_global "$(lib)/allocator/arena/offset"
|
(set_global "$(lib)/allocator/arena/startOffset"
|
||||||
(i32.and
|
(i32.and
|
||||||
(i32.add
|
(i32.add
|
||||||
(get_global $HEAP_BASE)
|
(get_global $HEAP_BASE)
|
||||||
@ -3446,6 +3447,9 @@
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
(set_global "$(lib)/allocator/arena/offset"
|
||||||
|
(get_global "$(lib)/allocator/arena/startOffset")
|
||||||
|
)
|
||||||
(set_global $std/array/arr
|
(set_global $std/array/arr
|
||||||
(call "$(lib)/allocator/arena/allocate_memory"
|
(call "$(lib)/allocator/arena/allocate_memory"
|
||||||
(i32.add
|
(i32.add
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
(type $ii (func (param i32) (result i32)))
|
(type $ii (func (param i32) (result i32)))
|
||||||
(type $ifv (func (param i32 f32)))
|
(type $ifv (func (param i32 f32)))
|
||||||
(type $v (func))
|
(type $v (func))
|
||||||
|
(global "$(lib)/allocator/arena/startOffset" (mut i32) (i32.const 0))
|
||||||
(global "$(lib)/allocator/arena/offset" (mut i32) (i32.const 0))
|
(global "$(lib)/allocator/arena/offset" (mut i32) (i32.const 0))
|
||||||
(global $std/new/aClass (mut i32) (i32.const 0))
|
(global $std/new/aClass (mut i32) (i32.const 0))
|
||||||
(global $HEAP_BASE i32 (i32.const 4))
|
(global $HEAP_BASE i32 (i32.const 4))
|
||||||
@ -107,7 +108,7 @@
|
|||||||
)
|
)
|
||||||
(func $start (; 2 ;) (type $v)
|
(func $start (; 2 ;) (type $v)
|
||||||
(local $0 i32)
|
(local $0 i32)
|
||||||
(set_global "$(lib)/allocator/arena/offset"
|
(set_global "$(lib)/allocator/arena/startOffset"
|
||||||
(i32.and
|
(i32.and
|
||||||
(i32.add
|
(i32.add
|
||||||
(get_global $HEAP_BASE)
|
(get_global $HEAP_BASE)
|
||||||
@ -116,6 +117,9 @@
|
|||||||
(i32.const -8)
|
(i32.const -8)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
(set_global "$(lib)/allocator/arena/offset"
|
||||||
|
(get_global "$(lib)/allocator/arena/startOffset")
|
||||||
|
)
|
||||||
(set_global $std/new/aClass
|
(set_global $std/new/aClass
|
||||||
(block (result i32)
|
(block (result i32)
|
||||||
(i32.store
|
(i32.store
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
(global "$(lib)/allocator/common/alignment/BITS" i32 (i32.const 3))
|
(global "$(lib)/allocator/common/alignment/BITS" i32 (i32.const 3))
|
||||||
(global "$(lib)/allocator/common/alignment/SIZE" i32 (i32.const 8))
|
(global "$(lib)/allocator/common/alignment/SIZE" i32 (i32.const 8))
|
||||||
(global "$(lib)/allocator/common/alignment/MASK" i32 (i32.const 7))
|
(global "$(lib)/allocator/common/alignment/MASK" i32 (i32.const 7))
|
||||||
|
(global "$(lib)/allocator/arena/startOffset" (mut i32) (i32.const 0))
|
||||||
(global "$(lib)/allocator/arena/offset" (mut i32) (i32.const 0))
|
(global "$(lib)/allocator/arena/offset" (mut i32) (i32.const 0))
|
||||||
(global $std/new/aClass (mut i32) (i32.const 0))
|
(global $std/new/aClass (mut i32) (i32.const 0))
|
||||||
(global $HEAP_BASE i32 (i32.const 4))
|
(global $HEAP_BASE i32 (i32.const 4))
|
||||||
@ -132,7 +133,7 @@
|
|||||||
)
|
)
|
||||||
(func $start (; 2 ;) (type $v)
|
(func $start (; 2 ;) (type $v)
|
||||||
(local $0 i32)
|
(local $0 i32)
|
||||||
(set_global "$(lib)/allocator/arena/offset"
|
(set_global "$(lib)/allocator/arena/startOffset"
|
||||||
(i32.and
|
(i32.and
|
||||||
(i32.add
|
(i32.add
|
||||||
(get_global $HEAP_BASE)
|
(get_global $HEAP_BASE)
|
||||||
@ -144,6 +145,9 @@
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
(set_global "$(lib)/allocator/arena/offset"
|
||||||
|
(get_global "$(lib)/allocator/arena/startOffset")
|
||||||
|
)
|
||||||
(set_global $std/new/aClass
|
(set_global $std/new/aClass
|
||||||
(block (result i32)
|
(block (result i32)
|
||||||
(set_local $0
|
(set_local $0
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
(type $iv (func (param i32)))
|
(type $iv (func (param i32)))
|
||||||
(type $v (func))
|
(type $v (func))
|
||||||
(import "env" "abort" (func $abort (param i32 i32 i32 i32)))
|
(import "env" "abort" (func $abort (param i32 i32 i32 i32)))
|
||||||
|
(global "$(lib)/allocator/arena/startOffset" (mut i32) (i32.const 0))
|
||||||
(global "$(lib)/allocator/arena/offset" (mut i32) (i32.const 0))
|
(global "$(lib)/allocator/arena/offset" (mut i32) (i32.const 0))
|
||||||
(global $std/set/set (mut i32) (i32.const 0))
|
(global $std/set/set (mut i32) (i32.const 0))
|
||||||
(global $HEAP_BASE i32 (i32.const 56))
|
(global $HEAP_BASE i32 (i32.const 56))
|
||||||
@ -2273,7 +2274,7 @@
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
(func $start (; 10 ;) (type $v)
|
(func $start (; 10 ;) (type $v)
|
||||||
(set_global "$(lib)/allocator/arena/offset"
|
(set_global "$(lib)/allocator/arena/startOffset"
|
||||||
(i32.and
|
(i32.and
|
||||||
(i32.add
|
(i32.add
|
||||||
(get_global $HEAP_BASE)
|
(get_global $HEAP_BASE)
|
||||||
@ -2282,6 +2283,9 @@
|
|||||||
(i32.const -8)
|
(i32.const -8)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
(set_global "$(lib)/allocator/arena/offset"
|
||||||
|
(get_global "$(lib)/allocator/arena/startOffset")
|
||||||
|
)
|
||||||
(set_global $std/set/set
|
(set_global $std/set/set
|
||||||
(call "$(lib)/allocator/arena/allocate_memory"
|
(call "$(lib)/allocator/arena/allocate_memory"
|
||||||
(i32.const 12)
|
(i32.const 12)
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
(global "$(lib)/allocator/common/alignment/BITS" i32 (i32.const 3))
|
(global "$(lib)/allocator/common/alignment/BITS" i32 (i32.const 3))
|
||||||
(global "$(lib)/allocator/common/alignment/SIZE" i32 (i32.const 8))
|
(global "$(lib)/allocator/common/alignment/SIZE" i32 (i32.const 8))
|
||||||
(global "$(lib)/allocator/common/alignment/MASK" i32 (i32.const 7))
|
(global "$(lib)/allocator/common/alignment/MASK" i32 (i32.const 7))
|
||||||
|
(global "$(lib)/allocator/arena/startOffset" (mut i32) (i32.const 0))
|
||||||
(global "$(lib)/allocator/arena/offset" (mut i32) (i32.const 0))
|
(global "$(lib)/allocator/arena/offset" (mut i32) (i32.const 0))
|
||||||
(global $std/set/set (mut i32) (i32.const 0))
|
(global $std/set/set (mut i32) (i32.const 0))
|
||||||
(global $HEAP_BASE i32 (i32.const 56))
|
(global $HEAP_BASE i32 (i32.const 56))
|
||||||
@ -2596,7 +2597,7 @@
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
(func $start (; 10 ;) (type $v)
|
(func $start (; 10 ;) (type $v)
|
||||||
(set_global "$(lib)/allocator/arena/offset"
|
(set_global "$(lib)/allocator/arena/startOffset"
|
||||||
(i32.and
|
(i32.and
|
||||||
(i32.add
|
(i32.add
|
||||||
(get_global $HEAP_BASE)
|
(get_global $HEAP_BASE)
|
||||||
@ -2608,6 +2609,9 @@
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
(set_global "$(lib)/allocator/arena/offset"
|
||||||
|
(get_global "$(lib)/allocator/arena/startOffset")
|
||||||
|
)
|
||||||
(set_global $std/set/set
|
(set_global $std/set/set
|
||||||
(call "$(lib)/allocator/arena/allocate_memory"
|
(call "$(lib)/allocator/arena/allocate_memory"
|
||||||
(i32.add
|
(i32.add
|
||||||
|
Loading…
x
Reference in New Issue
Block a user