Swap-Aggregator-Subgraph/node_modules/assemblyscript/std/assembly/rt.ts
Richa-iitr d211083153 Revert "Revert "added handler""
This reverts commit c36ee8c5ca.
2022-07-03 07:30:05 +05:30

101 lines
3.2 KiB
TypeScript

import { Typeinfo, TypeinfoFlags } from "./shared/typeinfo";
import { E_INDEXOUTOFRANGE } from "./util/error";
import { OBJECT, TOTAL_OVERHEAD } from "./rt/common";
import { ArrayBufferView } from "./arraybuffer";
// @ts-ignore: decorator
@builtin
export declare const __rtti_base: usize;
// @ts-ignore: decorator
@builtin @unsafe
export declare function __visit_globals(cookie: u32): void;
// @ts-ignore: decorator
@builtin @unsafe
export declare function __visit_members(ref: usize, cookie: u32): void;
// @ts-ignore: decorator
@unsafe
export function __typeinfo(id: u32): TypeinfoFlags {
var ptr = __rtti_base;
if (id > load<u32>(ptr)) throw new Error(E_INDEXOUTOFRANGE);
return changetype<Typeinfo>(ptr + sizeof<u32>() + id * offsetof<Typeinfo>()).flags;
}
// @ts-ignore: decorator
@unsafe
export function __instanceof(ptr: usize, classId: u32): bool { // keyword
var id = changetype<OBJECT>(ptr - TOTAL_OVERHEAD).rtId;
var rttiBase = __rtti_base;
if (id <= load<u32>(rttiBase)) {
do if (id == classId) return true;
while (id = changetype<Typeinfo>(rttiBase + sizeof<u32>() + id * offsetof<Typeinfo>()).base);
}
return false;
}
// @ts-ignore: decorator
@unsafe
export function __newBuffer(size: usize, id: u32, data: usize = 0): usize {
var buffer = __new(size, id);
if (data) memory.copy(buffer, data, size);
return buffer;
}
// @ts-ignore: decorator
@unsafe
export function __newArray(length: i32, alignLog2: usize, id: u32, data: usize = 0): usize {
var bufferSize = <usize>length << alignLog2;
// make sure `buffer` is tracked by the shadow stack
var buffer = changetype<ArrayBuffer>(__newBuffer(bufferSize, idof<ArrayBuffer>(), data));
// ...since allocating the array may trigger GC steps
var array = __new(offsetof<i32[]>(), id);
store<usize>(array, changetype<usize>(buffer), offsetof<ArrayBufferView>("buffer"));
__link(array, changetype<usize>(buffer), false);
store<usize>(array, changetype<usize>(buffer), offsetof<ArrayBufferView>("dataStart"));
store<i32>(array, bufferSize, offsetof<ArrayBufferView>("byteLength"));
store<i32>(array, length, offsetof<i32[]>("length_"));
return array;
}
// @ts-ignore: decorator
@global @unsafe
function __tostack(ptr: usize): usize { // eslint-disable-line
return ptr;
}
// These are provided by the respective implementation, included as another entry file by asc:
// // @ts-ignore: decorator
// @builtin @unsafe
// export declare function __alloc(size: usize): usize;
// // @ts-ignore: decorator
// @builtin @unsafe
// export declare function __realloc(ptr: usize, size: usize): usize;
// // @ts-ignore: decorator
// @builtin @unsafe
// export declare function __free(ptr: usize): void;
// // @ts-ignore: decorator
// @builtin @unsafe
// export declare function __new(size: usize, id: u32): usize;
// // @ts-ignore: decorator
// @builtin @unsafe
// export declare function __renew(ptr: usize, size: usize): usize;
// // @ts-ignore: decorator
// @builtin @unsafe
// export declare function __link(parentPtr: usize, childPtr: usize, expectMultiple: bool): void;
// // @ts-ignore: decorator
// @builtin @unsafe
// export declare function __collect(): void;
// // @ts-ignore: decorator
// @builtin @unsafe
// export declare function __visit(ptr: usize, cookie: u32): void;