Sanjiv Gupta | 8aae07e | 2009-08-13 16:37:05 +0000 | [diff] [blame] | 1 | //===-- PIC16AsmPrinter.h - PIC16 LLVM assembly writer ----------*- C++ -*-===// |
| 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 "PIC16DebugInfo.h" |
| 21 | #include "PIC16TargetObjectFile.h" |
| 22 | #include "llvm/Analysis/DebugInfo.h" |
| 23 | #include "PIC16TargetAsmInfo.h" |
| 24 | #include "llvm/CodeGen/AsmPrinter.h" |
| 25 | #include "llvm/Support/CommandLine.h" |
| 26 | #include "llvm/Target/TargetAsmInfo.h" |
| 27 | #include "llvm/Target/TargetMachine.h" |
| 28 | #include <list> |
| 29 | #include <string> |
| 30 | |
| 31 | namespace llvm { |
| 32 | class VISIBILITY_HIDDEN PIC16AsmPrinter : public AsmPrinter { |
| 33 | public: |
| 34 | explicit PIC16AsmPrinter(formatted_raw_ostream &O, TargetMachine &TM, |
| 35 | const TargetAsmInfo *T, bool V); |
| 36 | private: |
| 37 | virtual const char *getPassName() const { |
| 38 | return "PIC16 Assembly Printer"; |
| 39 | } |
| 40 | |
| 41 | PIC16TargetObjectFile &getObjFileLowering() const { |
| 42 | return (PIC16TargetObjectFile &)AsmPrinter::getObjFileLowering(); |
| 43 | } |
| 44 | |
| 45 | bool runOnMachineFunction(MachineFunction &F); |
| 46 | void printOperand(const MachineInstr *MI, int opNum); |
| 47 | void printCCOperand(const MachineInstr *MI, int opNum); |
| 48 | void printInstruction(const MachineInstr *MI); // definition autogenerated. |
| 49 | bool printMachineInstruction(const MachineInstr *MI); |
| 50 | void EmitFunctionDecls (Module &M); |
| 51 | void EmitUndefinedVars (Module &M); |
| 52 | void EmitDefinedVars (Module &M); |
| 53 | void EmitIData (Module &M); |
| 54 | void EmitUData (Module &M); |
Chris Lattner | 08e6373 | 2009-08-21 23:08:09 +0000 | [diff] [blame^] | 55 | void EmitAutos (std::string FunctName); |
Sanjiv Gupta | 8aae07e | 2009-08-13 16:37:05 +0000 | [diff] [blame] | 56 | void EmitRemainingAutos (); |
| 57 | void EmitRomData (Module &M); |
| 58 | void EmitFunctionFrame(MachineFunction &MF); |
| 59 | void printLibcallDecls(); |
| 60 | protected: |
| 61 | bool doInitialization(Module &M); |
| 62 | bool doFinalization(Module &M); |
| 63 | |
| 64 | /// PrintGlobalVariable - Emit the specified global variable and its |
| 65 | /// initializer to the output stream. |
| 66 | virtual void PrintGlobalVariable(const GlobalVariable *GV) { |
| 67 | // PIC16 doesn't use normal hooks for this. |
| 68 | } |
| 69 | |
| 70 | private: |
| 71 | PIC16TargetObjectFile *PTOF; |
| 72 | PIC16TargetLowering *PTLI; |
| 73 | PIC16DbgInfo DbgInfo; |
| 74 | const PIC16TargetAsmInfo *PTAI; |
| 75 | std::list<const char *> LibcallDecls; // List of extern decls. |
Sanjiv Gupta | b42cab9 | 2009-08-20 19:28:24 +0000 | [diff] [blame] | 76 | const Function *CurrentFnPtr; // Hold the pointer to current Function |
Sanjiv Gupta | 8aae07e | 2009-08-13 16:37:05 +0000 | [diff] [blame] | 77 | }; |
| 78 | } // end of namespace |
| 79 | |
| 80 | #endif |