index
:
emscripten-fastcomp
master
LLVM with the emscripten fastcomp javascript backend
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
unittests
/
ExecutionEngine
Age
Commit message (
Expand
)
Author
2009-11-16
Revert the test from r88984. It relies on being able to mmap 16GB of
Jeffrey Yasskin
2009-11-16
Make X86-64 in the Large model always emit 64-bit calls.
Jeffrey Yasskin
2009-11-14
This test doesn't work on arm either.
Benjamin Kramer
2009-11-13
Disable the JITTest.NoStubs test for Darwin PPC. It apparently doesn't implement
Bill Wendling
2009-11-12
Use stubs when we have them, otherwise use code we already have,
Eric Christopher
2009-11-11
Fix JITTest.ModuleDeletion in -Asserts mode (which turns off JITEmitDebugInfo
Jeffrey Yasskin
2009-11-09
Remove dlsym stubs, with Nate Begeman's permission.
Jeffrey Yasskin
2009-10-28
Fix the ModuleDeletion test on PPC and ARM.
Jeffrey Yasskin
2009-10-27
Revert the API changes from r85295 to make it easier for people to build
Jeffrey Yasskin
2009-10-27
Change the JIT to compile eagerly by default as agreed in
Jeffrey Yasskin
2009-10-27
Type.h doesn't need to #include LLVMContext.h
Chris Lattner
2009-10-27
Automatically do the equivalent of freeMachineCodeForFunction(F) when F is
Jeffrey Yasskin
2009-10-23
Fix http://llvm.org/PR4822: allow module deletion after a function has been
Jeffrey Yasskin
2009-10-20
Move the Function*->allocated blocks map from the JITMemoryManager to the
Jeffrey Yasskin
2009-10-20
PowerPC ifdef'ing considered more complicated than one might like.
Daniel Dunbar
2009-10-20
Correct test for PowerPC.
Nick Lewycky
2009-10-19
Also check for __POWERPC__ when skipping these tests.
Daniel Dunbar
2009-10-15
Disable another unittest that doesn't work on arm and ppc.
Benjamin Kramer
2009-10-14
The ARM and PowerPC jits are broken in this regard.
Nick Lewycky
2009-10-13
Keep track of stubs that are created. This fixes PR5162 and probably PR4822 and
Jeffrey Yasskin
2009-10-13
Make the ExecutionEngine automatically remove global mappings on when their
Jeffrey Yasskin
2009-10-09
ExecutionEngine::clearGlobalMappingsFromModule failed to remove reverse
Jeffrey Yasskin
2009-10-06
Fix illegal cross-type aliasing. Found by baldrick on a newer gcc.
Jeffrey Yasskin
2009-10-06
Fix http://llvm.org/PR5116 by rolling back r60822. This passes `make unittests
Jeffrey Yasskin
2009-08-13
Push LLVMContexts through the IntegerType APIs.
Owen Anderson
2009-08-04
Make ExecutionEngine::updateGlobalMapping(GV, NULL) properly remove GV's old
Jeffrey Yasskin
2009-07-31
Update unittest for LLVM API change.
Benjamin Kramer
2009-07-29
Move types back to the 2.5 API.
Owen Anderson
2009-07-24
Revert the ConstantInt constructors back to their 2.5 forms where possible, t...
Owen Anderson
2009-07-23
Fixing unittests on 32-bit Darwin, using 0x...ULL instead of 0x...U .
Reid Kleckner
2009-07-23
Re-committing r76828 with the JIT memory manager changes now that the build
Reid Kleckner
2009-07-23
Reverting r76825 and r76828, since they caused clang runtime errors and some ...
Reid Kleckner
2009-07-23
Make the JIT code emitter properly retry and ask for more memory when it runs
Reid Kleckner
2009-07-18
Unbreak unittests build.
Daniel Dunbar
2009-07-18
Add EngineBuilder to ExecutionEngine in favor of the five optional argument E...
Reid Kleckner
2009-07-14
Move EVER MORE stuff over to LLVMContext.
Owen Anderson
2009-07-13
Begin the painful process of tearing apart the rat'ss nest that is Constants....
Owen Anderson
2009-07-11
Don't use a void return type with a function that returns a value.
Dan Gohman
2009-07-10
Fix unit tests.
Owen Anderson
2009-07-08
Add an option to allocate JITed global data separately from code. By
Jeffrey Yasskin
2009-07-01
Hold the LLVMContext by reference rather than by pointer.
Owen Anderson
2009-07-01
Fix unit tests for LLVMContext+Module.
Owen Anderson
2009-06-25
Add a JITEventListener interface that gets called back when a new function is
Jeffrey Yasskin