blob: 32a2ebdca91333d95d14b7f5454ba68e8bd22d19 [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 Gupta5ade9e82009-05-13 15:13:17 +000020#include "PIC16TargetAsmInfo.h"
Sanjiv Gupta1db49162008-11-19 12:12:49 +000021#include "llvm/CodeGen/AsmPrinter.h"
22#include "llvm/Support/CommandLine.h"
23#include "llvm/Target/TargetAsmInfo.h"
24#include "llvm/Target/TargetMachine.h"
Sanjiv Gupta064d8302009-05-11 06:01:38 +000025#include <list>
26#include <string>
Sanjiv Gupta1db49162008-11-19 12:12:49 +000027
28namespace llvm {
29 struct VISIBILITY_HIDDEN PIC16AsmPrinter : public AsmPrinter {
Bill Wendling58ed5d22009-04-29 00:15:41 +000030 explicit PIC16AsmPrinter(raw_ostream &O, PIC16TargetMachine &TM,
Bill Wendling5ed22ac2009-04-29 23:29:43 +000031 const TargetAsmInfo *T, CodeGenOpt::Level OL,
32 bool V)
Bill Wendling58ed5d22009-04-29 00:15:41 +000033 : AsmPrinter(O, TM, T, OL, V) {
Sanjiv Gupta4ab710d2009-04-06 10:54:50 +000034 PTLI = TM.getTargetLowering();
Sanjiv Gupta5ade9e82009-05-13 15:13:17 +000035 PTAI = static_cast<const PIC16TargetAsmInfo *> (T);
Sanjiv Gupta1db49162008-11-19 12:12:49 +000036 }
37 private :
38 virtual const char *getPassName() const {
39 return "PIC16 Assembly Printer";
40 }
41
42 bool runOnMachineFunction(MachineFunction &F);
43 void printOperand(const MachineInstr *MI, int opNum);
Sanjiv Gupta4affaea2009-01-13 19:18:47 +000044 void printCCOperand(const MachineInstr *MI, int opNum);
Sanjiv Gupta1db49162008-11-19 12:12:49 +000045 bool printInstruction(const MachineInstr *MI); // definition autogenerated.
46 bool printMachineInstruction(const MachineInstr *MI);
Sanjiv Gupta5ade9e82009-05-13 15:13:17 +000047 void EmitFunctionDecls (Module &M);
48 void EmitUndefinedVars (Module &M);
49 void EmitDefinedVars (Module &M);
Sanjiv Guptadbe79112009-05-12 17:07:27 +000050 void EmitIData (Module &M);
51 void EmitUData (Module &M);
52 void EmitAutos (Module &M);
Sanjiv Gupta1db49162008-11-19 12:12:49 +000053 void EmitRomData (Module &M);
Sanjiv Gupta1db49162008-11-19 12:12:49 +000054 void emitFunctionData(MachineFunction &MF);
Sanjiv Gupta5ade9e82009-05-13 15:13:17 +000055 void printLibcallDecls(void);
Sanjiv Gupta1db49162008-11-19 12:12:49 +000056
57 protected:
58 bool doInitialization(Module &M);
59 bool doFinalization(Module &M);
Sanjiv Gupta1db49162008-11-19 12:12:49 +000060
61 private:
Sanjiv Gupta4ab710d2009-04-06 10:54:50 +000062 PIC16TargetLowering *PTLI;
Sanjiv Gupta5ade9e82009-05-13 15:13:17 +000063 const PIC16TargetAsmInfo *PTAI;
64 std::list<const char *> LibcallDecls; // List of extern decls.
Sanjiv Gupta1db49162008-11-19 12:12:49 +000065 };
66} // end of namespace
67
68#endif