Map stack based frameindices for spills to zero based indices that can be accessed...
[oota-llvm.git] / lib / Target / PIC16 / PIC16AsmPrinter.h
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 {
27   PIC16AsmPrinter(raw_ostream &O, PIC16TargetMachine &TM,
28                     const TargetAsmInfo *T, bool F, bool V)
29       : AsmPrinter(O, TM, T, F, V) {
30       CurBank = "";
31       IsRomData = false;
32       PTLI = TM.getTargetLowering();
33     }
34     private :
35     virtual const char *getPassName() const {
36       return "PIC16 Assembly Printer";
37     }
38
39     bool runOnMachineFunction(MachineFunction &F);
40     void printOperand(const MachineInstr *MI, int opNum);
41     void printCCOperand(const MachineInstr *MI, int opNum);
42     bool printInstruction(const MachineInstr *MI); // definition autogenerated.
43     bool printMachineInstruction(const MachineInstr *MI);
44     void EmitExternsAndGlobals (Module &M);
45     void EmitInitData (Module &M);
46     void EmitUnInitData (Module &M);
47     void EmitRomData (Module &M);
48     void emitFunctionData(MachineFunction &MF);
49
50     protected:
51     bool doInitialization(Module &M);
52     bool doFinalization(Module &M);
53
54     private:
55     PIC16TargetLowering *PTLI;
56     std::string CurBank;
57     bool IsRomData;
58   };
59 } // end of namespace
60
61 #endif