mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-30 16:17:05 +00:00 
			
		
		
		
	- I moved section creation back into AsmParser. I think policy decisions like this should be pushed higher, not lower, when possible (in addition the assembler has flags which change this behavior, for example). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80162 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			72 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| //===- lib/MC/MCContext.cpp - Machine Code Context ------------------------===//
 | |
| //
 | |
| //                     The LLVM Compiler Infrastructure
 | |
| //
 | |
| // This file is distributed under the University of Illinois Open Source
 | |
| // License. See LICENSE.TXT for details.
 | |
| //
 | |
| //===----------------------------------------------------------------------===//
 | |
| 
 | |
| #include "llvm/MC/MCContext.h"
 | |
| 
 | |
| #include "llvm/MC/MCSection.h"
 | |
| #include "llvm/MC/MCSymbol.h"
 | |
| #include "llvm/MC/MCValue.h"
 | |
| using namespace llvm;
 | |
| 
 | |
| MCContext::MCContext() {
 | |
| }
 | |
| 
 | |
| MCContext::~MCContext() {
 | |
|   // NOTE: The sections are all allocated out of a bump pointer allocator,
 | |
|   // we don't need to free them here.
 | |
| }
 | |
| 
 | |
| MCSymbol *MCContext::CreateSymbol(const StringRef &Name) {
 | |
|   assert(Name[0] != '\0' && "Normal symbols cannot be unnamed!");
 | |
| 
 | |
|   // Create and bind the symbol, and ensure that names are unique.
 | |
|   MCSymbol *&Entry = Symbols[Name];
 | |
|   assert(!Entry && "Duplicate symbol definition!");
 | |
|   return Entry = new (*this) MCSymbol(Name, false);
 | |
| }
 | |
| 
 | |
| MCSymbol *MCContext::GetOrCreateSymbol(const StringRef &Name) {
 | |
|   MCSymbol *&Entry = Symbols[Name];
 | |
|   if (Entry) return Entry;
 | |
| 
 | |
|   return Entry = new (*this) MCSymbol(Name, false);
 | |
| }
 | |
| 
 | |
| MCSymbol *MCContext::CreateTemporarySymbol(const StringRef &Name) {
 | |
|   // If unnamed, just create a symbol.
 | |
|   if (Name.empty())
 | |
|     new (*this) MCSymbol("", true);
 | |
|     
 | |
|   // Otherwise create as usual.
 | |
|   MCSymbol *&Entry = Symbols[Name];
 | |
|   assert(!Entry && "Duplicate symbol definition!");
 | |
|   return Entry = new (*this) MCSymbol(Name, true);
 | |
| }
 | |
| 
 | |
| MCSymbol *MCContext::LookupSymbol(const StringRef &Name) const {
 | |
|   return Symbols.lookup(Name);
 | |
| }
 | |
| 
 | |
| void MCContext::ClearSymbolValue(const MCSymbol *Sym) {
 | |
|   SymbolValues.erase(Sym);
 | |
| }
 | |
| 
 | |
| void MCContext::SetSymbolValue(const MCSymbol *Sym, const MCValue &Value) {
 | |
|   SymbolValues[Sym] = Value;
 | |
| }
 | |
| 
 | |
| const MCValue *MCContext::GetSymbolValue(const MCSymbol *Sym) const {
 | |
|   DenseMap<const MCSymbol*, MCValue>::iterator it = SymbolValues.find(Sym);
 | |
| 
 | |
|   if (it == SymbolValues.end())
 | |
|     return 0;
 | |
| 
 | |
|   return &it->second;
 | |
| }
 |