search for: trienodes

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

Did you mean: trienode
2014 Nov 26
3
[LLVMdev] [lld] memory leaks.
...he pointer returned by find() must never be freed, and make sure the FileArchive (and other classes implementing find()) managed the memory of the returned file objects. - One other leak is Mach-O specific. TrieNode (in MachONormalizedFileBinaryWriter) uses a SmallVector to store its children. But TrieNodes are allocated using a llvm bumpPtr allocator, and so are never ‘deleted'. While the memory used by the TrieNode is properly released when the allocator is destroyed, the SmallVector destructor is never called and so the contained TrieEdges leak. - The third major leak source is the SimpleRefer...