Displaying 1 result from an estimated 1 matches for "targetruntime".
2007 Aug 28
0
[LLVMdev] RFC: Garbage collection infrastructure
...his obviously needs to be fixed; the collector needs to be turned on
and off by a policy object. I'm not sure where best to hang that
object off of, though.
1. Attach it to Target/Subtarget?
2. Attach it to Function, like the calling convention?
3. Attach a whole-new TargetCollector (TargetRuntime?) to the Module?
#1 is simplest, but I think wrong. #2 seems best to me. It would let
the inliner merge bare code with managed code, or vice versa, but
avoids the risk of silliness like inlining Java into Ocaml.
Opinions?
Once a decision is made on that, I'll resurrect the shadow stack...