X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;ds=sidebyside;f=lib%2FMC%2FMCSymbol.cpp;h=c7d6213bc192257752b9924e9e1bbfcab7345037;hb=0d2b021de66106051a388d6e9945ab8d147085d8;hp=3b1a41d48d07ae90239ce97964df0919ff4529c6;hpb=684c593d05db0bd277268fc9d8c05bce138c745a;p=oota-llvm.git diff --git a/lib/MC/MCSymbol.cpp b/lib/MC/MCSymbol.cpp index 3b1a41d48d0..c7d6213bc19 100644 --- a/lib/MC/MCSymbol.cpp +++ b/lib/MC/MCSymbol.cpp @@ -8,46 +8,72 @@ //===----------------------------------------------------------------------===// #include "llvm/MC/MCSymbol.h" +#include "llvm/MC/MCAsmInfo.h" +#include "llvm/MC/MCContext.h" +#include "llvm/MC/MCExpr.h" +#include "llvm/Support/Debug.h" +#include "llvm/Support/ErrorHandling.h" #include "llvm/Support/raw_ostream.h" - using namespace llvm; -// Sentinel value for the absolute pseudo section. -const MCSection *MCSymbol::AbsolutePseudoSection = - reinterpret_cast(1); +// Sentinel value for the absolute pseudo fragment. +MCFragment *MCSymbol::AbsolutePseudoFragment = + reinterpret_cast(4); -/// NeedsQuoting - Return true if the string \arg Str needs quoting, i.e., it -/// does not match [a-zA-Z_.][a-zA-Z0-9_.]*. -// -// FIXME: This could be more permissive, do we care? -static inline bool NeedsQuoting(const StringRef &Str) { - if (Str.empty()) - return true; - - // Check that first character is in [a-zA-Z_.]. - if (!((Str[0] >= 'a' && Str[0] <= 'z') || - (Str[0] >= 'A' && Str[0] <= 'Z') || - (Str[0] == '_' || Str[0] == '.'))) - return true; - - // Check subsequent characters are in [a-zA-Z0-9_.]. - for (unsigned i = 1, e = Str.size(); i != e; ++i) - if (!((Str[i] >= 'a' && Str[i] <= 'z') || - (Str[i] >= 'A' && Str[i] <= 'Z') || - (Str[i] >= '0' && Str[i] <= '9') || - (Str[i] == '_' || Str[i] == '.'))) - return true; - - return false; +void *MCSymbol::operator new(size_t s, const StringMapEntry *Name, + MCContext &Ctx) { + // We may need more space for a Name to account for alignment. So allocate + // space for the storage type and not the name pointer. + size_t Size = s + (Name ? sizeof(NameEntryStorageTy) : 0); + + // For safety, ensure that the alignment of a pointer is enough for an + // MCSymbol. This also ensures we don't need padding between the name and + // symbol. + static_assert((unsigned)AlignOf::Alignment <= + AlignOf::Alignment, + "Bad alignment of MCSymbol"); + void *Storage = Ctx.allocate(Size, alignOf()); + NameEntryStorageTy *Start = static_cast(Storage); + NameEntryStorageTy *End = Start + (Name ? 1 : 0); + return End; } -void MCSymbol::print(raw_ostream &OS, const MCAsmInfo *MAI) const { - if (NeedsQuoting(getName())) - OS << '"' << getName() << '"'; - else - OS << getName(); +void MCSymbol::setVariableValue(const MCExpr *Value) { + assert(!IsUsed && "Cannot set a variable that has already been used."); + assert(Value && "Invalid variable value!"); + assert((SymbolContents == SymContentsUnset || + SymbolContents == SymContentsVariable) && + "Cannot give common/offset symbol a variable value"); + this->Value = Value; + SymbolContents = SymContentsVariable; + setUndefined(); } -void MCSymbol::dump() const { - print(errs(), 0); +void MCSymbol::print(raw_ostream &OS, const MCAsmInfo *MAI) const { + // The name for this MCSymbol is required to be a valid target name. However, + // some targets support quoting names with funny characters. If the name + // contains a funny character, then print it quoted. + StringRef Name = getName(); + if (!MAI || MAI->isValidUnquotedName(Name)) { + OS << Name; + return; + } + + if (MAI && !MAI->supportsNameQuoting()) + report_fatal_error("Symbol name with unsupported characters"); + + OS << '"'; + for (char C : Name) { + if (C == '\n') + OS << "\\n"; + else if (C == '"') + OS << "\\\""; + else + OS << C; + } + OS << '"'; } + +#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) +void MCSymbol::dump() const { dbgs() << *this; } +#endif