change a ton of code to not implicitly use the "O" raw_ostream
[oota-llvm.git] / lib / Target / PIC16 / AsmPrinter / PIC16AsmPrinter.h
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 "PIC16MCAsmInfo.h"
22 #include "PIC16TargetObjectFile.h"
23 #include "llvm/Analysis/DebugInfo.h"
24 #include "llvm/CodeGen/AsmPrinter.h"
25 #include "llvm/Support/CommandLine.h"
26 #include "llvm/Target/TargetMachine.h"
27 #include <list>
28 #include <set>
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                              MCStreamer &Streamer);
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, raw_ostream &O);
47     void printCCOperand(const MachineInstr *MI, int opNum, raw_ostream &O);
48     void printInstruction(const MachineInstr *MI, raw_ostream &O);
49     static const char *getRegisterName(unsigned RegNo);
50
51     void EmitInstruction(const MachineInstr *MI);
52     void EmitFunctionDecls (Module &M);
53     void EmitUndefinedVars (Module &M);
54     void EmitDefinedVars (Module &M);
55     void EmitIData (Module &M);
56     void EmitUData (Module &M);
57     void EmitAllAutos (Module &M);
58     void EmitRomData (Module &M);
59     void EmitSharedUdata(Module &M);
60     void EmitUserSections (Module &M);
61     void EmitFunctionFrame(MachineFunction &MF);
62     void printLibcallDecls();
63     void EmitUninitializedDataSection(const PIC16Section *S);
64     void EmitInitializedDataSection(const PIC16Section *S);
65     void EmitSingleSection(const PIC16Section *S);
66     void EmitSectionList(Module &M, 
67                          const std::vector< PIC16Section *> &SList);
68     void ColorAutoSection(const Function *F);
69   protected:
70     bool doInitialization(Module &M);
71     bool doFinalization(Module &M);
72
73     /// EmitGlobalVariable - Emit the specified global variable and its
74     /// initializer to the output stream.
75     virtual void EmitGlobalVariable(const GlobalVariable *GV) {
76       // PIC16 doesn't use normal hooks for this.
77     }
78     
79   private:
80     PIC16TargetObjectFile *PTOF;
81     PIC16TargetLowering *PTLI;
82     PIC16DbgInfo DbgInfo;
83     const PIC16MCAsmInfo *PMAI;
84     std::set<std::string> LibcallDecls; // Sorted & uniqued set of extern decls.
85     std::vector<const GlobalVariable *> ExternalVarDecls;
86     std::vector<const GlobalVariable *> ExternalVarDefs;
87   };
88 } // end of namespace
89
90 #endif