summaryrefslogtreecommitdiff
path: root/lib/Target/MSP430/MSP430ISelLowering.cpp
Commit message (Expand)AuthorAge
...
* Fix a bunch of custom-inserter functions to handle the case whereDan Gohman2010-07-06
* Remove isSS argument from CreateFixedObject. Fixed objects cannot be spill sl...Evan Cheng2010-07-03
* Implement @llvm.returnaddress. rdar://8015977.Evan Cheng2010-05-22
* Code refactoring: pull SchedPreference enum from TargetLowering.h to TargetMa...Evan Cheng2010-05-19
* Implement indirect branches on MSP430Anton Korobeynikov2010-05-01
* Get rid of the EdgeMapping map. Instead, just check for BasicBlockDan Gohman2010-05-01
* Use const qualifiers with TargetLowering. This eliminates severalDan Gohman2010-04-17
* rename llvm::llvm_report_error -> llvm::report_fatal_errorChris Lattner2010-04-07
* IT turns out that during jumpless setcc lowering eq and ne were swapped.Anton Korobeynikov2010-02-21
* Move TLOF implementations to libCodegen to resolve layering violation.Anton Korobeynikov2010-02-15
* Remove an assumption of default arguments. This is in anticipation of aDavid Greene2010-02-15
* Uniformize the names of type predicates: rather than having isFloatTy andDuncan Sands2010-02-15
* Revert 95130.Evan Cheng2010-02-02
* Pass callsite return type to TargetLowering::LowerCall and use that to check ...Evan Cheng2010-02-02
* Eliminate target hook IsEligibleForTailCallOptimization.Evan Cheng2010-01-27
* zext / truncate is free on msp430. Inform codegen about this.Anton Korobeynikov2010-01-15
* Enable bit tests and setcc stuff.Anton Korobeynikov2010-01-15
* Add micro-optimization which allows us to fold imm into cmp. This allows us t...Anton Korobeynikov2010-01-15
* Fix cmp emission on msp430: we definitely should turn stuff likeAnton Korobeynikov2010-01-15
* Remove pseudo-MI in custom inserter.Anton Korobeynikov2010-01-14
* Implement variable-width shifts.Anton Korobeynikov2009-12-12
* Lower setcc branchless, if this is profitable.Anton Korobeynikov2009-12-11
* Some pretty-printingAnton Korobeynikov2009-12-07
* Add lowering of returnaddr and frameaddr intrinsics. Shamelessly stolen from ...Anton Korobeynikov2009-12-07
* Initial codegen support for MSP430 ISRsAnton Korobeynikov2009-12-07
* Add ability to select hw multiplier mode and select appropriate libcalls.Anton Korobeynikov2009-12-07
* Minor optimization: when doing eq/ne comparions and RHS is a constant - swap ...Anton Korobeynikov2009-11-22
* Use 2-byte alignment for functions. 4 bytes are clear overkill here.Anton Korobeynikov2009-11-22
* Add a bool flag to StackObjects telling whether they reference spillDavid Greene2009-11-12
* First try of the post-inc operands handling... Not fully worked, though :(Anton Korobeynikov2009-11-07
* Add some dummy support for post-incremented loadsAnton Korobeynikov2009-11-07
* Add 8 bit libcalls and make use of them for msp430Anton Korobeynikov2009-11-07
* Cosmetic changes, no functionality changesAnton Korobeynikov2009-10-21
* Revert 84315 for now. Re-thinking the patch.Evan Cheng2009-10-17
* Rename getFixedStack to getStackObject. The stack objects represented are notEvan Cheng2009-10-17
* Fix PR4926. When target hook EmitInstrWithCustomInserter() insert new basic b...Evan Cheng2009-09-19
* Enhance EmitInstrWithCustomInserter() so target can specify CFG changes that ...Evan Cheng2009-09-18
* Retype from unsigned to CallingConv::ID accordingly. Approved by Bob Wilson.Sandeep Patel2009-09-02
* Add dummy inline asm handling for 'r' constraint. This fixes PR4778Anton Korobeynikov2009-08-26
* Provide dynamic_stackalloc lowering for MSP430.Anton Korobeynikov2009-08-25
* eliminate uses of cerr()Chris Lattner2009-08-23
* Split EVT into MVT and EVT, the former representing _just_ a primitive type, ...Owen Anderson2009-08-11
* Rename MVT to EVT, in preparation for splitting SimpleValueType out into its ...Owen Anderson2009-08-10
* Major calling convention code refactoring.Dan Gohman2009-08-05
* Rip all of the global variable lowering logic out of TargetAsmInfo. SinceChris Lattner2009-07-28
* Get rid of the Pass+Context magic.Owen Anderson2009-07-22
* Oops, accidentally set a legal operation to expand.Eli Friedman2009-07-17
* Expand misc operations from test/CodeGen/Generic.Eli Friedman2009-07-17
* llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin2009-07-14
* assert(0) -> LLVM_UNREACHABLE.Torok Edwin2009-07-11