Displaying 1 result from an estimated 1 matches for "clearcollector".
2007 Dec 09
1
[LLVMdev] Next GC patch for review
...ocaml/llvm/llvm_ocaml.c (+23)
bindings/ocaml/llvm/llvm.mli (+9)
test/Bindings/Ocaml/vmcore.ml (+16 -3)
Adds these methods to Function and makes corresponding changes to
assembly and bitcode:
bool hasCollector() const;
const char *getCollector() const;
void setCollector(const char *);
void clearCollector();
The assembly representation is as such:
define void @f() gc "shadow-stack" { ...
Uses StringPool to unique collector names, which are extremely likely
to be unique per process.
gc-5b-regen.patch (+1245 -1209):
lib/AsmParser/llvmAsmParser.cpp.cvs (+1221 -1197)
lib/AsmParse...