| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add some dead stores to pacify my least favorite GCC warning: may be | Chandler Carruth | 2010-11-29 | 1 | -3/+3 |
| | | | | | | | | | | | | uninitialized. The warning is terrible, has incorrect source locations, and has a huge false positive rate such as *all* of these. If anyone has a better solution, please let me know. Alternatively, I'll happily add -Wno-uninitialized to the -Werror build mode. Maybe I can even do it *only* when building with GCC instead of Clang. llvm-svn: 120281 | ||||
| * | test/CMakeLists.txt: Implement the target "check-all". For now, it has no ↵ | NAKAMURA Takumi | 2010-11-29 | 1 | -0/+10 |
| | | | | | | | dependencies. llvm-svn: 120280 | ||||
| * | Add more Thumb encodings. | Bill Wendling | 2010-11-29 | 2 | -12/+38 |
| | | | | | llvm-svn: 120279 | ||||
| * | More Thumb encodings. | Bill Wendling | 2010-11-29 | 2 | -24/+81 |
| | | | | | llvm-svn: 120278 | ||||
| * | Add Thumb encodings for REV instructions. | Bill Wendling | 2010-11-29 | 2 | -20/+45 |
| | | | | | llvm-svn: 120277 | ||||
| * | tools/Makefile: Fix indentation. | NAKAMURA Takumi | 2010-11-29 | 1 | -12/+12 |
| | | | | | llvm-svn: 120276 | ||||
| * | tools/Makefile: Enable building lto, edis and bugpoint-passes on Cygming. | NAKAMURA Takumi | 2010-11-29 | 1 | -3/+8 |
| | | | | | | | | bugpoint-passes would be built with ENABLE_SHARED=1. You could try building gold on Cygming, though, it would fail. llvm-svn: 120275 | ||||
| * | test: Use $SharedLibDir for loadable modules. On Cygming, loadable modules ↵ | NAKAMURA Takumi | 2010-11-29 | 6 | -3/+9 |
| | | | | | | | are not in lib/ but bin. llvm-svn: 120274 | ||||
| * | test: Add the new feature 'loadable_module'. | NAKAMURA Takumi | 2010-11-29 | 3 | -0/+15 |
| | | | | | llvm-svn: 120273 | ||||
| * | Add more Thumb encodings. | Bill Wendling | 2010-11-29 | 2 | -24/+61 |
| | | | | | llvm-svn: 120272 | ||||
| * | Make EmitIntValue non virtual. | Rafael Espindola | 2010-11-28 | 4 | -60/+19 |
| | | | | | llvm-svn: 120271 | ||||
| * | Forgot the MCPureStreamer::EmitValue in the previous commit. | Rafael Espindola | 2010-11-28 | 1 | -21/+0 |
| | | | | | llvm-svn: 120270 | ||||
| * | Move EmitValue to MCObjectStreamer. | Rafael Espindola | 2010-11-28 | 5 | -65/+20 |
| | | | | | llvm-svn: 120269 | ||||
| * | Don't store the maximum alignment, we can trivially compute it. | Anders Carlsson | 2010-11-28 | 1 | -12/+21 |
| | | | | | llvm-svn: 120268 | ||||
| * | Revert parts of r120266 that I did not mean to commit | Nico Weber | 2010-11-28 | 2 | -45/+4 |
| | | | | | llvm-svn: 120267 | ||||
| * | Minor whitespace and comment fixes. No functionality change. | Nico Weber | 2010-11-28 | 5 | -7/+48 |
| | | | | | llvm-svn: 120266 | ||||
| * | Don't use std::copy and std::copy_backward, run 10% faster. | Jakob Stoklund Olesen | 2010-11-28 | 1 | -5/+8 |
| | | | | | | | | | Sometimes std::copy can become a memmove call, and that is not a good idea when copying relatively few bytes as we are doing. We also get a small win by changing two loops into one. llvm-svn: 120265 | ||||
| * | Disallow overlapping inserts, even when inserting the same value. | Jakob Stoklund Olesen | 2010-11-28 | 2 | -174/+54 |
| | | | | | | | | | | | | We always disallowed overlapping inserts with different values, and this makes the insertion code smaller and faster. If an overwriting insert is needed, it can be added as a separate method that trims any existing intervals before inserting. The immediate use cases for IntervalMap don't need this - they only use disjoint insertions. llvm-svn: 120264 | ||||
| * | Move lowering of TLS_addr32 and TLS_addr64 to X86MCInstLower. | Rafael Espindola | 2010-11-28 | 3 | -46/+67 |
| | | | | | llvm-svn: 120263 | ||||
| * | PR5207: remove unused methods APInt::Emit() and APInt::Read(). | Jay Foad | 2010-11-28 | 1 | -6/+0 |
| | | | | | llvm-svn: 120262 | ||||
| * | PR5207: change APInt::doubleToBits() and APInt::floatToBits() to be | Jay Foad | 2010-11-28 | 4 | -26/+12 |
| | | | | | | | static methods that return a new APInt. llvm-svn: 120261 | ||||
| * | fix PR8686, accepting a 'b' suffix at the end of all the setcc | Chris Lattner | 2010-11-28 | 2 | -1/+9 |
| | | | | | | | | | | | instructions. I choose to handle this with an asmparser hack, though it could be handled by changing all the instruction definitions to allow be "setneb" instead of "setne". The asm parser hack is better in this case, because we want the disassembler to produce setne, not setneb. llvm-svn: 120260 | ||||
| * | add a function to the C api to get the context out of a module, patch | Chris Lattner | 2010-11-28 | 2 | -0/+9 |
| | | | | | | | by Eric Dobson! llvm-svn: 120259 | ||||
| * | Minor fixup in <ratio> and add optional support for shared_mutex and ↵ | Howard Hinnant | 2010-11-28 | 2 | -16/+36 |
| | | | | | | | upgrade_mutex which must be opted into with #define _LIBCPP_SHARED_LOCK llvm-svn: 120258 | ||||
| * | More work on laying out virtual bases. | Anders Carlsson | 2010-11-28 | 1 | -9/+46 |
| | | | | | llvm-svn: 120257 | ||||
| * | Tweak comments to make it clear that we are working in a namespace. | Jakob Stoklund Olesen | 2010-11-28 | 1 | -18/+18 |
| | | | | | llvm-svn: 120256 | ||||
| * | tighten up operator= to ensure we don't get multiple owners with the same FD. | Chris Lattner | 2010-11-28 | 1 | -1/+6 |
| | | | | | | | wouldn't move ctors be nice? :) llvm-svn: 120255 | ||||
| * | fix typo | Chris Lattner | 2010-11-28 | 1 | -1/+1 |
| | | | | | llvm-svn: 120254 | ||||
| * | When emitting a single function with cppgen=function, you don't want to emit | Nicolas Geoffray | 2010-11-28 | 1 | -10/+26 |
| | | | | | | | | initializers of global variables used in the function. Also make sure to emit the operands of a constant. llvm-svn: 120253 | ||||
| * | BuildVirtualCall doesn't need to take a reference to a pointer. | Anders Carlsson | 2010-11-28 | 2 | -2/+2 |
| | | | | | llvm-svn: 120252 | ||||
| * | Make the destructor be the 'vtable anchor' of the CGCXXABI class. | Anders Carlsson | 2010-11-28 | 2 | -4/+2 |
| | | | | | llvm-svn: 120251 | ||||
| * | Move CGCXXABI functions to CGCXXABI.cpp | Anders Carlsson | 2010-11-28 | 3 | -157/+159 |
| | | | | | llvm-svn: 120250 | ||||
| * | Add a CGCXXABI.cpp file. | Anders Carlsson | 2010-11-28 | 2 | -0/+19 |
| | | | | | llvm-svn: 120249 | ||||
| * | Fixed verson of r120245. | Rafael Espindola | 2010-11-28 | 5 | -47/+27 |
| | | | | | | | Factor some duplicated code into MCObjectStreamer::EmitLabel. llvm-svn: 120248 | ||||
| * | Look through parentheses when deciding whether an expr is a temporary ↵ | Anders Carlsson | 2010-11-28 | 2 | -4/+26 |
| | | | | | | | object. Fixes PR8683. llvm-svn: 120247 | ||||
| * | Revert previous patch while I debug the darwin bootstrap failure. | Rafael Espindola | 2010-11-28 | 5 | -24/+54 |
| | | | | | llvm-svn: 120246 | ||||
| * | Factor some duplicated code into MCObjectStreamer::EmitLabel. | Rafael Espindola | 2010-11-28 | 5 | -54/+24 |
| | | | | | llvm-svn: 120245 | ||||
| * | Make EmitSymbolValue non virtual. | Rafael Espindola | 2010-11-28 | 1 | -2/+2 |
| | | | | | llvm-svn: 120244 | ||||
| * | Avoid code duplication in the many unsupported EmitGPRel32Value implementations. | Rafael Espindola | 2010-11-28 | 6 | -15/+5 |
| | | | | | llvm-svn: 120243 | ||||
| * | Make EmitULEB128IntValue and EmitSLEB128IntValue non virtual. | Rafael Espindola | 2010-11-28 | 1 | -2/+2 |
| | | | | | llvm-svn: 120242 | ||||
| * | Move the PTXMCAsmStreamer class to the .cpp file. | Rafael Espindola | 2010-11-28 | 3 | -206/+181 |
| | | | | | llvm-svn: 120241 | ||||
| * | Define generic 1, 2 and 4 byte pc relative relocations. They are common | Rafael Espindola | 2010-11-28 | 15 | -98/+56 |
| | | | | | | | and at least the 4 byte one will be needed to implement the .cfi_* directives. llvm-svn: 120240 | ||||
| * | Add default constructors for iterators. | Jakob Stoklund Olesen | 2010-11-28 | 2 | -0/+14 |
| | | | | | | | | These iterators don't point anywhere, and they can't be compared to anything. They are only good for assigning to. llvm-svn: 120239 | ||||
| * | Add GCC 4.4.5 for Gentoo, and order them in a more sensible way. This allows | Chandler Carruth | 2010-11-28 | 1 | -13/+15 |
| | | | | | | | | | Gentoo systems with multiple versions to pick up the newest one first. This is especially important with Gentoo because some of the older versions are left on systems in strange states. llvm-svn: 120238 | ||||
| * | Implement const_iterator::advanceTo(). | Jakob Stoklund Olesen | 2010-11-28 | 2 | -2/+89 |
| | | | | | | | | This is a version of find() that always searches forwards and is faster for local searches. llvm-svn: 120237 | ||||
| * | Add support for NEON VLD2-dup instructions. | Bob Wilson | 2010-11-28 | 9 | -8/+287 |
| | | | | | llvm-svn: 120236 | ||||
| * | Fix a comment typo. | Bob Wilson | 2010-11-28 | 1 | -1/+1 |
| | | | | | llvm-svn: 120235 | ||||
| * | Another minor refactoring for VLD1DUP instructions. | Bob Wilson | 2010-11-28 | 1 | -22/+20 |
| | | | | | | | | The op11_8 field is the same for all of them so put it in the instruction classes instead of specifying it separately for each instruction. llvm-svn: 120234 | ||||
| * | Add entry in getTargetNodeName() for ARMISD::VBICIMM. | Bob Wilson | 2010-11-28 | 1 | -1/+2 |
| | | | | | llvm-svn: 120233 | ||||
| * | Speed up simple insertions into an unbranched tree by not creating an iterator. | Jakob Stoklund Olesen | 2010-11-28 | 1 | -1/+6 |
| | | | | | llvm-svn: 120232 | ||||

