| 71 | }; |
| 72 | |
| 73 | N64Recomp::LiveGenerator::LiveGenerator(size_t num_funcs, const LiveGeneratorInputs& inputs) : inputs(inputs) { |
| 74 | compiler = sljit_create_compiler(nullptr); |
| 75 | context = std::make_unique<LiveGeneratorContext>(); |
| 76 | context->func_labels.resize(num_funcs); |
| 77 | errored = false; |
| 78 | } |
| 79 | |
| 80 | N64Recomp::LiveGenerator::~LiveGenerator() { |
| 81 | if (compiler != nullptr) { |
nothing calls this directly
no outgoing calls
no test coverage detected