1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 20:23:11 +01:00
llvm-mirror/lib/ExecutionEngine/MCJIT
Jim Grosbach 8a1f712b53 RuntimeDyld should use the memory manager API.
Start teaching the runtime Dyld interface to use the memory manager API
for allocating space. Rather than mapping directly into the MachO object,
we extract the payload for each object and copy it into a dedicated buffer
allocated via the memory manager. For now, just do Segment64, so this works
on x86_64, but not yet on ARM.

llvm-svn: 128973
2011-04-06 01:11:05 +00:00
..
CMakeLists.txt Add simple arg passing to MC-JIT and support for exit() call. 2011-03-22 18:05:27 +00:00
Intercept.cpp Add missing file from previous commit. 2011-03-22 18:21:14 +00:00
Makefile
MCJIT.cpp Layer the memory manager between the JIT and the runtime Dyld. 2011-04-04 23:04:39 +00:00
MCJIT.h Layer the memory manager between the JIT and the runtime Dyld. 2011-04-04 23:04:39 +00:00
MCJITMemoryManager.h RuntimeDyld should use the memory manager API. 2011-04-06 01:11:05 +00:00
TargetSelect.cpp