| 635 | #endif |
| 636 | |
| 637 | Executor::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 | |
| 656 | Executor::~Executor() |
| 657 | { |
nothing calls this directly
no outgoing calls
no test coverage detected