Displaying 2 results from an estimated 2 matches for "tp21174014p21242672".
2009 Jan 01
0
[LLVMdev] Re ducing LLVM's memory usage
...milar problems with my own code: there is a lot of lost
ConstantInts. From what I saw in the LLVM code, constants are put in a
statically managed structure which is supposed to be cleaned at shutdown.
Vitaly C.
--
View this message in context: http://www.nabble.com/Reducing-LLVM%27s-memory-usage-tp21174014p21242672.html
Sent from the LLVM - Dev mailing list archive at Nabble.com.
2008 Dec 26
3
[LLVMdev] Re ducing LLVM's memory usage
Hi,
I am working on a binary translator and use LLVM for this.
In the process, I generate millions of constants (immediate values in the
source binary code).
The problem is that these constants seem to be not cleaned when I delete the
LLVM code (using Function::deleteBody() ) and as a result the memory usage
keeps growing. I browsed the forum and found that constants "live forever"
by