Sanjiv Gupta | 928df6c | 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" |
| 24 | |
| 25 | namespace llvm { |
| 26 | struct VISIBILITY_HIDDEN PIC16AsmPrinter : public AsmPrinter { |
Bill Wendling | 57f0db8 | 2009-02-24 08:30:20 +0000 | [diff] [blame] | 27 | PIC16AsmPrinter(raw_ostream &O, TargetMachine &TM, |
| 28 | const TargetAsmInfo *T, bool F) |
| 29 | : AsmPrinter(O, TM, T, F) { |
Sanjiv Gupta | 928df6c | 2008-11-19 12:12:49 +0000 | [diff] [blame] | 30 | CurrentBankselLabelInBasicBlock = ""; |
| 31 | IsRomData = false; |
| 32 | } |
| 33 | private : |
| 34 | virtual const char *getPassName() const { |
| 35 | return "PIC16 Assembly Printer"; |
| 36 | } |
| 37 | |
| 38 | bool runOnMachineFunction(MachineFunction &F); |
| 39 | void printOperand(const MachineInstr *MI, int opNum); |
Sanjiv Gupta | 1b04694 | 2009-01-13 19:18:47 +0000 | [diff] [blame] | 40 | void printCCOperand(const MachineInstr *MI, int opNum); |
Sanjiv Gupta | 928df6c | 2008-11-19 12:12:49 +0000 | [diff] [blame] | 41 | bool printInstruction(const MachineInstr *MI); // definition autogenerated. |
| 42 | bool printMachineInstruction(const MachineInstr *MI); |
Sanjiv Gupta | 8f78fa8 | 2008-11-26 10:53:50 +0000 | [diff] [blame] | 43 | void EmitExternsAndGlobals (Module &M); |
Sanjiv Gupta | 928df6c | 2008-11-19 12:12:49 +0000 | [diff] [blame] | 44 | void EmitInitData (Module &M); |
| 45 | void EmitUnInitData (Module &M); |
| 46 | void EmitRomData (Module &M); |
Sanjiv Gupta | 928df6c | 2008-11-19 12:12:49 +0000 | [diff] [blame] | 47 | void emitFunctionData(MachineFunction &MF); |
Sanjiv Gupta | 1b04694 | 2009-01-13 19:18:47 +0000 | [diff] [blame] | 48 | void emitFunctionTempData(MachineFunction &MF, unsigned &FrameSize); |
Sanjiv Gupta | 928df6c | 2008-11-19 12:12:49 +0000 | [diff] [blame] | 49 | |
| 50 | protected: |
| 51 | bool doInitialization(Module &M); |
| 52 | bool doFinalization(Module &M); |
Sanjiv Gupta | 1b04694 | 2009-01-13 19:18:47 +0000 | [diff] [blame] | 53 | bool inSameBank(char *s1, char *s2); |
Sanjiv Gupta | 928df6c | 2008-11-19 12:12:49 +0000 | [diff] [blame] | 54 | |
| 55 | private: |
| 56 | std::string CurrentBankselLabelInBasicBlock; |
| 57 | bool IsRomData; |
| 58 | }; |
| 59 | } // end of namespace |
| 60 | |
| 61 | #endif |