llvm-6502/lib
Filip Pizlo 0e1327e4aa This exposes more MCJIT options via the C API:
CodeModel: It's now possible to create an MCJIT instance with any CodeModel you like.  Previously it was only possible to 
create an MCJIT that used CodeModel::JITDefault.

EnableFastISel: It's now possible to turn on the fast instruction selector.

The CodeModel option required some trickery.  The problem is that previously, we were ensuring future binary compatibility in 
the MCJITCompilerOptions by mandating that the user bzero's the options struct and passes the sizeof() that he saw; the 
bindings then bzero the remaining bits.  This works great but assumes that the bitwise zero equivalent of any field is a 
sensible default value.

But this is not the case for LLVMCodeModel, or its internal equivalent, llvm::CodeModel::Model.  In both of those, the default 
for a JIT is CodeModel::JITDefault (or LLVMCodeModelJITDefault), which is not bitwise zero.

Hence this change introduces LLVMInitializeMCJITCompilerOptions(), which will initialize the user's options struct with
defaults. The user will use this in the same way that they would have previously used memset() or bzero(). MCJITCAPITest.cpp
illustrates the change, as does the comment in ExecutionEngine.h.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@180893 91177308-0d34-0410-b5e6-96231b3b80d8
2013-05-01 22:58:00 +00:00
..
Analysis This patch breaks up Wrap.h so that it does not have to include all of 2013-05-01 20:59:00 +00:00
Archive
AsmParser
Bitcode This patch breaks up Wrap.h so that it does not have to include all of 2013-05-01 20:59:00 +00:00
CodeGen Revert r180737. The companion patch was reverted, and this is not relevant right now. 2013-05-01 22:32:08 +00:00
DebugInfo
ExecutionEngine This exposes more MCJIT options via the C API: 2013-05-01 22:58:00 +00:00
IR This patch breaks up Wrap.h so that it does not have to include all of 2013-05-01 20:59:00 +00:00
IRReader
Linker This patch breaks up Wrap.h so that it does not have to include all of 2013-05-01 20:59:00 +00:00
MC
Object This patch breaks up Wrap.h so that it does not have to include all of 2013-05-01 20:59:00 +00:00
Option
Support Fixes a buffer overrun where the allocated buffer wasn't large enough to accommodate the closing quote escape rules in some instances. 2013-05-01 02:53:14 +00:00
TableGen
Target This exposes more MCJIT options via the C API: 2013-05-01 22:58:00 +00:00
Transforms This patch breaks up Wrap.h so that it does not have to include all of 2013-05-01 20:59:00 +00:00
CMakeLists.txt
LLVMBuild.txt
Makefile