Sanjiv Gupta | 1db4916 | 2008-11-19 12:12:49 +0000 | [diff] [blame] | 1 | //===-- PIC16AsmPrinter.h - PIC16 LLVM assembly writer ------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file contains a printer that converts from our internal representation |
| 11 | // of machine-dependent LLVM code to PIC16 assembly language. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #ifndef PIC16ASMPRINTER_H |
| 16 | #define PIC16ASMPRINTER_H |
| 17 | |
| 18 | #include "PIC16.h" |
| 19 | #include "PIC16TargetMachine.h" |
| 20 | #include "llvm/CodeGen/AsmPrinter.h" |
| 21 | #include "llvm/Support/CommandLine.h" |
| 22 | #include "llvm/Target/TargetAsmInfo.h" |
| 23 | #include "llvm/Target/TargetMachine.h" |
Sanjiv Gupta | 064d830 | 2009-05-11 06:01:38 +0000 | [diff] [blame] | 24 | #include <list> |
| 25 | #include <string> |
Sanjiv Gupta | 1db4916 | 2008-11-19 12:12:49 +0000 | [diff] [blame] | 26 | |
| 27 | namespace llvm { |
| 28 | struct VISIBILITY_HIDDEN PIC16AsmPrinter : public AsmPrinter { |
Bill Wendling | 58ed5d2 | 2009-04-29 00:15:41 +0000 | [diff] [blame] | 29 | explicit PIC16AsmPrinter(raw_ostream &O, PIC16TargetMachine &TM, |
Bill Wendling | 5ed22ac | 2009-04-29 23:29:43 +0000 | [diff] [blame] | 30 | const TargetAsmInfo *T, CodeGenOpt::Level OL, |
| 31 | bool V) |
Bill Wendling | 58ed5d2 | 2009-04-29 00:15:41 +0000 | [diff] [blame] | 32 | : AsmPrinter(O, TM, T, OL, V) { |
Sanjiv Gupta | 4ab710d | 2009-04-06 10:54:50 +0000 | [diff] [blame] | 33 | PTLI = TM.getTargetLowering(); |
Sanjiv Gupta | 1db4916 | 2008-11-19 12:12:49 +0000 | [diff] [blame] | 34 | } |
| 35 | private : |
| 36 | virtual const char *getPassName() const { |
| 37 | return "PIC16 Assembly Printer"; |
| 38 | } |
| 39 | |
| 40 | bool runOnMachineFunction(MachineFunction &F); |
| 41 | void printOperand(const MachineInstr *MI, int opNum); |
Sanjiv Gupta | 4affaea | 2009-01-13 19:18:47 +0000 | [diff] [blame] | 42 | void printCCOperand(const MachineInstr *MI, int opNum); |
Sanjiv Gupta | 1db4916 | 2008-11-19 12:12:49 +0000 | [diff] [blame] | 43 | bool printInstruction(const MachineInstr *MI); // definition autogenerated. |
| 44 | bool printMachineInstruction(const MachineInstr *MI); |
Sanjiv Gupta | ecfffdb | 2008-11-26 10:53:50 +0000 | [diff] [blame] | 45 | void EmitExternsAndGlobals (Module &M); |
Sanjiv Gupta | bb4a5c7 | 2009-05-06 08:02:01 +0000 | [diff] [blame] | 46 | void EmitGlobalData (Module &M); |
Sanjiv Gupta | 1db4916 | 2008-11-19 12:12:49 +0000 | [diff] [blame] | 47 | void EmitRomData (Module &M); |
Sanjiv Gupta | 1db4916 | 2008-11-19 12:12:49 +0000 | [diff] [blame] | 48 | void emitFunctionData(MachineFunction &MF); |
Sanjiv Gupta | 064d830 | 2009-05-11 06:01:38 +0000 | [diff] [blame] | 49 | void printDecls(void); |
Sanjiv Gupta | 1db4916 | 2008-11-19 12:12:49 +0000 | [diff] [blame] | 50 | |
| 51 | protected: |
| 52 | bool doInitialization(Module &M); |
| 53 | bool doFinalization(Module &M); |
Sanjiv Gupta | 1db4916 | 2008-11-19 12:12:49 +0000 | [diff] [blame] | 54 | |
| 55 | private: |
Sanjiv Gupta | 4ab710d | 2009-04-06 10:54:50 +0000 | [diff] [blame] | 56 | PIC16TargetLowering *PTLI; |
Sanjiv Gupta | 064d830 | 2009-05-11 06:01:38 +0000 | [diff] [blame] | 57 | std::list<const char *> Decls; // List of extern decls. |
Sanjiv Gupta | 1db4916 | 2008-11-19 12:12:49 +0000 | [diff] [blame] | 58 | }; |
| 59 | } // end of namespace |
| 60 | |
| 61 | #endif |