]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/Target/PIC16/PIC16AsmPrinter.h
Update llvm to r84175.
[FreeBSD/FreeBSD.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 "PIC16DebugInfo.h"
21 #include "llvm/Analysis/DebugInfo.h"
22 #include "PIC16TargetAsmInfo.h"
23 #include "llvm/CodeGen/AsmPrinter.h"
24 #include "llvm/Support/CommandLine.h"
25 #include "llvm/Target/TargetAsmInfo.h"
26 #include "llvm/Target/TargetMachine.h"
27 #include <list>
28 #include <string>
29
30 namespace llvm {
31   struct VISIBILITY_HIDDEN PIC16AsmPrinter : public AsmPrinter {
32     explicit PIC16AsmPrinter(raw_ostream &O, PIC16TargetMachine &TM,
33                              const TargetAsmInfo *T, bool V)
34       : AsmPrinter(O, TM, T, V), DbgInfo(O, T) {
35       PTLI = TM.getTargetLowering();
36       PTAI = static_cast<const PIC16TargetAsmInfo *> (T);
37     }
38     private :
39     virtual const char *getPassName() const {
40       return "PIC16 Assembly Printer";
41     }
42
43     bool runOnMachineFunction(MachineFunction &F);
44     void printOperand(const MachineInstr *MI, int opNum);
45     void printCCOperand(const MachineInstr *MI, int opNum);
46     bool printInstruction(const MachineInstr *MI); // definition autogenerated.
47     bool printMachineInstruction(const MachineInstr *MI);
48     void EmitFunctionDecls (Module &M);
49     void EmitUndefinedVars (Module &M);
50     void EmitDefinedVars (Module &M);
51     void EmitIData (Module &M);
52     void EmitUData (Module &M);
53     void EmitAutos (std::string FunctName);
54     void EmitRemainingAutos ();
55     void EmitRomData (Module &M);
56     void EmitFunctionFrame(MachineFunction &MF);
57     void printLibcallDecls(void);
58     protected:
59     bool doInitialization(Module &M);
60     bool doFinalization(Module &M);
61
62     private:
63     PIC16TargetLowering *PTLI;
64     PIC16DbgInfo DbgInfo;
65     const PIC16TargetAsmInfo *PTAI;
66     std::list<const char *> LibcallDecls; // List of extern decls.
67   };
68 } // end of namespace
69
70 #endif