search for: 1d991e86

Displaying 2 results from an estimated 2 matches for "1d991e86".

2010 Jan 31
0
[LLVMdev] Boehm GC + static variables?
...ode is compiled to native code so I can add roots for > the segments as required by Boehm GC? > > Thanks in advance, > -- James Williams > -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100131/1d991e86/attachment.html>
2010 Jan 31
2
[LLVMdev] Boehm GC + static variables?
Hi, I'm running LLVM bitcode generated by my compiler under lli. The bitcode is linked against Boehm GC (lli -load=/usr/lib/libgc.so). It looks like Boehm GC isn't scanning global variables and as a result objects referenced only through globals are being prematurely collected. I understand that Boehm GC needs to see the data segment containing my global variables as a root. For native