mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-23 21:01:08 +00:00
Bug 1879981 - Update profiler-get-symbols wasm to 390b8c4be82c720dd3977ff205fb34bd7d0e00ba. r=canaltinova,profiler-reviewers
Differential Revision: https://phabricator.services.mozilla.com/D201654
This commit is contained in:
parent
5e1b03155c
commit
0a40c64546
@ -6,47 +6,37 @@
|
|||||||
// THIS FILE IS AUTOGENERATED by wasm-bindgen.
|
// THIS FILE IS AUTOGENERATED by wasm-bindgen.
|
||||||
//
|
//
|
||||||
// Generated from:
|
// Generated from:
|
||||||
// https://github.com/mstange/profiler-get-symbols/commit/0373708893e45e8299e58ca692764be448e3457d
|
// https://github.com/mstange/profiler-get-symbols/commit/390b8c4be82c720dd3977ff205fb34bd7d0e00ba
|
||||||
// by following the instructions in that repository's Readme.md
|
// by following the instructions in that repository's Readme.md
|
||||||
//
|
//
|
||||||
|
|
||||||
let wasm_bindgen;
|
let wasm_bindgen;
|
||||||
(function() {
|
(function() {
|
||||||
const __exports = {};
|
const __exports = {};
|
||||||
let wasm;
|
let script_src;
|
||||||
|
if (typeof document !== 'undefined' && document.currentScript !== null) {
|
||||||
|
script_src = new URL(document.currentScript.src, location.href).toString();
|
||||||
|
}
|
||||||
|
let wasm = undefined;
|
||||||
|
|
||||||
const heap = new Array(32).fill(undefined);
|
const heap = new Array(128).fill(undefined);
|
||||||
|
|
||||||
heap.push(undefined, null, true, false);
|
heap.push(undefined, null, true, false);
|
||||||
|
|
||||||
function getObject(idx) { return heap[idx]; }
|
function getObject(idx) { return heap[idx]; }
|
||||||
|
|
||||||
let heap_next = heap.length;
|
|
||||||
|
|
||||||
function dropObject(idx) {
|
|
||||||
if (idx < 36) return;
|
|
||||||
heap[idx] = heap_next;
|
|
||||||
heap_next = idx;
|
|
||||||
}
|
|
||||||
|
|
||||||
function takeObject(idx) {
|
|
||||||
const ret = getObject(idx);
|
|
||||||
dropObject(idx);
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
let WASM_VECTOR_LEN = 0;
|
let WASM_VECTOR_LEN = 0;
|
||||||
|
|
||||||
let cachedUint8Memory0 = new Uint8Array();
|
let cachedUint8Memory0 = null;
|
||||||
|
|
||||||
function getUint8Memory0() {
|
function getUint8Memory0() {
|
||||||
if (cachedUint8Memory0.byteLength === 0) {
|
if (cachedUint8Memory0 === null || cachedUint8Memory0.byteLength === 0) {
|
||||||
cachedUint8Memory0 = new Uint8Array(wasm.memory.buffer);
|
cachedUint8Memory0 = new Uint8Array(wasm.memory.buffer);
|
||||||
}
|
}
|
||||||
return cachedUint8Memory0;
|
return cachedUint8Memory0;
|
||||||
}
|
}
|
||||||
|
|
||||||
const cachedTextEncoder = new TextEncoder();
|
const cachedTextEncoder = (typeof TextEncoder !== 'undefined' ? new TextEncoder('utf-8') : { encode: () => { throw Error('TextEncoder not available') } } );
|
||||||
|
|
||||||
const encodeString = (typeof cachedTextEncoder.encodeInto === 'function'
|
const encodeString = (typeof cachedTextEncoder.encodeInto === 'function'
|
||||||
? function (arg, view) {
|
? function (arg, view) {
|
||||||
@ -65,14 +55,14 @@ function passStringToWasm0(arg, malloc, realloc) {
|
|||||||
|
|
||||||
if (realloc === undefined) {
|
if (realloc === undefined) {
|
||||||
const buf = cachedTextEncoder.encode(arg);
|
const buf = cachedTextEncoder.encode(arg);
|
||||||
const ptr = malloc(buf.length);
|
const ptr = malloc(buf.length, 1) >>> 0;
|
||||||
getUint8Memory0().subarray(ptr, ptr + buf.length).set(buf);
|
getUint8Memory0().subarray(ptr, ptr + buf.length).set(buf);
|
||||||
WASM_VECTOR_LEN = buf.length;
|
WASM_VECTOR_LEN = buf.length;
|
||||||
return ptr;
|
return ptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
let len = arg.length;
|
let len = arg.length;
|
||||||
let ptr = malloc(len);
|
let ptr = malloc(len, 1) >>> 0;
|
||||||
|
|
||||||
const mem = getUint8Memory0();
|
const mem = getUint8Memory0();
|
||||||
|
|
||||||
@ -88,11 +78,12 @@ function passStringToWasm0(arg, malloc, realloc) {
|
|||||||
if (offset !== 0) {
|
if (offset !== 0) {
|
||||||
arg = arg.slice(offset);
|
arg = arg.slice(offset);
|
||||||
}
|
}
|
||||||
ptr = realloc(ptr, len, len = offset + arg.length * 3);
|
ptr = realloc(ptr, len, len = offset + arg.length * 3, 1) >>> 0;
|
||||||
const view = getUint8Memory0().subarray(ptr + offset, ptr + len);
|
const view = getUint8Memory0().subarray(ptr + offset, ptr + len);
|
||||||
const ret = encodeString(arg, view);
|
const ret = encodeString(arg, view);
|
||||||
|
|
||||||
offset += ret.written;
|
offset += ret.written;
|
||||||
|
ptr = realloc(ptr, len, offset, 1) >>> 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
WASM_VECTOR_LEN = offset;
|
WASM_VECTOR_LEN = offset;
|
||||||
@ -103,15 +94,29 @@ function isLikeNone(x) {
|
|||||||
return x === undefined || x === null;
|
return x === undefined || x === null;
|
||||||
}
|
}
|
||||||
|
|
||||||
let cachedInt32Memory0 = new Int32Array();
|
let cachedInt32Memory0 = null;
|
||||||
|
|
||||||
function getInt32Memory0() {
|
function getInt32Memory0() {
|
||||||
if (cachedInt32Memory0.byteLength === 0) {
|
if (cachedInt32Memory0 === null || cachedInt32Memory0.byteLength === 0) {
|
||||||
cachedInt32Memory0 = new Int32Array(wasm.memory.buffer);
|
cachedInt32Memory0 = new Int32Array(wasm.memory.buffer);
|
||||||
}
|
}
|
||||||
return cachedInt32Memory0;
|
return cachedInt32Memory0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let heap_next = heap.length;
|
||||||
|
|
||||||
|
function dropObject(idx) {
|
||||||
|
if (idx < 132) return;
|
||||||
|
heap[idx] = heap_next;
|
||||||
|
heap_next = idx;
|
||||||
|
}
|
||||||
|
|
||||||
|
function takeObject(idx) {
|
||||||
|
const ret = getObject(idx);
|
||||||
|
dropObject(idx);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
function addHeapObject(obj) {
|
function addHeapObject(obj) {
|
||||||
if (heap_next === heap.length) heap.push(heap.length + 1);
|
if (heap_next === heap.length) heap.push(heap.length + 1);
|
||||||
const idx = heap_next;
|
const idx = heap_next;
|
||||||
@ -121,14 +126,21 @@ function addHeapObject(obj) {
|
|||||||
return idx;
|
return idx;
|
||||||
}
|
}
|
||||||
|
|
||||||
const cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
|
const cachedTextDecoder = (typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-8', { ignoreBOM: true, fatal: true }) : { decode: () => { throw Error('TextDecoder not available') } } );
|
||||||
|
|
||||||
cachedTextDecoder.decode();
|
if (typeof TextDecoder !== 'undefined') { cachedTextDecoder.decode(); };
|
||||||
|
|
||||||
function getStringFromWasm0(ptr, len) {
|
function getStringFromWasm0(ptr, len) {
|
||||||
|
ptr = ptr >>> 0;
|
||||||
return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len));
|
return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const CLOSURE_DTORS = (typeof FinalizationRegistry === 'undefined')
|
||||||
|
? { register: () => {}, unregister: () => {} }
|
||||||
|
: new FinalizationRegistry(state => {
|
||||||
|
wasm.__wbindgen_export_2.get(state.dtor)(state.a, state.b)
|
||||||
|
});
|
||||||
|
|
||||||
function makeMutClosure(arg0, arg1, dtor, f) {
|
function makeMutClosure(arg0, arg1, dtor, f) {
|
||||||
const state = { a: arg0, b: arg1, cnt: 1, dtor };
|
const state = { a: arg0, b: arg1, cnt: 1, dtor };
|
||||||
const real = (...args) => {
|
const real = (...args) => {
|
||||||
@ -143,18 +155,18 @@ function makeMutClosure(arg0, arg1, dtor, f) {
|
|||||||
} finally {
|
} finally {
|
||||||
if (--state.cnt === 0) {
|
if (--state.cnt === 0) {
|
||||||
wasm.__wbindgen_export_2.get(state.dtor)(a, state.b);
|
wasm.__wbindgen_export_2.get(state.dtor)(a, state.b);
|
||||||
|
CLOSURE_DTORS.unregister(state);
|
||||||
} else {
|
} else {
|
||||||
state.a = a;
|
state.a = a;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
real.original = state;
|
real.original = state;
|
||||||
|
CLOSURE_DTORS.register(real, state, state);
|
||||||
return real;
|
return real;
|
||||||
}
|
}
|
||||||
function __wbg_adapter_16(arg0, arg1, arg2) {
|
function __wbg_adapter_20(arg0, arg1, arg2) {
|
||||||
wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h19297bd79b0d78f6(arg0, arg1, addHeapObject(arg2));
|
wasm.wasm_bindgen__convert__closures__invoke1_mut__h5c75a368331e2dfc(arg0, arg1, addHeapObject(arg2));
|
||||||
}
|
}
|
||||||
|
|
||||||
function handleError(f, args) {
|
function handleError(f, args) {
|
||||||
@ -164,8 +176,8 @@ function handleError(f, args) {
|
|||||||
wasm.__wbindgen_exn_store(addHeapObject(e));
|
wasm.__wbindgen_exn_store(addHeapObject(e));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
function __wbg_adapter_33(arg0, arg1, arg2, arg3) {
|
function __wbg_adapter_41(arg0, arg1, arg2, arg3) {
|
||||||
wasm.wasm_bindgen__convert__closures__invoke2_mut__h80dea6fd01e77b95(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));
|
wasm.wasm_bindgen__convert__closures__invoke2_mut__hb4d9edc8ea00b6ab(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -258,7 +270,7 @@ __exports.queryAPI = function(url, request_json, helper) {
|
|||||||
return takeObject(ret);
|
return takeObject(ret);
|
||||||
};
|
};
|
||||||
|
|
||||||
async function load(module, imports) {
|
async function __wbg_load(module, imports) {
|
||||||
if (typeof Response === 'function' && module instanceof Response) {
|
if (typeof Response === 'function' && module instanceof Response) {
|
||||||
if (typeof WebAssembly.instantiateStreaming === 'function') {
|
if (typeof WebAssembly.instantiateStreaming === 'function') {
|
||||||
try {
|
try {
|
||||||
@ -289,12 +301,116 @@ async function load(module, imports) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function getImports() {
|
function __wbg_get_imports() {
|
||||||
const imports = {};
|
const imports = {};
|
||||||
imports.wbg = {};
|
imports.wbg = {};
|
||||||
|
imports.wbg.__wbg_get_0ee8ea3c7c984c45 = function(arg0, arg1) {
|
||||||
|
const ret = getObject(arg0)[arg1 >>> 0];
|
||||||
|
return addHeapObject(ret);
|
||||||
|
};
|
||||||
|
imports.wbg.__wbindgen_string_get = function(arg0, arg1) {
|
||||||
|
const obj = getObject(arg1);
|
||||||
|
const ret = typeof(obj) === 'string' ? obj : undefined;
|
||||||
|
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
||||||
|
var len1 = WASM_VECTOR_LEN;
|
||||||
|
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
||||||
|
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
||||||
|
};
|
||||||
imports.wbg.__wbindgen_object_drop_ref = function(arg0) {
|
imports.wbg.__wbindgen_object_drop_ref = function(arg0) {
|
||||||
takeObject(arg0);
|
takeObject(arg0);
|
||||||
};
|
};
|
||||||
|
imports.wbg.__wbg_self_05040bd9523805b9 = function() { return handleError(function () {
|
||||||
|
const ret = self.self;
|
||||||
|
return addHeapObject(ret);
|
||||||
|
}, arguments) };
|
||||||
|
imports.wbg.__wbg_window_adc720039f2cb14f = function() { return handleError(function () {
|
||||||
|
const ret = window.window;
|
||||||
|
return addHeapObject(ret);
|
||||||
|
}, arguments) };
|
||||||
|
imports.wbg.__wbg_globalThis_622105db80c1457d = function() { return handleError(function () {
|
||||||
|
const ret = globalThis.globalThis;
|
||||||
|
return addHeapObject(ret);
|
||||||
|
}, arguments) };
|
||||||
|
imports.wbg.__wbg_global_f56b013ed9bcf359 = function() { return handleError(function () {
|
||||||
|
const ret = global.global;
|
||||||
|
return addHeapObject(ret);
|
||||||
|
}, arguments) };
|
||||||
|
imports.wbg.__wbindgen_is_undefined = function(arg0) {
|
||||||
|
const ret = getObject(arg0) === undefined;
|
||||||
|
return ret;
|
||||||
|
};
|
||||||
|
imports.wbg.__wbg_newnoargs_cfecb3965268594c = function(arg0, arg1) {
|
||||||
|
const ret = new Function(getStringFromWasm0(arg0, arg1));
|
||||||
|
return addHeapObject(ret);
|
||||||
|
};
|
||||||
|
imports.wbg.__wbg_call_3f093dd26d5569f8 = function() { return handleError(function (arg0, arg1) {
|
||||||
|
const ret = getObject(arg0).call(getObject(arg1));
|
||||||
|
return addHeapObject(ret);
|
||||||
|
}, arguments) };
|
||||||
|
imports.wbg.__wbindgen_memory = function() {
|
||||||
|
const ret = wasm.memory;
|
||||||
|
return addHeapObject(ret);
|
||||||
|
};
|
||||||
|
imports.wbg.__wbg_buffer_b914fb8b50ebbc3e = function(arg0) {
|
||||||
|
const ret = getObject(arg0).buffer;
|
||||||
|
return addHeapObject(ret);
|
||||||
|
};
|
||||||
|
imports.wbg.__wbg_newwithbyteoffsetandlength_7f2d9491ea8c746e = function(arg0, arg1, arg2) {
|
||||||
|
const ret = new Uint32Array(getObject(arg0), arg1 >>> 0, arg2 >>> 0);
|
||||||
|
return addHeapObject(ret);
|
||||||
|
};
|
||||||
|
imports.wbg.__wbg_new_437b9c4fbab85dd9 = function(arg0) {
|
||||||
|
const ret = new Uint32Array(getObject(arg0));
|
||||||
|
return addHeapObject(ret);
|
||||||
|
};
|
||||||
|
imports.wbg.__wbg_newwithbyteoffsetandlength_0de9ee56e9f6ee6e = function(arg0, arg1, arg2) {
|
||||||
|
const ret = new Uint8Array(getObject(arg0), arg1 >>> 0, arg2 >>> 0);
|
||||||
|
return addHeapObject(ret);
|
||||||
|
};
|
||||||
|
imports.wbg.__wbg_new_b1f2d6842d615181 = function(arg0) {
|
||||||
|
const ret = new Uint8Array(getObject(arg0));
|
||||||
|
return addHeapObject(ret);
|
||||||
|
};
|
||||||
|
imports.wbg.__wbg_of_94ac9e20a3c46ec5 = function(arg0, arg1, arg2) {
|
||||||
|
const ret = Array.of(getObject(arg0), getObject(arg1), getObject(arg2));
|
||||||
|
return addHeapObject(ret);
|
||||||
|
};
|
||||||
|
imports.wbg.__wbg_call_67f2111acd2dfdb6 = function() { return handleError(function (arg0, arg1, arg2) {
|
||||||
|
const ret = getObject(arg0).call(getObject(arg1), getObject(arg2));
|
||||||
|
return addHeapObject(ret);
|
||||||
|
}, arguments) };
|
||||||
|
imports.wbg.__wbindgen_object_clone_ref = function(arg0) {
|
||||||
|
const ret = getObject(arg0);
|
||||||
|
return addHeapObject(ret);
|
||||||
|
};
|
||||||
|
imports.wbg.__wbg_getCandidatePathsForDebugFile_19de1ea293153630 = function() { return handleError(function (arg0, arg1) {
|
||||||
|
const ret = getObject(arg0).getCandidatePathsForDebugFile(takeObject(arg1));
|
||||||
|
return addHeapObject(ret);
|
||||||
|
}, arguments) };
|
||||||
|
imports.wbg.__wbg_name_405bb0aa047a1bf5 = function(arg0) {
|
||||||
|
const ret = getObject(arg0).name;
|
||||||
|
return addHeapObject(ret);
|
||||||
|
};
|
||||||
|
imports.wbg.__wbg_message_2a19bb5b62cf8e22 = function(arg0) {
|
||||||
|
const ret = getObject(arg0).message;
|
||||||
|
return addHeapObject(ret);
|
||||||
|
};
|
||||||
|
imports.wbg.__wbg_from_58c79ccfb68060f5 = function(arg0) {
|
||||||
|
const ret = Array.from(getObject(arg0));
|
||||||
|
return addHeapObject(ret);
|
||||||
|
};
|
||||||
|
imports.wbg.__wbg_length_161c0d89c6535c1d = function(arg0) {
|
||||||
|
const ret = getObject(arg0).length;
|
||||||
|
return ret;
|
||||||
|
};
|
||||||
|
imports.wbg.__wbindgen_string_new = function(arg0, arg1) {
|
||||||
|
const ret = getStringFromWasm0(arg0, arg1);
|
||||||
|
return addHeapObject(ret);
|
||||||
|
};
|
||||||
|
imports.wbg.__wbg_getCandidatePathsForBinary_8311cb7aeae90263 = function() { return handleError(function (arg0, arg1) {
|
||||||
|
const ret = getObject(arg0).getCandidatePathsForBinary(takeObject(arg1));
|
||||||
|
return addHeapObject(ret);
|
||||||
|
}, arguments) };
|
||||||
imports.wbg.__wbindgen_cb_drop = function(arg0) {
|
imports.wbg.__wbindgen_cb_drop = function(arg0) {
|
||||||
const obj = takeObject(arg0).original;
|
const obj = takeObject(arg0).original;
|
||||||
if (obj.cnt-- == 1) {
|
if (obj.cnt-- == 1) {
|
||||||
@ -304,67 +420,39 @@ function getImports() {
|
|||||||
const ret = false;
|
const ret = false;
|
||||||
return ret;
|
return ret;
|
||||||
};
|
};
|
||||||
imports.wbg.__wbindgen_string_get = function(arg0, arg1) {
|
imports.wbg.__wbg_new_632630b5cec17f21 = function() {
|
||||||
const obj = getObject(arg1);
|
|
||||||
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
||||||
var ptr0 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
||||||
var len0 = WASM_VECTOR_LEN;
|
|
||||||
getInt32Memory0()[arg0 / 4 + 1] = len0;
|
|
||||||
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
|
|
||||||
};
|
|
||||||
imports.wbg.__wbg_close_334601fc6c36b53e = function() { return handleError(function (arg0) {
|
|
||||||
getObject(arg0).close();
|
|
||||||
}, arguments) };
|
|
||||||
imports.wbg.__wbg_get_57245cc7d7c7619d = function(arg0, arg1) {
|
|
||||||
const ret = getObject(arg0)[arg1 >>> 0];
|
|
||||||
return addHeapObject(ret);
|
|
||||||
};
|
|
||||||
imports.wbg.__wbindgen_memory = function() {
|
|
||||||
const ret = wasm.memory;
|
|
||||||
return addHeapObject(ret);
|
|
||||||
};
|
|
||||||
imports.wbg.__wbg_buffer_3f3d764d4747d564 = function(arg0) {
|
|
||||||
const ret = getObject(arg0).buffer;
|
|
||||||
return addHeapObject(ret);
|
|
||||||
};
|
|
||||||
imports.wbg.__wbg_newwithbyteoffsetandlength_d9aa266703cb98be = function(arg0, arg1, arg2) {
|
|
||||||
const ret = new Uint8Array(getObject(arg0), arg1 >>> 0, arg2 >>> 0);
|
|
||||||
return addHeapObject(ret);
|
|
||||||
};
|
|
||||||
imports.wbg.__wbg_readBytesInto_3ec3b16ea5839a95 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
||||||
getObject(arg0).readBytesInto(takeObject(arg1), arg2);
|
|
||||||
}, arguments) };
|
|
||||||
imports.wbg.__wbg_name_48eda3ae6aa697ca = function(arg0) {
|
|
||||||
const ret = getObject(arg0).name;
|
|
||||||
return addHeapObject(ret);
|
|
||||||
};
|
|
||||||
imports.wbg.__wbg_message_fe2af63ccc8985bc = function(arg0) {
|
|
||||||
const ret = getObject(arg0).message;
|
|
||||||
return addHeapObject(ret);
|
|
||||||
};
|
|
||||||
imports.wbg.__wbg_new_0b9bfdd97583284e = function() {
|
|
||||||
const ret = new Object();
|
const ret = new Object();
|
||||||
return addHeapObject(ret);
|
return addHeapObject(ret);
|
||||||
};
|
};
|
||||||
imports.wbg.__wbindgen_string_new = function(arg0, arg1) {
|
imports.wbg.__wbg_set_9182712abebf82ef = function(arg0, arg1, arg2) {
|
||||||
const ret = getStringFromWasm0(arg0, arg1);
|
|
||||||
return addHeapObject(ret);
|
|
||||||
};
|
|
||||||
imports.wbg.__wbg_set_20cbc34131e76824 = function(arg0, arg1, arg2) {
|
|
||||||
getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
|
getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
|
||||||
};
|
};
|
||||||
imports.wbg.__wbindgen_object_clone_ref = function(arg0) {
|
imports.wbg.__wbg_close_0c320371e818efa4 = function() { return handleError(function (arg0) {
|
||||||
const ret = getObject(arg0);
|
getObject(arg0).close();
|
||||||
|
}, arguments) };
|
||||||
|
imports.wbg.__wbg_readBytesInto_8dda8e37c69f2cbd = function() { return handleError(function (arg0, arg1, arg2) {
|
||||||
|
getObject(arg0).readBytesInto(takeObject(arg1), arg2);
|
||||||
|
}, arguments) };
|
||||||
|
imports.wbg.__wbg_readFile_33b95391c6839d48 = function(arg0, arg1, arg2) {
|
||||||
|
const ret = getObject(arg0).readFile(getStringFromWasm0(arg1, arg2));
|
||||||
return addHeapObject(ret);
|
return addHeapObject(ret);
|
||||||
};
|
};
|
||||||
imports.wbg.__wbg_new_9962f939219f1820 = function(arg0, arg1) {
|
imports.wbg.__wbg_then_20a5920e447d1cb1 = function(arg0, arg1, arg2) {
|
||||||
|
const ret = getObject(arg0).then(getObject(arg1), getObject(arg2));
|
||||||
|
return addHeapObject(ret);
|
||||||
|
};
|
||||||
|
imports.wbg.__wbg_size_45521802c91634d3 = function() { return handleError(function (arg0) {
|
||||||
|
const ret = getObject(arg0).size;
|
||||||
|
return ret;
|
||||||
|
}, arguments) };
|
||||||
|
imports.wbg.__wbg_new_70828a4353259d4b = function(arg0, arg1) {
|
||||||
try {
|
try {
|
||||||
var state0 = {a: arg0, b: arg1};
|
var state0 = {a: arg0, b: arg1};
|
||||||
var cb0 = (arg0, arg1) => {
|
var cb0 = (arg0, arg1) => {
|
||||||
const a = state0.a;
|
const a = state0.a;
|
||||||
state0.a = 0;
|
state0.a = 0;
|
||||||
try {
|
try {
|
||||||
return __wbg_adapter_33(a, state0.b, arg0, arg1);
|
return __wbg_adapter_41(a, state0.b, arg0, arg1);
|
||||||
} finally {
|
} finally {
|
||||||
state0.a = a;
|
state0.a = a;
|
||||||
}
|
}
|
||||||
@ -375,91 +463,56 @@ function getImports() {
|
|||||||
state0.a = state0.b = 0;
|
state0.a = state0.b = 0;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
imports.wbg.__wbg_newwithbyteoffsetandlength_9cc9adccd861aa26 = function(arg0, arg1, arg2) {
|
|
||||||
const ret = new Uint32Array(getObject(arg0), arg1 >>> 0, arg2 >>> 0);
|
|
||||||
return addHeapObject(ret);
|
|
||||||
};
|
|
||||||
imports.wbg.__wbg_new_949418f5ed1e29f7 = function(arg0) {
|
|
||||||
const ret = new Uint32Array(getObject(arg0));
|
|
||||||
return addHeapObject(ret);
|
|
||||||
};
|
|
||||||
imports.wbg.__wbg_new_8c3f0052272a457a = function(arg0) {
|
|
||||||
const ret = new Uint8Array(getObject(arg0));
|
|
||||||
return addHeapObject(ret);
|
|
||||||
};
|
|
||||||
imports.wbg.__wbg_of_22ee6ea02403744c = function(arg0, arg1, arg2) {
|
|
||||||
const ret = Array.of(getObject(arg0), getObject(arg1), getObject(arg2));
|
|
||||||
return addHeapObject(ret);
|
|
||||||
};
|
|
||||||
imports.wbg.__wbg_call_168da88779e35f61 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
||||||
const ret = getObject(arg0).call(getObject(arg1), getObject(arg2));
|
|
||||||
return addHeapObject(ret);
|
|
||||||
}, arguments) };
|
|
||||||
imports.wbg.__wbg_getCandidatePathsForDebugFile_19de1ea293153630 = function() { return handleError(function (arg0, arg1) {
|
|
||||||
const ret = getObject(arg0).getCandidatePathsForDebugFile(takeObject(arg1));
|
|
||||||
return addHeapObject(ret);
|
|
||||||
}, arguments) };
|
|
||||||
imports.wbg.__wbg_from_7ce3cb27cb258569 = function(arg0) {
|
|
||||||
const ret = Array.from(getObject(arg0));
|
|
||||||
return addHeapObject(ret);
|
|
||||||
};
|
|
||||||
imports.wbg.__wbg_length_6e3bbe7c8bd4dbd8 = function(arg0) {
|
|
||||||
const ret = getObject(arg0).length;
|
|
||||||
return ret;
|
|
||||||
};
|
|
||||||
imports.wbg.__wbg_getCandidatePathsForBinary_8311cb7aeae90263 = function() { return handleError(function (arg0, arg1) {
|
|
||||||
const ret = getObject(arg0).getCandidatePathsForBinary(takeObject(arg1));
|
|
||||||
return addHeapObject(ret);
|
|
||||||
}, arguments) };
|
|
||||||
imports.wbg.__wbg_readFile_33b95391c6839d48 = function(arg0, arg1, arg2) {
|
|
||||||
const ret = getObject(arg0).readFile(getStringFromWasm0(arg1, arg2));
|
|
||||||
return addHeapObject(ret);
|
|
||||||
};
|
|
||||||
imports.wbg.__wbg_then_cedad20fbbd9418a = function(arg0, arg1, arg2) {
|
|
||||||
const ret = getObject(arg0).then(getObject(arg1), getObject(arg2));
|
|
||||||
return addHeapObject(ret);
|
|
||||||
};
|
|
||||||
imports.wbg.__wbg_size_c5375fc90958b38d = function() { return handleError(function (arg0) {
|
|
||||||
const ret = getObject(arg0).size;
|
|
||||||
return ret;
|
|
||||||
}, arguments) };
|
|
||||||
imports.wbg.__wbindgen_throw = function(arg0, arg1) {
|
imports.wbg.__wbindgen_throw = function(arg0, arg1) {
|
||||||
throw new Error(getStringFromWasm0(arg0, arg1));
|
throw new Error(getStringFromWasm0(arg0, arg1));
|
||||||
};
|
};
|
||||||
imports.wbg.__wbg_then_11f7a54d67b4bfad = function(arg0, arg1) {
|
imports.wbg.__wbg_then_f9e58f5a50f43eae = function(arg0, arg1) {
|
||||||
const ret = getObject(arg0).then(getObject(arg1));
|
const ret = getObject(arg0).then(getObject(arg1));
|
||||||
return addHeapObject(ret);
|
return addHeapObject(ret);
|
||||||
};
|
};
|
||||||
imports.wbg.__wbg_resolve_99fe17964f31ffc0 = function(arg0) {
|
imports.wbg.__wbg_queueMicrotask_f61ee94ee663068b = function(arg0) {
|
||||||
|
queueMicrotask(getObject(arg0));
|
||||||
|
};
|
||||||
|
imports.wbg.__wbg_queueMicrotask_f82fc5d1e8f816ae = function(arg0) {
|
||||||
|
const ret = getObject(arg0).queueMicrotask;
|
||||||
|
return addHeapObject(ret);
|
||||||
|
};
|
||||||
|
imports.wbg.__wbindgen_is_function = function(arg0) {
|
||||||
|
const ret = typeof(getObject(arg0)) === 'function';
|
||||||
|
return ret;
|
||||||
|
};
|
||||||
|
imports.wbg.__wbg_resolve_5da6faf2c96fd1d5 = function(arg0) {
|
||||||
const ret = Promise.resolve(getObject(arg0));
|
const ret = Promise.resolve(getObject(arg0));
|
||||||
return addHeapObject(ret);
|
return addHeapObject(ret);
|
||||||
};
|
};
|
||||||
imports.wbg.__wbindgen_closure_wrapper1912 = function(arg0, arg1, arg2) {
|
imports.wbg.__wbindgen_closure_wrapper2106 = function(arg0, arg1, arg2) {
|
||||||
const ret = makeMutClosure(arg0, arg1, 143, __wbg_adapter_16);
|
const ret = makeMutClosure(arg0, arg1, 159, __wbg_adapter_20);
|
||||||
return addHeapObject(ret);
|
return addHeapObject(ret);
|
||||||
};
|
};
|
||||||
|
|
||||||
return imports;
|
return imports;
|
||||||
}
|
}
|
||||||
|
|
||||||
function initMemory(imports, maybe_memory) {
|
function __wbg_init_memory(imports, maybe_memory) {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function finalizeInit(instance, module) {
|
function __wbg_finalize_init(instance, module) {
|
||||||
wasm = instance.exports;
|
wasm = instance.exports;
|
||||||
init.__wbindgen_wasm_module = module;
|
__wbg_init.__wbindgen_wasm_module = module;
|
||||||
cachedInt32Memory0 = new Int32Array();
|
cachedInt32Memory0 = null;
|
||||||
cachedUint8Memory0 = new Uint8Array();
|
cachedUint8Memory0 = null;
|
||||||
|
|
||||||
|
|
||||||
return wasm;
|
return wasm;
|
||||||
}
|
}
|
||||||
|
|
||||||
function initSync(module) {
|
function initSync(module) {
|
||||||
const imports = getImports();
|
if (wasm !== undefined) return wasm;
|
||||||
|
|
||||||
initMemory(imports);
|
const imports = __wbg_get_imports();
|
||||||
|
|
||||||
|
__wbg_init_memory(imports);
|
||||||
|
|
||||||
if (!(module instanceof WebAssembly.Module)) {
|
if (!(module instanceof WebAssembly.Module)) {
|
||||||
module = new WebAssembly.Module(module);
|
module = new WebAssembly.Module(module);
|
||||||
@ -467,32 +520,28 @@ function initSync(module) {
|
|||||||
|
|
||||||
const instance = new WebAssembly.Instance(module, imports);
|
const instance = new WebAssembly.Instance(module, imports);
|
||||||
|
|
||||||
return finalizeInit(instance, module);
|
return __wbg_finalize_init(instance, module);
|
||||||
}
|
}
|
||||||
|
|
||||||
async function init(input) {
|
async function __wbg_init(input) {
|
||||||
if (typeof input === 'undefined') {
|
if (wasm !== undefined) return wasm;
|
||||||
let src;
|
|
||||||
if (typeof document === 'undefined') {
|
if (typeof input === 'undefined' && typeof script_src !== 'undefined') {
|
||||||
src = location.href;
|
input = script_src.replace(/\.js$/, '_bg.wasm');
|
||||||
} else {
|
|
||||||
src = document.currentScript.src;
|
|
||||||
}
|
|
||||||
input = src.replace(/\.js$/, '_bg.wasm');
|
|
||||||
}
|
}
|
||||||
const imports = getImports();
|
const imports = __wbg_get_imports();
|
||||||
|
|
||||||
if (typeof input === 'string' || (typeof Request === 'function' && input instanceof Request) || (typeof URL === 'function' && input instanceof URL)) {
|
if (typeof input === 'string' || (typeof Request === 'function' && input instanceof Request) || (typeof URL === 'function' && input instanceof URL)) {
|
||||||
input = fetch(input);
|
input = fetch(input);
|
||||||
}
|
}
|
||||||
|
|
||||||
initMemory(imports);
|
__wbg_init_memory(imports);
|
||||||
|
|
||||||
const { instance, module } = await load(await input, imports);
|
const { instance, module } = await __wbg_load(await input, imports);
|
||||||
|
|
||||||
return finalizeInit(instance, module);
|
return __wbg_finalize_init(instance, module);
|
||||||
}
|
}
|
||||||
|
|
||||||
wasm_bindgen = Object.assign(init, { initSync }, __exports);
|
wasm_bindgen = Object.assign(__wbg_init, { initSync }, __exports);
|
||||||
|
|
||||||
})();
|
})();
|
||||||
|
@ -45,11 +45,11 @@ const global = globalThis;
|
|||||||
// The sha384 sum can be computed with the following command (tested on macOS):
|
// The sha384 sum can be computed with the following command (tested on macOS):
|
||||||
// shasum -b -a 384 profiler_get_symbols_wasm_bg.wasm | awk '{ print $1 }' | xxd -r -p | base64
|
// shasum -b -a 384 profiler_get_symbols_wasm_bg.wasm | awk '{ print $1 }' | xxd -r -p | base64
|
||||||
|
|
||||||
// Generated from https://github.com/mstange/profiler-get-symbols/commit/0373708893e45e8299e58ca692764be448e3457d
|
// Generated from https://github.com/mstange/profiler-get-symbols/commit/390b8c4be82c720dd3977ff205fb34bd7d0e00ba
|
||||||
const WASM_MODULE_URL =
|
const WASM_MODULE_URL =
|
||||||
"https://storage.googleapis.com/firefox-profiler-get-symbols/0373708893e45e8299e58ca692764be448e3457d.wasm";
|
"https://storage.googleapis.com/firefox-profiler-get-symbols/390b8c4be82c720dd3977ff205fb34bd7d0e00ba.wasm";
|
||||||
const WASM_MODULE_INTEGRITY =
|
const WASM_MODULE_INTEGRITY =
|
||||||
"sha384-rUGgHTg1eAKP2MB4JcX/HGROSBlRUmvpm6FFIihH0gGQ74zfJE2p7P8cxR86faQ7";
|
"sha384-P8j6U9jY+M4zSfJKXb1ECjsTPkzQ0hAvgb4zv3gHvlg+THRtVpOrDSywHJBhin00";
|
||||||
|
|
||||||
const EXPIRY_TIME_IN_MS = 5 * 60 * 1000; // 5 minutes
|
const EXPIRY_TIME_IN_MS = 5 * 60 * 1000; // 5 minutes
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user