summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* The ARM BR_JT* pseudos don't need to use the printer jtblock_operand node toJim Grosbach2010-11-291-4/+4
| | | | | | get the pretty-printer. That's handled explicityly by the MC lowering now. llvm-svn: 120305
* I swear I did a make clean and make before committing all this...Michael J. Spencer2010-11-2920-27/+27
| | | | llvm-svn: 120304
* Switch ARM BR_JTm and BR_JTr instructions to be MC-expanded pseudos.Jim Grosbach2010-11-293-43/+95
| | | | llvm-svn: 120303
* Missed another one.Michael J. Spencer2010-11-291-1/+1
| | | | llvm-svn: 120302
* Missed a spot.Michael J. Spencer2010-11-291-1/+1
| | | | llvm-svn: 120301
* Always use a function's decl context when building default arguments. Fixes ↵Nico Weber2010-11-292-4/+45
| | | | | | http://http://llvm.org/pr8479. llvm-svn: 120299
* Merge System into Support.Michael J. Spencer2010-11-29274-572/+546
| | | | llvm-svn: 120298
* Merge System into Support.Michael J. Spencer2010-11-2949-67/+67
| | | | llvm-svn: 120297
* Revert r120063, it was wrong.John McCall2010-11-292-14/+5
| | | | llvm-svn: 120296
* Add comment.Johnny Chen2010-11-291-0/+3
| | | | llvm-svn: 120295
* When looping through the test suite more than once (repeat count > 1), we shouldJohnny Chen2010-11-291-2/+5
| | | | | | ignore and not enforce the signleton pattern for the LLDBTestResult class. llvm-svn: 120294
* I hate default statementsDouglas Gregor2010-11-291-1/+0
| | | | llvm-svn: 120293
* Add a test for C++ [stmt.label]p1, from Sashan!Douglas Gregor2010-11-291-0/+25
| | | | llvm-svn: 120291
* When performing code completion within ASTUnit, allocate the ↵Douglas Gregor2010-11-291-6/+6
| | | | | | AugmentedCodeCompleteConsumer on the heap, so it's always cleaned up properly llvm-svn: 120290
* Teach the ASTImporter how to create CXXMethodDecls. Somehow, this case was ↵Douglas Gregor2010-11-291-0/+7
| | | | | | missed previously llvm-svn: 120289
* Handle lshr for i128 correctly on SPU also when Kalle Raiskila2010-11-292-4/+19
| | | | | | shiftamount > 7. llvm-svn: 120288
* Enable PostRA scheduling for SPU. Kalle Raiskila2010-11-294-4/+29
| | | | | | | This speeds up selected test cases with up to 5% - no slowdowns observed. llvm-svn: 120286
* Allow machine LICM to do its job on SPU.Kalle Raiskila2010-11-292-1/+9
| | | | | | | -return a sensible value for register pressure -add pattern to 'ila' instrucion llvm-svn: 120285
* Add missing i128 case.Kalle Raiskila2010-11-291-0/+3
| | | | llvm-svn: 120284
* tools/Makefile: Don't look into $(TARGET_OS), but $(HOST_OS), to inspect ↵NAKAMURA Takumi2010-11-291-1/+1
| | | | | | | | availability of loadable module! The last commit made run.build.step.test_llvm_1 to fail. llvm-svn: 120283
* test: Check the feature 'loadable_module' with load modules in %llvmshlibdir.NAKAMURA Takumi2010-11-295-11/+11
| | | | | | %llvmshlibdir should be 'bin' on Cygming. llvm-svn: 120282
* Add some dead stores to pacify my least favorite GCC warning: may beChandler Carruth2010-11-291-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 Takumi2010-11-291-0/+10
| | | | | | dependencies. llvm-svn: 120280
* Add more Thumb encodings.Bill Wendling2010-11-292-12/+38
| | | | llvm-svn: 120279
* More Thumb encodings.Bill Wendling2010-11-292-24/+81
| | | | llvm-svn: 120278
* Add Thumb encodings for REV instructions.Bill Wendling2010-11-292-20/+45
| | | | llvm-svn: 120277
* tools/Makefile: Fix indentation.NAKAMURA Takumi2010-11-291-12/+12
| | | | llvm-svn: 120276
* tools/Makefile: Enable building lto, edis and bugpoint-passes on Cygming.NAKAMURA Takumi2010-11-291-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 Takumi2010-11-296-3/+9
| | | | | | are not in lib/ but bin. llvm-svn: 120274
* test: Add the new feature 'loadable_module'.NAKAMURA Takumi2010-11-293-0/+15
| | | | llvm-svn: 120273
* Add more Thumb encodings.Bill Wendling2010-11-292-24/+61
| | | | llvm-svn: 120272
* Make EmitIntValue non virtual.Rafael Espindola2010-11-284-60/+19
| | | | llvm-svn: 120271
* Forgot the MCPureStreamer::EmitValue in the previous commit.Rafael Espindola2010-11-281-21/+0
| | | | llvm-svn: 120270
* Move EmitValue to MCObjectStreamer.Rafael Espindola2010-11-285-65/+20
| | | | llvm-svn: 120269
* Don't store the maximum alignment, we can trivially compute it.Anders Carlsson2010-11-281-12/+21
| | | | llvm-svn: 120268
* Revert parts of r120266 that I did not mean to commitNico Weber2010-11-282-45/+4
| | | | llvm-svn: 120267
* Minor whitespace and comment fixes. No functionality change.Nico Weber2010-11-285-7/+48
| | | | llvm-svn: 120266
* Don't use std::copy and std::copy_backward, run 10% faster.Jakob Stoklund Olesen2010-11-281-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 Olesen2010-11-282-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 Espindola2010-11-283-46/+67
| | | | llvm-svn: 120263
* PR5207: remove unused methods APInt::Emit() and APInt::Read().Jay Foad2010-11-281-6/+0
| | | | llvm-svn: 120262
* PR5207: change APInt::doubleToBits() and APInt::floatToBits() to beJay Foad2010-11-284-26/+12
| | | | | | static methods that return a new APInt. llvm-svn: 120261
* fix PR8686, accepting a 'b' suffix at the end of all the setccChris Lattner2010-11-282-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, patchChris Lattner2010-11-282-0/+9
| | | | | | by Eric Dobson! llvm-svn: 120259
* Minor fixup in <ratio> and add optional support for shared_mutex and ↵Howard Hinnant2010-11-282-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 Carlsson2010-11-281-9/+46
| | | | llvm-svn: 120257
* Tweak comments to make it clear that we are working in a namespace.Jakob Stoklund Olesen2010-11-281-18/+18
| | | | llvm-svn: 120256
* tighten up operator= to ensure we don't get multiple owners with the same FD.Chris Lattner2010-11-281-1/+6
| | | | | | wouldn't move ctors be nice? :) llvm-svn: 120255
* fix typoChris Lattner2010-11-281-1/+1
| | | | llvm-svn: 120254
* When emitting a single function with cppgen=function, you don't want to emitNicolas Geoffray2010-11-281-10/+26
| | | | | | | initializers of global variables used in the function. Also make sure to emit the operands of a constant. llvm-svn: 120253
OpenPOWER on IntegriCloud