1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00
llvm-mirror/lib/ExecutionEngine
Keno Fischer 730aa65947 [RuntimeDyld] DenseMap -> std::unordered_map
DenseMap is most applicable when both keys and values are small.
In this case, the value violates that assumption, causing quite
significant memory overhead. A std::unordered_map is more appropriate
in this case (or at least fixed the memory problems I was seeing).

Differential Revision: http://reviews.llvm.org/D14910

llvm-svn: 254651
2015-12-03 21:27:59 +00:00
..
IntelJITEvents
Interpreter [ExecutionEngine] Garbage collect some dead (and unsafe) code. 2015-10-22 18:46:27 +00:00
MCJIT Reapply r250906 with many suggested updates from Rafael Espindola. 2015-11-05 19:24:56 +00:00
OProfileJIT
Orc Refactor: Simplify boolean conditional return statements in lib/llvm/ExecutionEngine/Orc 2015-11-05 21:18:09 +00:00
RuntimeDyld [RuntimeDyld] DenseMap -> std::unordered_map 2015-12-03 21:27:59 +00:00
CMakeLists.txt
ExecutionEngine.cpp ExecutionEngine: Remove implicit ilist iterator conversions, NFC 2015-10-13 18:11:02 +00:00
ExecutionEngineBindings.cpp
GDBRegistrationListener.cpp
LLVMBuild.txt
Makefile
SectionMemoryManager.cpp Fix performance problem in long-running SectionMemoryManagers 2015-10-01 02:45:07 +00:00
TargetSelect.cpp