blob: b0a2baf1fc3470f806c18c361f5c83d821c5b384 [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 {
27 PIC16AsmPrinter(raw_ostream &O, TargetMachine &TM, const TargetAsmInfo *T)
28 : AsmPrinter(O, TM, T) {
29 CurrentBankselLabelInBasicBlock = "";
30 IsRomData = false;
31 }
32 private :
33 virtual const char *getPassName() const {
34 return "PIC16 Assembly Printer";
35 }
36
37 bool runOnMachineFunction(MachineFunction &F);
38 void printOperand(const MachineInstr *MI, int opNum);
39 void SwitchToUDataSection(const char *NewSection,
40 const GlobalValue *GV = NULL);
41 void SwitchToRomDataSection(const char *NewSection,
42 const GlobalValue *GV = NULL);
43 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);
49 virtual void EmitConstantValueOnly(const Constant *CV);
50 void emitFunctionData(MachineFunction &MF);
51 void emitFunctionTempData(MachineFunction &MF);
52
53 protected:
54 bool doInitialization(Module &M);
55 bool doFinalization(Module &M);
56
57 private:
58 std::string CurrentBankselLabelInBasicBlock;
59 bool IsRomData;
60 };
61} // end of namespace
62
63#endif