blob: 5b33b51a386627a4ab27c7806a8d4ea82b19cd8d [file] [log] [blame]
Benjamin Kramer5814fef2009-10-15 19:46:34 +00001//===- PIC16Section.h - PIC16-specific section representation -*- C++ -*-===//
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 declares the PIC16Section class.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_PIC16SECTION_H
15#define LLVM_PIC16SECTION_H
16
17#include "llvm/MC/MCSection.h"
18#include "llvm/GlobalVariable.h"
19#include <vector>
20
21namespace llvm {
22 /// PIC16Section - Represents a physical section in PIC16 COFF.
23 /// Contains data objects.
24 ///
25 class PIC16Section : public MCSection {
26 /// PIC16 Sections does not really use the SectionKind class to
27 /// to distinguish between various types of sections. PIC16 maintain
28 /// its own Section Type info. See the PIC16SectionType enum in PIC16.h
29 /// for various section types.
30 PIC16SectionType T;
31
32 /// Name of the section to uniquely identify it.
Benjamin Kramer91b1d8f2010-03-30 13:28:42 +000033 StringRef Name;
Benjamin Kramer5814fef2009-10-15 19:46:34 +000034
35 /// User can specify an address at which a section should be placed.
36 /// Negative value here means user hasn't specified any.
Benjamin Kramer91b1d8f2010-03-30 13:28:42 +000037 StringRef Address;
Benjamin Kramer5814fef2009-10-15 19:46:34 +000038
39 /// Overlay information - Sections with same color can be overlaid on
40 /// one another.
41 int Color;
42
43 /// Total size of all data objects contained here.
44 unsigned Size;
45
Benjamin Kramer91b1d8f2010-03-30 13:28:42 +000046 PIC16Section(StringRef name, SectionKind K, StringRef addr, int color)
Daniel Dunbar9a744e32010-05-17 21:54:26 +000047 : MCSection(SV_PIC16, K), Name(name), Address(addr),
48 Color(color), Size(0) {
Benjamin Kramer5814fef2009-10-15 19:46:34 +000049 }
50
51 public:
52 /// Return the name of the section.
Benjamin Kramer91b1d8f2010-03-30 13:28:42 +000053 StringRef getName() const { return Name; }
Benjamin Kramer5814fef2009-10-15 19:46:34 +000054
55 /// Return the Address of the section.
Benjamin Kramer91b1d8f2010-03-30 13:28:42 +000056 StringRef getAddress() const { return Address; }
Benjamin Kramer5814fef2009-10-15 19:46:34 +000057
58 /// Return the Color of the section.
59 int getColor() const { return Color; }
Sanjiv Gupta4e4bba52009-10-21 10:42:44 +000060 void setColor(int color) { Color = color; }
Benjamin Kramer5814fef2009-10-15 19:46:34 +000061
62 /// Return the size of the section.
63 unsigned getSize() const { return Size; }
64 void setSize(unsigned size) { Size = size; }
65
66 /// Conatined data objects.
Benjamin Kramer32e65182010-03-30 14:34:13 +000067 // FIXME: This vector is leaked because sections are allocated with a
68 // BumpPtrAllocator.
Benjamin Kramer5814fef2009-10-15 19:46:34 +000069 std::vector<const GlobalVariable *>Items;
70
71 /// Check section type.
72 bool isUDATA_Type() const { return T == UDATA; }
73 bool isIDATA_Type() const { return T == IDATA; }
74 bool isROMDATA_Type() const { return T == ROMDATA; }
75 bool isUDATA_OVR_Type() const { return T == UDATA_OVR; }
76 bool isUDATA_SHR_Type() const { return T == UDATA_SHR; }
77 bool isCODE_Type() const { return T == CODE; }
78
79 PIC16SectionType getType() const { return T; }
80
81 /// This would be the only way to create a section.
Benjamin Kramer91b1d8f2010-03-30 13:28:42 +000082 static PIC16Section *Create(StringRef Name, PIC16SectionType Ty,
83 StringRef Address, int Color,
Benjamin Kramer5814fef2009-10-15 19:46:34 +000084 MCContext &Ctx);
85
86 /// Override this as PIC16 has its own way of printing switching
87 /// to a section.
88 virtual void PrintSwitchToSection(const MCAsmInfo &MAI,
89 raw_ostream &OS) const;
Daniel Dunbar9a744e32010-05-17 21:54:26 +000090
91 static bool classof(const MCSection *S) {
92 return S->getVariant() == SV_PIC16;
93 }
94 static bool classof(const PIC16Section *) { return true; }
Benjamin Kramer5814fef2009-10-15 19:46:34 +000095 };
96
97} // end namespace llvm
98
99#endif