| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix the ValueMap copy constructor. The issue is that the map keys are value | Duncan Sands | 2010-07-30 | 1 | -1/+6 |
* | remove a layer of cruft | Gabor Greif | 2010-07-29 | 1 | -9/+3 |
* | Add builtins for ssat/usat, similar to RealView's __ssat and __usat intrinsics. | Nate Begeman | 2010-07-29 | 1 | -0/+4 |
* | Grammar. | Eric Christopher | 2010-07-29 | 1 | -2/+2 |
* | Add intrinsics __builtin_arm_qadd & __builtin_arm_qsub to allow access to the... | Nate Begeman | 2010-07-29 | 1 | -0/+11 |
* | Plug the remaining MC leaks by giving MCObjectStreamer/MCAsmStreamer ownershi... | Benjamin Kramer | 2010-07-29 | 2 | -3/+7 |
* | Stop leaking std::strings in GetDwarfFile. | Benjamin Kramer | 2010-07-29 | 2 | -5/+6 |
* | Speculatively revert r109705 since it seems to be causing some build bot | Eric Christopher | 2010-07-29 | 2 | -23/+3 |
* | Factor out some of the code for updating old SCEVUnknown values, and | Dan Gohman | 2010-07-29 | 2 | -3/+23 |
* | Add an erase() method to llvm::ThreadLocal. | Owen Anderson | 2010-07-28 | 1 | -0/+4 |
* | Add more doxygen comments for llvm::ThreadLocal. | Owen Anderson | 2010-07-28 | 1 | -0/+9 |
* | Move MaximumAlignment to Value.h, now that GlobalValue.h needs it. | Dan Gohman | 2010-07-28 | 2 | -4/+4 |
* | Make GlobalValue alignment consistent with load, store, and alloca | Dan Gohman | 2010-07-28 | 1 | -4/+3 |
* | Added first bit of support for the dwarf .file directive. This patch collects | Kevin Enderby | 2010-07-28 | 2 | -0/+79 |
* | MC: Put back the MCFragment vtable, so subclasses are destroyed properly (duh). | Daniel Dunbar | 2010-07-28 | 1 | -0/+1 |
* | Define a maximum supported alignment value for load, store, and | Dan Gohman | 2010-07-28 | 1 | -0/+4 |
* | Add some extra friend declarations to fix a gcc-4.0 compile error. | Dan Gohman | 2010-07-28 | 2 | -0/+3 |
* | Support: Add CrashRecoveryContext helper object. | Daniel Dunbar | 2010-07-28 | 1 | -0/+82 |
* | we are supposed to only create proper CallSites from an instruction (esp. Cal... | Gabor Greif | 2010-07-28 | 1 | -2/+2 |
* | Add a comment. | Dan Gohman | 2010-07-28 | 1 | -0/+2 |
* | Fill out the interface of DenseSet a bit. | Owen Anderson | 2010-07-27 | 1 | -0/+6 |
* | reintroduce original (asserting) semantics of CallSite(Instruction *II) | Gabor Greif | 2010-07-27 | 1 | -0/+2 |
* | remove bogus assert, use static_cast for additional checking | Gabor Greif | 2010-07-27 | 1 | -5/+4 |
* | make lookup failures not fatal. | Chris Lattner | 2010-07-27 | 1 | -1/+6 |
* | Return -1 only on failure to execute a program. | Mikhail Glushenkov | 2010-07-27 | 3 | -27/+36 |
* | In commit 91421, isPod was changed from false to true for these value handles. | Duncan Sands | 2010-07-27 | 1 | -6/+0 |
* | RegionInfo: Add getMaxRegionExit() | Tobias Grosser | 2010-07-27 | 1 | -0/+6 |
* | Add function to query RegionInfo about loops. | Tobias Grosser | 2010-07-27 | 1 | -10/+33 |
* | It's better to have the arrays, which would trigger the creation of stack | Bill Wendling | 2010-07-27 | 1 | -14/+29 |
* | Use AssertingVH for InsertedValues and InsertedPostIncValues, to verify | Dan Gohman | 2010-07-27 | 1 | -3/+8 |
* | Add a comment. | Dan Gohman | 2010-07-26 | 1 | -0/+2 |
* | re-commit r109220, the compile error has already been fixed | Gabor Greif | 2010-07-26 | 1 | -24/+0 |
* | Add an initial implementation of LazyValueInfo updating for JumpThreading. D... | Owen Anderson | 2010-07-26 | 1 | -0/+4 |
* | Remove LCSSA's bogus dependence on LoopSimplify and LoopSimplify's bogus | Dan Gohman | 2010-07-26 | 1 | -0/+3 |
* | MC: Add WinCOFFObjectWriter implementation. | Michael J. Spencer | 2010-07-26 | 1 | -1/+53 |
* | Factored out a bit of common code to mark VNInfos for deletion. | Lang Hames | 2010-07-26 | 1 | -0/+1 |
* | Hook in GlobalMerge pass | Anton Korobeynikov | 2010-07-24 | 1 | -0/+6 |
* | Add hook to insert late LLVM=>LLVM passes just before isel | Anton Korobeynikov | 2010-07-24 | 1 | -4/+9 |
* | add a new NullablePtr class which makes it more obvious in API | Chris Lattner | 2010-07-24 | 1 | -0/+52 |
* | Add an ILP scheduler. This is a register pressure aware scheduler that's | Evan Cheng | 2010-07-24 | 2 | -4/+12 |
* | Fix use-after-free error. | Owen Anderson | 2010-07-23 | 1 | -2/+2 |
* | - Allow target to specify when is register pressure "too high". In most cases, | Evan Cheng | 2010-07-23 | 1 | -0/+8 |
* | Eliminate getCanonicalInductionVariableIncrement's last user and | Dan Gohman | 2010-07-23 | 1 | -6/+0 |
* | Revert r109102 for now as it's causing JIT miscompilations. | Eric Christopher | 2010-07-23 | 1 | -1/+1 |
* | Revert 109220. | Eric Christopher | 2010-07-23 | 1 | -0/+24 |
* | Simplifying use_iterators by dereferencing | Gabor Greif | 2010-07-23 | 1 | -24/+0 |
* | StringRef'icate. | Mikhail Glushenkov | 2010-07-23 | 1 | -6/+2 |
* | Get rid of exceptions in llvmc. | Mikhail Glushenkov | 2010-07-23 | 5 | -54/+60 |
* | give StringMap a new ctor which allows you to initialize it | Chris Lattner | 2010-07-23 | 1 | -0/+4 |
* | modernize stringset interface | Chris Lattner | 2010-07-23 | 1 | -4/+3 |