blob: 352be99d71c2f2a7ee44728f45715c1fbc484237 [file] [log] [blame]
Chris Lattnerad27d772009-08-15 06:14:07 +00001//===- MCSectionPIC16.h - PIC16-specific section representation -*- C++ -*-===//
Chris Lattnerf7427e52009-08-08 21:37:01 +00002//
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//
Chris Lattnerad27d772009-08-15 06:14:07 +000010// This file declares the MCSectionPIC16 class.
Chris Lattnerf7427e52009-08-08 21:37:01 +000011//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_PIC16SECTION_H
15#define LLVM_PIC16SECTION_H
16
17#include "llvm/MC/MCSection.h"
Chris Lattnerf7427e52009-08-08 21:37:01 +000018
19namespace llvm {
20
Sanjiv Guptab9ef7642009-08-25 19:39:05 +000021 /// MCSectionPIC16 - Represents a physical section in PIC16 COFF.
22 /// Contains data objects.
23 ///
Chris Lattnerf7427e52009-08-08 21:37:01 +000024 class MCSectionPIC16 : public MCSection {
Sanjiv Guptab9ef7642009-08-25 19:39:05 +000025 /// Name of the section to uniquely identify it.
Chris Lattner93b6db32009-08-08 23:39:42 +000026 std::string Name;
Sanjiv Guptab9ef7642009-08-25 19:39:05 +000027
28 /// User can specify an address at which a section should be placed.
29 /// Negative value here means user hasn't specified any.
30 int Address;
31
Sanjiv Guptab9ef7642009-08-25 19:39:05 +000032 /// Overlay information - Sections with same color can be overlaid on
33 /// one another.
Sanjiv Gupta72f9ab02009-09-01 10:47:31 +000034 int Color;
Sanjiv Guptab9ef7642009-08-25 19:39:05 +000035
36 /// Conatined data objects.
37 std::vector<const GlobalVariable *>Items;
38
39 /// Total size of all data objects contained here.
40 unsigned Size;
Chris Lattner93b6db32009-08-08 23:39:42 +000041
Sanjiv Gupta72f9ab02009-09-01 10:47:31 +000042 MCSectionPIC16(const StringRef &name, SectionKind K, int addr, int color)
43 : MCSection(K), Name(name), Address(addr), Color(color) {
Chris Lattner873bc4c2009-08-13 00:26:52 +000044 }
45
Chris Lattnerf7427e52009-08-08 21:37:01 +000046 public:
Sanjiv Guptab9ef7642009-08-25 19:39:05 +000047 /// Return the name of the section.
Chris Lattner93b6db32009-08-08 23:39:42 +000048 const std::string &getName() const { return Name; }
Sanjiv Guptab9ef7642009-08-25 19:39:05 +000049
50 /// Return the Address of the section.
51 int getAddress() const { return Address; }
52
Sanjiv Gupta72f9ab02009-09-01 10:47:31 +000053 /// Return the Color of the section.
54 int getColor() const { return Color; }
55
Sanjiv Guptab9ef7642009-08-25 19:39:05 +000056 /// PIC16 Terminology for section kinds is as below.
57 /// UDATA - BSS
58 /// IDATA - initialized data (equiv to Metadata)
59 /// ROMDATA - ReadOnly.
60 /// UDATA_OVR - Sections that can be overlaid. Section of such type is
61 /// used to contain function autos an frame. We can think of
62 /// it as equiv to llvm ThreadBSS)
63 /// So, let's have some convenience functions to Map PIC16 Section types
64 /// to SectionKind just for the sake of better readability.
65 static SectionKind UDATA_Kind() { return SectionKind::getBSS(); }
66 static SectionKind IDATA_Kind() { return SectionKind::getMetadata(); }
67 static SectionKind ROMDATA_Kind() { return SectionKind::getReadOnly(); }
68 static SectionKind UDATA_OVR_Kind() { return SectionKind::getThreadBSS(); }
69
70 // If we could just do getKind() == UDATA_Kind() ?
71 bool isUDATA_Kind() { return getKind().isBSS(); }
72 bool isIDATA_Kind() { return getKind().isMetadata(); }
73 bool isROMDATA_Kind() { return getKind().isMetadata(); }
74 bool isUDATA_OVR_Kind() { return getKind().isThreadBSS(); }
75
76 /// This would be the only way to create a section.
77 static MCSectionPIC16 *Create(const StringRef &Name, SectionKind K,
Sanjiv Gupta72f9ab02009-09-01 10:47:31 +000078 int Address, int Color, MCContext &Ctx);
Chris Lattnerec3579f2009-08-21 23:08:09 +000079
Sanjiv Guptab9ef7642009-08-25 19:39:05 +000080 /// Override this as PIC16 has its own way of printing switching
81 /// to a section.
Chris Lattner33adcfb2009-08-22 21:43:10 +000082 virtual void PrintSwitchToSection(const MCAsmInfo &MAI,
Chris Lattner93b6db32009-08-08 23:39:42 +000083 raw_ostream &OS) const;
Chris Lattnerf7427e52009-08-08 21:37:01 +000084 };
Chris Lattnerf7427e52009-08-08 21:37:01 +000085
86} // end namespace llvm
87
88#endif