mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-21 20:53:56 +00:00
161 lines
4.8 KiB
TypeScript
161 lines
4.8 KiB
TypeScript
// automatically generated by the FlatBuffers compiler, do not modify
|
|
|
|
/* eslint-disable @typescript-eslint/no-unused-vars, @typescript-eslint/no-explicit-any, @typescript-eslint/no-non-null-assertion */
|
|
|
|
import * as flatbuffers from 'flatbuffers';
|
|
|
|
|
|
|
|
export class EmulationStatus implements flatbuffers.IUnpackableObject<EmulationStatusT> {
|
|
bb: flatbuffers.ByteBuffer|null = null;
|
|
bb_pos = 0;
|
|
__init(i:number, bb:flatbuffers.ByteBuffer):EmulationStatus {
|
|
this.bb_pos = i;
|
|
this.bb = bb;
|
|
return this;
|
|
}
|
|
|
|
static getRootAsEmulationStatus(bb:flatbuffers.ByteBuffer, obj?:EmulationStatus):EmulationStatus {
|
|
return (obj || new EmulationStatus()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
|
|
}
|
|
|
|
static getSizePrefixedRootAsEmulationStatus(bb:flatbuffers.ByteBuffer, obj?:EmulationStatus):EmulationStatus {
|
|
bb.setPosition(bb.position() + flatbuffers.SIZE_PREFIX_LENGTH);
|
|
return (obj || new EmulationStatus()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
|
|
}
|
|
|
|
activeThreads():number {
|
|
const offset = this.bb!.__offset(this.bb_pos, 4);
|
|
return offset ? this.bb!.readUint32(this.bb_pos + offset) : 0;
|
|
}
|
|
|
|
mutate_active_threads(value:number):boolean {
|
|
const offset = this.bb!.__offset(this.bb_pos, 4);
|
|
|
|
if (offset === 0) {
|
|
return false;
|
|
}
|
|
|
|
this.bb!.writeUint32(this.bb_pos + offset, value);
|
|
return true;
|
|
}
|
|
|
|
reservedMemory():bigint {
|
|
const offset = this.bb!.__offset(this.bb_pos, 6);
|
|
return offset ? this.bb!.readUint64(this.bb_pos + offset) : BigInt('0');
|
|
}
|
|
|
|
mutate_reserved_memory(value:bigint):boolean {
|
|
const offset = this.bb!.__offset(this.bb_pos, 6);
|
|
|
|
if (offset === 0) {
|
|
return false;
|
|
}
|
|
|
|
this.bb!.writeUint64(this.bb_pos + offset, value);
|
|
return true;
|
|
}
|
|
|
|
committedMemory():bigint {
|
|
const offset = this.bb!.__offset(this.bb_pos, 8);
|
|
return offset ? this.bb!.readUint64(this.bb_pos + offset) : BigInt('0');
|
|
}
|
|
|
|
mutate_committed_memory(value:bigint):boolean {
|
|
const offset = this.bb!.__offset(this.bb_pos, 8);
|
|
|
|
if (offset === 0) {
|
|
return false;
|
|
}
|
|
|
|
this.bb!.writeUint64(this.bb_pos + offset, value);
|
|
return true;
|
|
}
|
|
|
|
executedInstructions():bigint {
|
|
const offset = this.bb!.__offset(this.bb_pos, 10);
|
|
return offset ? this.bb!.readUint64(this.bb_pos + offset) : BigInt('0');
|
|
}
|
|
|
|
mutate_executed_instructions(value:bigint):boolean {
|
|
const offset = this.bb!.__offset(this.bb_pos, 10);
|
|
|
|
if (offset === 0) {
|
|
return false;
|
|
}
|
|
|
|
this.bb!.writeUint64(this.bb_pos + offset, value);
|
|
return true;
|
|
}
|
|
|
|
static startEmulationStatus(builder:flatbuffers.Builder) {
|
|
builder.startObject(4);
|
|
}
|
|
|
|
static addActiveThreads(builder:flatbuffers.Builder, activeThreads:number) {
|
|
builder.addFieldInt32(0, activeThreads, 0);
|
|
}
|
|
|
|
static addReservedMemory(builder:flatbuffers.Builder, reservedMemory:bigint) {
|
|
builder.addFieldInt64(1, reservedMemory, BigInt('0'));
|
|
}
|
|
|
|
static addCommittedMemory(builder:flatbuffers.Builder, committedMemory:bigint) {
|
|
builder.addFieldInt64(2, committedMemory, BigInt('0'));
|
|
}
|
|
|
|
static addExecutedInstructions(builder:flatbuffers.Builder, executedInstructions:bigint) {
|
|
builder.addFieldInt64(3, executedInstructions, BigInt('0'));
|
|
}
|
|
|
|
static endEmulationStatus(builder:flatbuffers.Builder):flatbuffers.Offset {
|
|
const offset = builder.endObject();
|
|
return offset;
|
|
}
|
|
|
|
static createEmulationStatus(builder:flatbuffers.Builder, activeThreads:number, reservedMemory:bigint, committedMemory:bigint, executedInstructions:bigint):flatbuffers.Offset {
|
|
EmulationStatus.startEmulationStatus(builder);
|
|
EmulationStatus.addActiveThreads(builder, activeThreads);
|
|
EmulationStatus.addReservedMemory(builder, reservedMemory);
|
|
EmulationStatus.addCommittedMemory(builder, committedMemory);
|
|
EmulationStatus.addExecutedInstructions(builder, executedInstructions);
|
|
return EmulationStatus.endEmulationStatus(builder);
|
|
}
|
|
|
|
unpack(): EmulationStatusT {
|
|
return new EmulationStatusT(
|
|
this.activeThreads(),
|
|
this.reservedMemory(),
|
|
this.committedMemory(),
|
|
this.executedInstructions()
|
|
);
|
|
}
|
|
|
|
|
|
unpackTo(_o: EmulationStatusT): void {
|
|
_o.activeThreads = this.activeThreads();
|
|
_o.reservedMemory = this.reservedMemory();
|
|
_o.committedMemory = this.committedMemory();
|
|
_o.executedInstructions = this.executedInstructions();
|
|
}
|
|
}
|
|
|
|
export class EmulationStatusT implements flatbuffers.IGeneratedObject {
|
|
constructor(
|
|
public activeThreads: number = 0,
|
|
public reservedMemory: bigint = BigInt('0'),
|
|
public committedMemory: bigint = BigInt('0'),
|
|
public executedInstructions: bigint = BigInt('0')
|
|
){}
|
|
|
|
|
|
pack(builder:flatbuffers.Builder): flatbuffers.Offset {
|
|
return EmulationStatus.createEmulationStatus(builder,
|
|
this.activeThreads,
|
|
this.reservedMemory,
|
|
this.committedMemory,
|
|
this.executedInstructions
|
|
);
|
|
}
|
|
}
|