llvm-6502/unittests
Reid Kleckner 81ce3ed08c Make the JIT code emitter properly retry and ask for more memory when it runs
out of memory, and also make the default memory manager allocate more memory
when it runs out.

Also, switch function stubs and global data over to using the BumpPtrAllocator.

This makes it so the JIT no longer mmaps (or the equivalent on Windows) 16 MB
of memory, and instead allocates in 512K slabs.  I suspect this size could go
lower, especially on embedded platforms, now that more slabs can be allocated.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76828 91177308-0d34-0410-b5e6-96231b3b80d8
2009-07-23 00:49:59 +00:00
..
ADT Support writing a StringRef to a raw_ostream directly. 2009-07-22 17:13:20 +00:00
ExecutionEngine Make the JIT code emitter properly retry and ask for more memory when it runs 2009-07-23 00:49:59 +00:00
MC Fix order of arguments to EXPECT_EQ 2009-06-29 19:57:24 +00:00
Support Parameterize the BumpPtrAllocator over a slab allocator. It defaults to using 2009-07-23 00:30:41 +00:00
VMCore Move EVER MORE stuff over to LLVMContext. 2009-07-14 23:09:55 +00:00
Makefile Add a JITEventListener interface that gets called back when a new function is 2009-06-25 02:04:04 +00:00
Makefile.unittest
TestMain.cpp