Displaying 1 result from an estimated 1 matches for "untrackedmodul".
Did you mean:
untrackedmodule
2020 Apr 20
2
ORC JIT Weekly #12
...ning JITDylib's tracker.
void detach();
};
I'm hoping that usage will look like:
LLJIT J = LLJITBuilder().create();
// No tracker specified. Resources tracked by the containing
// JITDylib's tracker, and freed when the JITDylib is
// deinitialized.
ExitOnErr(J.addIRModule(sdt::move(UntrackedModule)));
// Explicitly specify tracker. Module symbols can be
// - materialized by calling T->emit();
// - removed by calling T->remove();
// - transfered to the JITDylib by calling T->release();
auto T = std::make_unique<ResourceTracker>();
ExitOnErr(J.addIRModule(TrackedModule, T-&...