dc757bb0bffa341e8a4ce249d01aa41a284e884e
[oota-llvm.git] / lib / MC / MCContext.cpp
1 //===- lib/MC/MCContext.cpp - Machine Code Context ------------------------===//
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 #include "llvm/MC/MCContext.h"
11 #include "llvm/MC/MCAsmInfo.h"
12 #include "llvm/MC/MCSectionMachO.h"
13 #include "llvm/MC/MCSectionELF.h"
14 #include "llvm/MC/MCSymbol.h"
15 #include "llvm/ADT/SmallString.h"
16 #include "llvm/ADT/Twine.h"
17 using namespace llvm;
18
19 typedef StringMap<const MCSectionMachO*> MachOUniqueMapTy;
20 typedef StringMap<const MCSectionELF*> ELFUniqueMapTy;
21
22
23 MCContext::MCContext(const MCAsmInfo &mai) : MAI(mai), NextUniqueID(0) {
24   MachOUniquingMap = 0;
25   ELFUniquingMap = 0;
26 }
27
28 MCContext::~MCContext() {
29   // NOTE: The symbols are all allocated out of a bump pointer allocator,
30   // we don't need to free them here.
31   
32   // If we have the MachO uniquing map, free it.
33   delete (MachOUniqueMapTy*)MachOUniquingMap;
34   delete (ELFUniqueMapTy*)ELFUniquingMap;
35 }
36
37 //===----------------------------------------------------------------------===//
38 // Symbol Manipulation
39 //===----------------------------------------------------------------------===//
40
41 MCSymbol *MCContext::GetOrCreateSymbol(StringRef Name) {
42   assert(!Name.empty() && "Normal symbols cannot be unnamed!");
43   
44   // Determine whether this is an assembler temporary or normal label.
45   bool isTemporary = Name.startswith(MAI.getPrivateGlobalPrefix());
46   
47   // Do the lookup and get the entire StringMapEntry.  We want access to the
48   // key if we are creating the entry.
49   StringMapEntry<MCSymbol*> &Entry = Symbols.GetOrCreateValue(Name);
50   if (Entry.getValue()) return Entry.getValue();
51
52   // Ok, the entry doesn't already exist.  Have the MCSymbol object itself refer
53   // to the copy of the string that is embedded in the StringMapEntry.
54   MCSymbol *Result = new (*this) MCSymbol(Entry.getKey(), isTemporary);
55   Entry.setValue(Result);
56   return Result; 
57 }
58
59 MCSymbol *MCContext::GetOrCreateSymbol(const Twine &Name) {
60   SmallString<128> NameSV;
61   Name.toVector(NameSV);
62   return GetOrCreateSymbol(NameSV.str());
63 }
64
65 MCSymbol *MCContext::CreateTempSymbol() {
66   return GetOrCreateSymbol(Twine(MAI.getPrivateGlobalPrefix()) +
67                            "tmp" + Twine(NextUniqueID++));
68 }
69
70 MCSymbol *MCContext::LookupSymbol(StringRef Name) const {
71   return Symbols.lookup(Name);
72 }
73
74 //===----------------------------------------------------------------------===//
75 // Section Management
76 //===----------------------------------------------------------------------===//
77
78 const MCSectionMachO *MCContext::
79 getMachOSection(StringRef Segment, StringRef Section,
80                 unsigned TypeAndAttributes,
81                 unsigned Reserved2, SectionKind Kind) {
82   
83   // We unique sections by their segment/section pair.  The returned section
84   // may not have the same flags as the requested section, if so this should be
85   // diagnosed by the client as an error.
86   
87   // Create the map if it doesn't already exist.
88   if (MachOUniquingMap == 0)
89     MachOUniquingMap = new MachOUniqueMapTy();
90   MachOUniqueMapTy &Map = *(MachOUniqueMapTy*)MachOUniquingMap;
91   
92   // Form the name to look up.
93   SmallString<64> Name;
94   Name += Segment;
95   Name.push_back(',');
96   Name += Section;
97   
98   // Do the lookup, if we have a hit, return it.
99   const MCSectionMachO *&Entry = Map[Name.str()];
100   if (Entry) return Entry;
101   
102   // Otherwise, return a new section.
103   return Entry = new (*this) MCSectionMachO(Segment, Section, TypeAndAttributes,
104                                             Reserved2, Kind);
105 }
106
107
108 const MCSection *MCContext::
109 getELFSection(StringRef Section, unsigned Type, unsigned Flags,
110               SectionKind Kind, bool IsExplicit) {
111   if (ELFUniquingMap == 0)
112     ELFUniquingMap = new ELFUniqueMapTy();
113   ELFUniqueMapTy &Map = *(ELFUniqueMapTy*)ELFUniquingMap;
114   
115   // Do the lookup, if we have a hit, return it.
116   StringMapEntry<const MCSectionELF*> &Entry = Map.GetOrCreateValue(Section);
117   if (Entry.getValue()) return Entry.getValue();
118   
119   MCSectionELF *Result = new (*this) MCSectionELF(Entry.getKey(), Type, Flags,
120                                                   Kind, IsExplicit);
121   Entry.setValue(Result);
122   return Result;
123 }
124
125