ember-source
Version:
A JavaScript framework for creating ambitious web applications
26 lines (23 loc) • 901 B
JavaScript
import { TYPE_SIZE, MAX_SIZE, ARG_SHIFT } from '../vm/index.js';
import { isDevelopingApp } from '@embroider/macros';
class InstructionEncoderImpl {
constructor(buffer) {
this.buffer = buffer;
}
size = 0;
encode(type, machine, ...args) {
if (type > TYPE_SIZE) throw new Error(`Opcode type over 8-bits. Got ${type}.`);
let first = type | machine | arguments.length - 2 << ARG_SHIFT;
this.buffer.push(first);
for (const op of args) {
if (isDevelopingApp() && "number" == typeof op && op > MAX_SIZE) throw new Error(`Operand over 32-bits. Got ${op}.`);
this.buffer.push(op);
}
this.size = this.buffer.length;
}
patch(position, target) {
if (-1 !== this.buffer[position + 1]) throw new Error("Trying to patch operand in populated slot instead of a reserved slot.");
this.buffer[position + 1] = target;
}
}
export { InstructionEncoderImpl };