PPU LLVM: add MemoryManager3

For temporary allocations.
Add flags in jit_compiler constructor.
This commit is contained in:
Nekotekina 2019-03-18 19:24:55 +03:00
parent 466d58ccef
commit 849411693a
3 changed files with 70 additions and 6 deletions

View file

@ -1564,7 +1564,7 @@ extern void ppu_initialize(const ppu_module& info)
LOG_WARNING(PPU, "LLVM: Compiling module %s%s", cache_path, obj_name);
// Use another JIT instance
jit_compiler jit2({}, g_cfg.core.llvm_cpu);
jit_compiler jit2({}, g_cfg.core.llvm_cpu, 0x1);
ppu_initialize2(jit2, part, cache_path, obj_name);
}