search for: hascollector

Displaying 1 result from an estimated 1 matches for "hascollector".

2007 Dec 09
1
[LLVMdev] Next GC patch for review
...vm-c/Core.h (+2) lib/VMCore/Core.cpp (+13) bindings/ocaml/llvm/llvm.ml (+2) bindings/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-...