blob: adcd64d44eaf24536d2a5ed5d7c26b6ae72066a1 [file] [log] [blame]
Sanjiv Gupta1db49162008-11-19 12:12:49 +00001//===-- 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"
Sanjiv Gupta0d7c8002009-05-22 13:58:45 +000020#include "PIC16DebugInfo.h"
21#include "llvm/Analysis/DebugInfo.h"
Sanjiv Gupta5ade9e82009-05-13 15:13:17 +000022#include "PIC16TargetAsmInfo.h"
Sanjiv Gupta1db49162008-11-19 12:12:49 +000023#include "llvm/CodeGen/AsmPrinter.h"
24#include "llvm/Support/CommandLine.h"
25#include "llvm/Target/TargetAsmInfo.h"
26#include "llvm/Target/TargetMachine.h"
Sanjiv Gupta064d8302009-05-11 06:01:38 +000027#include <list>
28#include <string>
Sanjiv Gupta1db49162008-11-19 12:12:49 +000029
30namespace llvm {
31 struct VISIBILITY_HIDDEN PIC16AsmPrinter : public AsmPrinter {
Bill Wendling58ed5d22009-04-29 00:15:41 +000032 explicit PIC16AsmPrinter(raw_ostream &O, PIC16TargetMachine &TM,
Bill Wendling5ed22ac2009-04-29 23:29:43 +000033 const TargetAsmInfo *T, CodeGenOpt::Level OL,
34 bool V)
Bill Wendling58ed5d22009-04-29 00:15:41 +000035 : AsmPrinter(O, TM, T, OL, V) {
Sanjiv Gupta4ab710d2009-04-06 10:54:50 +000036 PTLI = TM.getTargetLowering();
Sanjiv Gupta5ade9e82009-05-13 15:13:17 +000037 PTAI = static_cast<const PIC16TargetAsmInfo *> (T);
Sanjiv Gupta1db49162008-11-19 12:12:49 +000038 }
39 private :
40 virtual const char *getPassName() const {
41 return "PIC16 Assembly Printer";
42 }
43
44 bool runOnMachineFunction(MachineFunction &F);
45 void printOperand(const MachineInstr *MI, int opNum);
Sanjiv Gupta4affaea2009-01-13 19:18:47 +000046 void printCCOperand(const MachineInstr *MI, int opNum);
Sanjiv Gupta1db49162008-11-19 12:12:49 +000047 bool printInstruction(const MachineInstr *MI); // definition autogenerated.
48 bool printMachineInstruction(const MachineInstr *MI);
Sanjiv Gupta5ade9e82009-05-13 15:13:17 +000049 void EmitFunctionDecls (Module &M);
50 void EmitUndefinedVars (Module &M);
51 void EmitDefinedVars (Module &M);
Sanjiv Guptadbe79112009-05-12 17:07:27 +000052 void EmitIData (Module &M);
53 void EmitUData (Module &M);
54 void EmitAutos (Module &M);
Sanjiv Gupta1db49162008-11-19 12:12:49 +000055 void EmitRomData (Module &M);
Sanjiv Gupta1db49162008-11-19 12:12:49 +000056 void emitFunctionData(MachineFunction &MF);
Sanjiv Gupta5ade9e82009-05-13 15:13:17 +000057 void printLibcallDecls(void);
Sanjiv Gupta0d7c8002009-05-22 13:58:45 +000058 void EmitVarDebugInfo (Module &M);
Sanjiv Gupta1db49162008-11-19 12:12:49 +000059
60 protected:
61 bool doInitialization(Module &M);
62 bool doFinalization(Module &M);
Sanjiv Gupta1db49162008-11-19 12:12:49 +000063
64 private:
Sanjiv Gupta4ab710d2009-04-06 10:54:50 +000065 PIC16TargetLowering *PTLI;
Sanjiv Gupta0d7c8002009-05-22 13:58:45 +000066 PIC16DbgInfo DbgInfo;
Sanjiv Gupta5ade9e82009-05-13 15:13:17 +000067 const PIC16TargetAsmInfo *PTAI;
68 std::list<const char *> LibcallDecls; // List of extern decls.
Sanjiv Gupta1db49162008-11-19 12:12:49 +000069 };
70} // end of namespace
71
72#endif