| Commit message (Expand) | Author | Age | Files | Lines |
* | Disable JITTest.FunctionIsRecompiledAndRelinked on ARM where it's not | Jeffrey Yasskin | 2009-12-23 | 1 | -0/+4 |
* | Partially revert r91626. Materializing extra functions to determine whether | Jeffrey Yasskin | 2009-12-22 | 2 | -7/+97 |
* | Fix a crash in JIT::recompileAndRelinkFunction(). It doesn't pass the MCI | Jeffrey Yasskin | 2009-12-22 | 1 | -0/+31 |
* | Change StringRef::startswith and StringRef::endswith to versions which are a | Eli Friedman | 2009-12-21 | 1 | -0/+8 |
* | Catch more cases of a pointer being marked garbage twice. This helps when | Rafael Espindola | 2009-12-18 | 1 | -0/+29 |
* | Don't codegen available_externally functions. Fixes http://llvm.org/PR5735. | Jeffrey Yasskin | 2009-12-17 | 1 | -0/+29 |
* | This fixes a memory leak in OpaqueType found by Google's internal heapchecker. | Jeffrey Yasskin | 2009-12-17 | 1 | -0/+31 |
* | Reinstate r91208 to fix available_externally linkage for globals, with | Jeffrey Yasskin | 2009-12-13 | 2 | -0/+28 |
* | Revert r91208. Something on Linux prevents the JIT from looking up a symbol | Jeffrey Yasskin | 2009-12-12 | 1 | -25/+0 |
* | Fix available_externally linkage for globals. It's probably still not | Jeffrey Yasskin | 2009-12-12 | 1 | -0/+25 |
* | Add an implementation of the delta debugging algorithm. | Daniel Dunbar | 2009-12-03 | 1 | -0/+96 |
* | Oops. Re-disable JITTest.NoStubs on ARM and PPC since they still use stubs to | Jeffrey Yasskin | 2009-11-24 | 1 | -0/+5 |
* | * Move stub allocation inside the JITEmitter, instead of exposing a | Jeffrey Yasskin | 2009-11-23 | 1 | -3/+34 |
* | Only run this mutex test if threading is enabled. This | Duncan Sands | 2009-11-19 | 1 | -0/+3 |
* | Reenable Split2 StringRef test with Apple gcc. | Benjamin Kramer | 2009-11-19 | 1 | -6/+0 |
* | "XFAIL" the Split2 StringReft test with Apple gcc, which miscompiles it. | Daniel Dunbar | 2009-11-17 | 1 | -0/+6 |
* | Revert the test from r88984. It relies on being able to mmap 16GB of | Jeffrey Yasskin | 2009-11-16 | 1 | -151/+6 |
* | Make X86-64 in the Large model always emit 64-bit calls. | Jeffrey Yasskin | 2009-11-16 | 1 | -6/+151 |
* | This test doesn't work on arm either. | Benjamin Kramer | 2009-11-14 | 1 | -3/+1 |
* | Disable the JITTest.NoStubs test for Darwin PPC. It apparently doesn't implement | Bill Wendling | 2009-11-13 | 1 | -0/+4 |
* | Distinguish "a," from "a". The first one splits into "a" + "" and the second ... | Rafael Espindola | 2009-11-13 | 1 | -0/+5 |
* | Switch to smallvector. Also fix issue with using unsigend for MaxSplit. | Rafael Espindola | 2009-11-13 | 1 | -2/+3 |
* | Add a new split method to StringRef that puts the substrings in a vector. | Rafael Espindola | 2009-11-13 | 1 | -0/+75 |
* | Use stubs when we have them, otherwise use code we already have, | Eric Christopher | 2009-11-12 | 1 | -0/+41 |
* | Fix JITTest.ModuleDeletion in -Asserts mode (which turns off JITEmitDebugInfo | Jeffrey Yasskin | 2009-11-11 | 1 | -1/+7 |
* | Add From arguments to StringRef search functions, and tweak doxyments. | Daniel Dunbar | 2009-11-11 | 1 | -0/+10 |
* | Fix DenseMap iterator constness. | Jeffrey Yasskin | 2009-11-10 | 1 | -0/+12 |
* | Remove dlsym stubs, with Nate Begeman's permission. | Jeffrey Yasskin | 2009-11-09 | 1 | -3/+0 |
* | Fix the ModuleDeletion test on PPC and ARM. | Jeffrey Yasskin | 2009-10-28 | 1 | -0/+1 |
* | Revert the API changes from r85295 to make it easier for people to build | Jeffrey Yasskin | 2009-10-27 | 1 | -3/+3 |
* | Factor out redundancy from clone() implementations. | Devang Patel | 2009-10-27 | 1 | -28/+28 |
* | Change the JIT to compile eagerly by default as agreed in | Jeffrey Yasskin | 2009-10-27 | 1 | -3/+3 |
* | Type.h doesn't need to #include LLVMContext.h | Chris Lattner | 2009-10-27 | 5 | -1/+5 |
* | Automatically do the equivalent of freeMachineCodeForFunction(F) when F is | Jeffrey Yasskin | 2009-10-27 | 2 | -9/+162 |
* | Remove / use flags that are now set in the Makefile.config. | Julien Lerouge | 2009-10-26 | 1 | -1/+1 |
* | Move DataTypes.h to include/llvm/System, update all users. This breaks the last | Chandler Carruth | 2009-10-26 | 1 | -1/+1 |
* | Fix http://llvm.org/PR4822: allow module deletion after a function has been | Jeffrey Yasskin | 2009-10-23 | 2 | -3/+30 |
* | Fix stylistic and documentation problems in ValueMap found by Nick Lewycky and | Jeffrey Yasskin | 2009-10-23 | 1 | -3/+3 |
* | Try r84890 again (adding ValueMap<>), now that I've tested the compile on | Jeffrey Yasskin | 2009-10-22 | 1 | -0/+291 |
* | Revert r84890, which broke the linux build. | Jeffrey Yasskin | 2009-10-22 | 1 | -291/+0 |
* | Add a ValueMap<ValueOrSubclass*, T> type. ValueMap<Value*, T> is safe to use | Jeffrey Yasskin | 2009-10-22 | 1 | -0/+291 |
* | Move the Function*->allocated blocks map from the JITMemoryManager to the | Jeffrey Yasskin | 2009-10-20 | 1 | -38/+39 |
* | PowerPC ifdef'ing considered more complicated than one might like. | Daniel Dunbar | 2009-10-20 | 1 | -1/+1 |
* | Correct test for PowerPC. | Nick Lewycky | 2009-10-20 | 1 | -1/+1 |
* | Also check for __POWERPC__ when skipping these tests. | Daniel Dunbar | 2009-10-19 | 1 | -1/+1 |
* | Add raw_ostream::write_escaped, for writing escaped strings. | Daniel Dunbar | 2009-10-17 | 1 | -0/+16 |
* | Disable another unittest that doesn't work on arm and ppc. | Benjamin Kramer | 2009-10-15 | 1 | -1/+1 |
* | The ARM and PowerPC jits are broken in this regard. | Nick Lewycky | 2009-10-14 | 1 | -0/+2 |
* | Keep track of stubs that are created. This fixes PR5162 and probably PR4822 and | Jeffrey Yasskin | 2009-10-13 | 1 | -0/+96 |
* | Make the ExecutionEngine automatically remove global mappings on when their | Jeffrey Yasskin | 2009-10-13 | 1 | -0/+13 |