Displaying 1 result from an estimated 1 matches for "enablegc".
Did you mean:
enableec
2007 Aug 28
0
[LLVMdev] RFC: Garbage collection infrastructure
...ormation is currently gathered to support
the runtime I'm working with, and -print-gc is currently the only
consumer of this information.
All collector policies are presently controlled by constants. There
are no regressions (on darwin-i686) if the feature is left disabled.
If enabled (EnableGC = true in GC.cpp), the JIT breaks because it
doesn't support labels.
This 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 Fu...