aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/MSP430/MSP430AsmPrinter.cpp
Commit message (Expand)AuthorAgeFilesLines
* Remove unused private fields found by clang's new -Wunused-private-field.Benjamin Kramer2012-06-061-1/+1
* Convert assert(0) to llvm_unreachableCraig Topper2012-02-071-1/+1
* Move TargetRegistry and TargetSelect from Target to Support where they belong.Evan Cheng2011-08-241-3/+1
* Separate MCInstPrinter registration from AsmPrinter registration.Evan Cheng2011-07-251-10/+0
* Rename createAsmInfo to createMCAsmInfo and move registration code to MCTarge...Evan Cheng2011-07-141-1/+1
* createMCInstPrinter doesn't need TargetMachine anymore.Evan Cheng2011-07-061-2/+1
* We need to pass the TargetMachine object to the InstPrinter if we are printingBill Wendling2011-03-211-1/+2
* Re-apply r115363 and r115366 now that r115525 has removed the un-needed headerJim Grosbach2010-10-051-0/+179
* Continue reverting r115363.Nick Lewycky2010-10-021-0/+0
* Revert patches r115363 r115367 r115391 due to build breakage:Nick Lewycky2010-10-021-179/+0
* Now that the asmprinter itself isn't in the subdir, rename 'AsmPrinter' toJim Grosbach2010-10-011-1/+1
* Move the asmprinter and MC lowering out of the AsmPrinter (soon to beJim Grosbach2010-10-011-0/+179
* Give MSP430 a separate asmprinter libAnton Korobeynikov2009-08-141-250/+0
* Change TargetAsmInfo to be constructed via TargetRegistry from a Target+TripleChris Lattner2009-08-121-1/+2
* make printInstruction return void since its result is omitted. Make the Chris Lattner2009-08-081-1/+1
* don't check the result of printInstruction anymore.Chris Lattner2009-08-081-4/+1
* Don't flush the raw_ostream between each MachineFunction. These flushDan Gohman2009-08-051-2/+0
* pass the mangler down into the various SectionForGlobal methods.Chris Lattner2009-07-291-1/+1
* Rip all of the global variable lowering logic out of TargetAsmInfo. SinceChris Lattner2009-07-281-1/+2
* Add new helpers for registering targets.Daniel Dunbar2009-07-251-12/+8
* make AsmPrinter::doFinalization iterate over the global variablesChris Lattner2009-07-211-0/+4
* fix Sparc, SystemZ, and MSP430 to not override AsmPrinter::doInitialization.Chris Lattner2009-07-211-7/+0
* Rename LessPrivateGlobalPrefix -> LinkerPrivateGlobalPrefix to match theChris Lattner2009-07-211-1/+1
* remove an unneeded override.Chris Lattner2009-07-211-5/+0
* Pass in the unfortunately named "LessPrivatePrefix" for theBill Wendling2009-07-201-1/+2
* Add plumbing for the `linker_private' linkage type. This type is meant forBill Wendling2009-07-201-0/+1
* Register AsmPrinter for XCore, MSP430, and PIC16 targets.Daniel Dunbar2009-07-151-2/+2
* Have asm printers use formatted_raw_ostream directly to avoid aDavid Greene2009-07-141-3/+3
* Reapply my previous asmprinter changes now with more testing and two Chris Lattner2009-07-141-1/+1
* llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin2009-07-141-5/+5
* Revert r75615, which depended on 75610.Daniel Dunbar2009-07-141-1/+1
* Rename getValueName -> getMangledName.Chris Lattner2009-07-141-1/+1
* assert(0) -> LLVM_UNREACHABLE.Torok Edwin2009-07-111-5/+6
* Remove unused AsmPrinter OptLevel argument, and propogate.Daniel Dunbar2009-07-011-5/+3
* Add an "alignment" field to the MachineFunction object. It makes more sense toBill Wendling2009-06-301-4/+1
* Update due to mainline API changeAnton Korobeynikov2009-05-031-4/+6
* Some eye-candyAnton Korobeynikov2009-05-031-8/+7
* Print function header / footerAnton Korobeynikov2009-05-031-0/+45
* Fix printing: je => jeqAnton Korobeynikov2009-05-031-1/+1
* Properly handle ExternalSymbol'sAnton Korobeynikov2009-05-031-0/+9
* Lower select with custom inserted and make condjumps genericAnton Korobeynikov2009-05-031-0/+28
* Reverse order of memory argumentsAnton Korobeynikov2009-05-031-6/+6
* Correct asmprinting of memory operandsAnton Korobeynikov2009-05-031-12/+18
* Some early full call lowering draft for direct callsAnton Korobeynikov2009-05-031-7/+21
* Basic support for mem=>reg movesAnton Korobeynikov2009-05-031-3/+27
* Add code enough for emission of reg-reg and reg-imm moves. This allows us to ...Anton Korobeynikov2009-05-031-1/+22
* Add function body printing routineAnton Korobeynikov2009-05-031-1/+21
* Dummy MSP430 backendAnton Korobeynikov2009-05-031-0/+99