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" |
Chris Lattner | 621c44d | 2009-08-22 20:48:53 +0000 | [diff] [blame] | 21 | #include "PIC16MCAsmInfo.h" |
Sanjiv Gupta | 8aae07e | 2009-08-13 16:37:05 +0000 | [diff] [blame] | 22 | #include "PIC16TargetObjectFile.h" |
| 23 | #include "llvm/Analysis/DebugInfo.h" |
Sanjiv Gupta | 8aae07e | 2009-08-13 16:37:05 +0000 | [diff] [blame] | 24 | #include "llvm/CodeGen/AsmPrinter.h" |
| 25 | #include "llvm/Support/CommandLine.h" |
Sanjiv Gupta | 8aae07e | 2009-08-13 16:37:05 +0000 | [diff] [blame] | 26 | #include "llvm/Target/TargetMachine.h" |
| 27 | #include <list> |
Benjamin Kramer | 8439904 | 2010-03-20 17:41:18 +0000 | [diff] [blame] | 28 | #include <set> |
Sanjiv Gupta | 8aae07e | 2009-08-13 16:37:05 +0000 | [diff] [blame] | 29 | #include <string> |
| 30 | |
| 31 | namespace llvm { |
Duncan Sands | 8717782 | 2010-05-11 20:16:09 +0000 | [diff] [blame] | 32 | class LLVM_LIBRARY_VISIBILITY PIC16AsmPrinter : public AsmPrinter { |
Sanjiv Gupta | 8aae07e | 2009-08-13 16:37:05 +0000 | [diff] [blame] | 33 | public: |
Chris Lattner | 3eac1ed | 2010-04-04 08:18:47 +0000 | [diff] [blame] | 34 | explicit PIC16AsmPrinter(TargetMachine &TM, MCStreamer &Streamer); |
Sanjiv Gupta | 8aae07e | 2009-08-13 16:37:05 +0000 | [diff] [blame] | 35 | private: |
| 36 | virtual const char *getPassName() const { |
| 37 | return "PIC16 Assembly Printer"; |
| 38 | } |
| 39 | |
Dan Gohman | 443093d | 2010-04-17 16:44:48 +0000 | [diff] [blame] | 40 | const PIC16TargetObjectFile &getObjFileLowering() const { |
| 41 | return (const PIC16TargetObjectFile &)AsmPrinter::getObjFileLowering(); |
Sanjiv Gupta | 8aae07e | 2009-08-13 16:37:05 +0000 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | bool runOnMachineFunction(MachineFunction &F); |
Chris Lattner | 4e97253 | 2010-04-04 04:47:45 +0000 | [diff] [blame] | 45 | void printOperand(const MachineInstr *MI, int opNum, raw_ostream &O); |
| 46 | void printCCOperand(const MachineInstr *MI, int opNum, raw_ostream &O); |
| 47 | void printInstruction(const MachineInstr *MI, raw_ostream &O); |
Chris Lattner | 213703c | 2009-09-13 20:19:22 +0000 | [diff] [blame] | 48 | static const char *getRegisterName(unsigned RegNo); |
Chris Lattner | 9222169 | 2009-09-13 20:08:00 +0000 | [diff] [blame] | 49 | |
Chris Lattner | cec64dd | 2010-02-03 01:41:03 +0000 | [diff] [blame] | 50 | void EmitInstruction(const MachineInstr *MI); |
Sanjiv Gupta | 8aae07e | 2009-08-13 16:37:05 +0000 | [diff] [blame] | 51 | void EmitFunctionDecls (Module &M); |
| 52 | void EmitUndefinedVars (Module &M); |
| 53 | void EmitDefinedVars (Module &M); |
| 54 | void EmitIData (Module &M); |
| 55 | void EmitUData (Module &M); |
Sanjiv Gupta | ac2620e | 2009-10-15 19:26:25 +0000 | [diff] [blame] | 56 | void EmitAllAutos (Module &M); |
Sanjiv Gupta | 8aae07e | 2009-08-13 16:37:05 +0000 | [diff] [blame] | 57 | void EmitRomData (Module &M); |
Sanjiv Gupta | 27e801c | 2009-10-25 08:14:11 +0000 | [diff] [blame] | 58 | void EmitSharedUdata(Module &M); |
Sanjiv Gupta | ac2620e | 2009-10-15 19:26:25 +0000 | [diff] [blame] | 59 | void EmitUserSections (Module &M); |
Sanjiv Gupta | 8aae07e | 2009-08-13 16:37:05 +0000 | [diff] [blame] | 60 | void EmitFunctionFrame(MachineFunction &MF); |
| 61 | void printLibcallDecls(); |
Sanjiv Gupta | ac2620e | 2009-10-15 19:26:25 +0000 | [diff] [blame] | 62 | void EmitUninitializedDataSection(const PIC16Section *S); |
| 63 | void EmitInitializedDataSection(const PIC16Section *S); |
Sanjiv Gupta | 018db66 | 2009-10-16 08:58:34 +0000 | [diff] [blame] | 64 | void EmitSingleSection(const PIC16Section *S); |
| 65 | void EmitSectionList(Module &M, |
| 66 | const std::vector< PIC16Section *> &SList); |
Sanjiv Gupta | 00e8f5a | 2009-10-21 10:42:44 +0000 | [diff] [blame] | 67 | void ColorAutoSection(const Function *F); |
Sanjiv Gupta | 8aae07e | 2009-08-13 16:37:05 +0000 | [diff] [blame] | 68 | protected: |
| 69 | bool doInitialization(Module &M); |
| 70 | bool doFinalization(Module &M); |
| 71 | |
Chris Lattner | 410c947 | 2010-01-19 05:38:33 +0000 | [diff] [blame] | 72 | /// EmitGlobalVariable - Emit the specified global variable and its |
Sanjiv Gupta | 8aae07e | 2009-08-13 16:37:05 +0000 | [diff] [blame] | 73 | /// initializer to the output stream. |
Chris Lattner | 410c947 | 2010-01-19 05:38:33 +0000 | [diff] [blame] | 74 | virtual void EmitGlobalVariable(const GlobalVariable *GV) { |
Sanjiv Gupta | 8aae07e | 2009-08-13 16:37:05 +0000 | [diff] [blame] | 75 | // PIC16 doesn't use normal hooks for this. |
| 76 | } |
| 77 | |
| 78 | private: |
Dan Gohman | 443093d | 2010-04-17 16:44:48 +0000 | [diff] [blame] | 79 | const PIC16TargetObjectFile *PTOF; |
Sanjiv Gupta | 8aae07e | 2009-08-13 16:37:05 +0000 | [diff] [blame] | 80 | PIC16DbgInfo DbgInfo; |
Chris Lattner | a5ef4d3 | 2009-08-22 21:43:10 +0000 | [diff] [blame] | 81 | const PIC16MCAsmInfo *PMAI; |
Benjamin Kramer | 8439904 | 2010-03-20 17:41:18 +0000 | [diff] [blame] | 82 | std::set<std::string> LibcallDecls; // Sorted & uniqued set of extern decls. |
Sanjiv Gupta | ac2620e | 2009-10-15 19:26:25 +0000 | [diff] [blame] | 83 | std::vector<const GlobalVariable *> ExternalVarDecls; |
| 84 | std::vector<const GlobalVariable *> ExternalVarDefs; |
Sanjiv Gupta | 8aae07e | 2009-08-13 16:37:05 +0000 | [diff] [blame] | 85 | }; |
| 86 | } // end of namespace |
| 87 | |
| 88 | #endif |