blob: d9f81bd991d0e416e0fb3fa27198897ab39b4b7a [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"
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
25namespace llvm {
26 struct VISIBILITY_HIDDEN PIC16AsmPrinter : public AsmPrinter {
Bill Wendlingf4d0c732009-04-28 01:04:53 +000027 PIC16AsmPrinter(raw_ostream &O, PIC16TargetMachine &TM,
28 const TargetAsmInfo *T, bool F, bool V)
29 : AsmPrinter(O, TM, T, F, V) {
Sanjiv Gupta2593b332009-03-12 03:20:07 +000030 CurBank = "";
Sanjiv Gupta17c714c2009-04-20 16:59:35 +000031 FunctionLabelBegin = '@';
Sanjiv Gupta1db49162008-11-19 12:12:49 +000032 IsRomData = false;
Sanjiv Gupta4ab710d2009-04-06 10:54:50 +000033 PTLI = TM.getTargetLowering();
Sanjiv Gupta1db49162008-11-19 12:12:49 +000034 }
35 private :
36 virtual const char *getPassName() const {
37 return "PIC16 Assembly Printer";
38 }
39
40 bool runOnMachineFunction(MachineFunction &F);
41 void printOperand(const MachineInstr *MI, int opNum);
Sanjiv Gupta4affaea2009-01-13 19:18:47 +000042 void printCCOperand(const MachineInstr *MI, int opNum);
Sanjiv Gupta1db49162008-11-19 12:12:49 +000043 bool printInstruction(const MachineInstr *MI); // definition autogenerated.
44 bool printMachineInstruction(const MachineInstr *MI);
Sanjiv Guptaecfffdb2008-11-26 10:53:50 +000045 void EmitExternsAndGlobals (Module &M);
Sanjiv Gupta1db49162008-11-19 12:12:49 +000046 void EmitInitData (Module &M);
47 void EmitUnInitData (Module &M);
48 void EmitRomData (Module &M);
Sanjiv Gupta1db49162008-11-19 12:12:49 +000049 void emitFunctionData(MachineFunction &MF);
Sanjiv Gupta1db49162008-11-19 12:12:49 +000050
51 protected:
52 bool doInitialization(Module &M);
53 bool doFinalization(Module &M);
Sanjiv Gupta1db49162008-11-19 12:12:49 +000054
55 private:
Sanjiv Gupta4ab710d2009-04-06 10:54:50 +000056 PIC16TargetLowering *PTLI;
Sanjiv Gupta2593b332009-03-12 03:20:07 +000057 std::string CurBank;
Sanjiv Gupta1db49162008-11-19 12:12:49 +000058 bool IsRomData;
Sanjiv Gupta17c714c2009-04-20 16:59:35 +000059 char FunctionLabelBegin;
Sanjiv Gupta1db49162008-11-19 12:12:49 +000060 };
61} // end of namespace
62
63#endif