search for: gettombstonev

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

Did you mean: gettombstoneval
2009 Dec 20
1
[LLVMdev] source code for llvm
i don't understand the source code : static StringMapEntryBase *getTombstoneVal() { return (StringMapEntryBase*)-1; } at "include\llvm\adt\stingmaph" at line 116. "(StringMapEntryBase*)-1" is it the cast or something other? why there is a * after class StringMapEntryBase? thank you ~~ -------------- next part -------------- An HTML attachment w...
2011 Mar 15
10
[LLVMdev] Prevent unbounded memory consuption of long lived JIT processes
This series of patches address several issues causing memory usage to grow indefinetely on a long lived process. These are not convenional leaks -- memory would have been freed when the LLVM context or/and JIT engine is destroyed -- but for as long as they aren't the memory is usage effectively ubounded. The issues were found using valgrind with '--show-reachable=yes' option: 1.