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" |
Sanjiv Gupta | 0d7c800 | 2009-05-22 13:58:45 +0000 | [diff] [blame] | 20 | #include "PIC16DebugInfo.h" |
| 21 | #include "llvm/Analysis/DebugInfo.h" |
Sanjiv Gupta | 5ade9e8 | 2009-05-13 15:13:17 +0000 | [diff] [blame] | 22 | #include "PIC16TargetAsmInfo.h" |
Sanjiv Gupta | 1db4916 | 2008-11-19 12:12:49 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/AsmPrinter.h" |
| 24 | #include "llvm/Support/CommandLine.h" |
| 25 | #include "llvm/Target/TargetAsmInfo.h" |
| 26 | #include "llvm/Target/TargetMachine.h" |
Sanjiv Gupta | 064d830 | 2009-05-11 06:01:38 +0000 | [diff] [blame] | 27 | #include <list> |
| 28 | #include <string> |
Sanjiv Gupta | 1db4916 | 2008-11-19 12:12:49 +0000 | [diff] [blame] | 29 | |
| 30 | namespace llvm { |
| 31 | struct VISIBILITY_HIDDEN PIC16AsmPrinter : public AsmPrinter { |
Bill Wendling | 58ed5d2 | 2009-04-29 00:15:41 +0000 | [diff] [blame] | 32 | explicit PIC16AsmPrinter(raw_ostream &O, PIC16TargetMachine &TM, |
Bill Wendling | 5ed22ac | 2009-04-29 23:29:43 +0000 | [diff] [blame] | 33 | const TargetAsmInfo *T, CodeGenOpt::Level OL, |
| 34 | bool V) |
Sanjiv Gupta | 14eba04 | 2009-05-28 18:24:11 +0000 | [diff] [blame] | 35 | : AsmPrinter(O, TM, T, OL, V), DbgInfo(O,T) { |
Sanjiv Gupta | 4ab710d | 2009-04-06 10:54:50 +0000 | [diff] [blame] | 36 | PTLI = TM.getTargetLowering(); |
Sanjiv Gupta | 5ade9e8 | 2009-05-13 15:13:17 +0000 | [diff] [blame] | 37 | PTAI = static_cast<const PIC16TargetAsmInfo *> (T); |
Sanjiv Gupta | 1db4916 | 2008-11-19 12:12:49 +0000 | [diff] [blame] | 38 | } |
| 39 | private : |
| 40 | virtual const char *getPassName() const { |
| 41 | return "PIC16 Assembly Printer"; |
| 42 | } |
| 43 | |
| 44 | bool runOnMachineFunction(MachineFunction &F); |
| 45 | void printOperand(const MachineInstr *MI, int opNum); |
Sanjiv Gupta | 4affaea | 2009-01-13 19:18:47 +0000 | [diff] [blame] | 46 | void printCCOperand(const MachineInstr *MI, int opNum); |
Sanjiv Gupta | 1db4916 | 2008-11-19 12:12:49 +0000 | [diff] [blame] | 47 | bool printInstruction(const MachineInstr *MI); // definition autogenerated. |
| 48 | bool printMachineInstruction(const MachineInstr *MI); |
Sanjiv Gupta | 5ade9e8 | 2009-05-13 15:13:17 +0000 | [diff] [blame] | 49 | void EmitFunctionDecls (Module &M); |
| 50 | void EmitUndefinedVars (Module &M); |
| 51 | void EmitDefinedVars (Module &M); |
Sanjiv Gupta | dbe7911 | 2009-05-12 17:07:27 +0000 | [diff] [blame] | 52 | void EmitIData (Module &M); |
| 53 | void EmitUData (Module &M); |
Sanjiv Gupta | 14eba04 | 2009-05-28 18:24:11 +0000 | [diff] [blame] | 54 | void EmitAutos (std::string FunctName); |
Sanjiv Gupta | 69a97ce | 2009-06-09 15:31:19 +0000 | [diff] [blame] | 55 | void EmitRemainingAutos (); |
Sanjiv Gupta | 1db4916 | 2008-11-19 12:12:49 +0000 | [diff] [blame] | 56 | void EmitRomData (Module &M); |
Sanjiv Gupta | 14eba04 | 2009-05-28 18:24:11 +0000 | [diff] [blame] | 57 | void EmitFunctionFrame(MachineFunction &MF); |
Sanjiv Gupta | 5ade9e8 | 2009-05-13 15:13:17 +0000 | [diff] [blame] | 58 | void printLibcallDecls(void); |
Sanjiv Gupta | 1db4916 | 2008-11-19 12:12:49 +0000 | [diff] [blame] | 59 | protected: |
| 60 | bool doInitialization(Module &M); |
| 61 | bool doFinalization(Module &M); |
Sanjiv Gupta | 1db4916 | 2008-11-19 12:12:49 +0000 | [diff] [blame] | 62 | |
| 63 | private: |
Sanjiv Gupta | 4ab710d | 2009-04-06 10:54:50 +0000 | [diff] [blame] | 64 | PIC16TargetLowering *PTLI; |
Sanjiv Gupta | 0d7c800 | 2009-05-22 13:58:45 +0000 | [diff] [blame] | 65 | PIC16DbgInfo DbgInfo; |
Sanjiv Gupta | 5ade9e8 | 2009-05-13 15:13:17 +0000 | [diff] [blame] | 66 | const PIC16TargetAsmInfo *PTAI; |
| 67 | std::list<const char *> LibcallDecls; // List of extern decls. |
Sanjiv Gupta | 1db4916 | 2008-11-19 12:12:49 +0000 | [diff] [blame] | 68 | }; |
| 69 | } // end of namespace |
| 70 | |
| 71 | #endif |