search for: gcregistry

Displaying 2 results from an estimated 2 matches for "gcregistry".

Did you mean: _registry
2007 Aug 31
3
[LLVMdev] PATCH: Registry template
...lessly reinventing the wheel as I wrote a collector registry. I haven't converted anything else to use it, though. Still, it's orthogonal and has become stable in my usage, so I thought I'd submit it in advance. To get my collector registry going, all I needed was 5 lines: // GCRegistry.h typedef Registry<TargetCollector> CollectorRegistry; // GCRegistry.cpp template<> CollectorRegistry::node *CollectorRegistry::Head = 0; template<> CollectorRegistry::node *CollectorRegistry::Tail = 0; template<> CollectorRegistry::listener *CollectorRegis...
2008 Aug 17
0
[LLVMdev] [!] Breaking changes to GC infrastructure
...he place to implement their runtime GC heap. Of course, it doesn't even exist at runtime. Specifically, the renames are: Collector -> GCStrategy CollectorMetadata -> GCFunctionInfo CollectorModuleMetadata -> GCModuleInfo CollectorRegistry -> GCRegistry Function::getCollector -> getGC [setGC, hasGC, clearGC] Several accessors and nested types have also been renamed to be consistent. These changes should be obvious. Please let me know if you have any questions! Thanks, Gordon P.S. Sorry for the short notice; this just came up yesterd...