blob: 227de7074b1a2563dbc322e0d3127c6d60e98672 [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 Wendling58ed5d22009-04-29 00:15:41 +000027 explicit PIC16AsmPrinter(raw_ostream &O, PIC16TargetMachine &TM,
Bill Wendling5ed22ac2009-04-29 23:29:43 +000028 const TargetAsmInfo *T, CodeGenOpt::Level OL,
29 bool V)
Bill Wendling58ed5d22009-04-29 00:15:41 +000030 : AsmPrinter(O, TM, T, OL, V) {
Sanjiv Gupta2593b332009-03-12 03:20:07 +000031 CurBank = "";
Sanjiv Gupta17c714c2009-04-20 16:59:35 +000032 FunctionLabelBegin = '@';
Sanjiv Gupta1db49162008-11-19 12:12:49 +000033 IsRomData = false;
Sanjiv Gupta4ab710d2009-04-06 10:54:50 +000034 PTLI = TM.getTargetLowering();
Sanjiv Gupta1db49162008-11-19 12:12:49 +000035 }
36 private :
37 virtual const char *getPassName() const {
38 return "PIC16 Assembly Printer";
39 }
40
41 bool runOnMachineFunction(MachineFunction &F);
42 void printOperand(const MachineInstr *MI, int opNum);
Sanjiv Gupta4affaea2009-01-13 19:18:47 +000043 void printCCOperand(const MachineInstr *MI, int opNum);
Sanjiv Gupta1db49162008-11-19 12:12:49 +000044 bool printInstruction(const MachineInstr *MI); // definition autogenerated.
45 bool printMachineInstruction(const MachineInstr *MI);
Sanjiv Guptaecfffdb2008-11-26 10:53:50 +000046 void EmitExternsAndGlobals (Module &M);
Sanjiv Gupta1db49162008-11-19 12:12:49 +000047 void EmitInitData (Module &M);
48 void EmitUnInitData (Module &M);
49 void EmitRomData (Module &M);
Sanjiv Gupta1db49162008-11-19 12:12:49 +000050 void emitFunctionData(MachineFunction &MF);
Sanjiv Gupta1db49162008-11-19 12:12:49 +000051
52 protected:
53 bool doInitialization(Module &M);
54 bool doFinalization(Module &M);
Sanjiv Gupta1db49162008-11-19 12:12:49 +000055
56 private:
Sanjiv Gupta4ab710d2009-04-06 10:54:50 +000057 PIC16TargetLowering *PTLI;
Sanjiv Gupta2593b332009-03-12 03:20:07 +000058 std::string CurBank;
Sanjiv Gupta1db49162008-11-19 12:12:49 +000059 bool IsRomData;
Sanjiv Gupta17c714c2009-04-20 16:59:35 +000060 char FunctionLabelBegin;
Sanjiv Gupta1db49162008-11-19 12:12:49 +000061 };
62} // end of namespace
63
64#endif