MCPcopy Create free account
hub / github.com/WheretIB/nullc / Executor

Method Executor

NULLC/Executor.cpp:637–654  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

635#endif
636
637Executor::Executor(Linker* linker): exLinker(linker), exFunctions(linker->exFunctions), exTypes(linker->exTypes), breakCode(128), gateCode(4096)
638{
639 genStackBase = NULL;
640 genStackPtr = NULL;
641 genStackTop = NULL;
642
643 callContinue = true;
644
645 paramBase = 0;
646 currentFrame = 0;
647 cmdBase = NULL;
648
649 symbols = NULL;
650
651 codeRunning = false;
652
653 breakFunction = NULL;
654}
655
656Executor::~Executor()
657{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected