mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-28 03:25:23 +00:00
MC: Move ParseDirectiveELFType into ELFAsmParser. COFF uses .type for something else.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116142 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -983,8 +983,6 @@ bool AsmParser::ParseStatement() {
|
|||||||
return ParseDirectiveSymbolAttribute(MCSA_Protected);
|
return ParseDirectiveSymbolAttribute(MCSA_Protected);
|
||||||
if (IDVal == ".reference")
|
if (IDVal == ".reference")
|
||||||
return ParseDirectiveSymbolAttribute(MCSA_Reference);
|
return ParseDirectiveSymbolAttribute(MCSA_Reference);
|
||||||
if (IDVal == ".type")
|
|
||||||
return ParseDirectiveELFType();
|
|
||||||
if (IDVal == ".weak")
|
if (IDVal == ".weak")
|
||||||
return ParseDirectiveSymbolAttribute(MCSA_Weak);
|
return ParseDirectiveSymbolAttribute(MCSA_Weak);
|
||||||
if (IDVal == ".weak_definition")
|
if (IDVal == ".weak_definition")
|
||||||
@@ -1701,52 +1699,6 @@ bool AsmParser::ParseDirectiveSymbolAttribute(MCSymbolAttr Attr) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// ParseDirectiveELFType
|
|
||||||
/// ::= .type identifier , @attribute
|
|
||||||
bool AsmParser::ParseDirectiveELFType() {
|
|
||||||
StringRef Name;
|
|
||||||
if (ParseIdentifier(Name))
|
|
||||||
return TokError("expected identifier in directive");
|
|
||||||
|
|
||||||
// Handle the identifier as the key symbol.
|
|
||||||
MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
|
|
||||||
|
|
||||||
if (getLexer().isNot(AsmToken::Comma))
|
|
||||||
return TokError("unexpected token in '.type' directive");
|
|
||||||
Lex();
|
|
||||||
|
|
||||||
if (getLexer().isNot(AsmToken::At))
|
|
||||||
return TokError("expected '@' before type");
|
|
||||||
Lex();
|
|
||||||
|
|
||||||
StringRef Type;
|
|
||||||
SMLoc TypeLoc;
|
|
||||||
|
|
||||||
TypeLoc = getLexer().getLoc();
|
|
||||||
if (ParseIdentifier(Type))
|
|
||||||
return TokError("expected symbol type in directive");
|
|
||||||
|
|
||||||
MCSymbolAttr Attr = StringSwitch<MCSymbolAttr>(Type)
|
|
||||||
.Case("function", MCSA_ELF_TypeFunction)
|
|
||||||
.Case("object", MCSA_ELF_TypeObject)
|
|
||||||
.Case("tls_object", MCSA_ELF_TypeTLS)
|
|
||||||
.Case("common", MCSA_ELF_TypeCommon)
|
|
||||||
.Case("notype", MCSA_ELF_TypeNoType)
|
|
||||||
.Default(MCSA_Invalid);
|
|
||||||
|
|
||||||
if (Attr == MCSA_Invalid)
|
|
||||||
return Error(TypeLoc, "unsupported attribute in '.type' directive");
|
|
||||||
|
|
||||||
if (getLexer().isNot(AsmToken::EndOfStatement))
|
|
||||||
return TokError("unexpected token in '.type' directive");
|
|
||||||
|
|
||||||
Lex();
|
|
||||||
|
|
||||||
getStreamer().EmitSymbolAttribute(Sym, Attr);
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// ParseDirectiveComm
|
/// ParseDirectiveComm
|
||||||
/// ::= ( .comm | .lcomm ) identifier , size_expression [ , align_expression ]
|
/// ::= ( .comm | .lcomm ) identifier , size_expression [ , align_expression ]
|
||||||
bool AsmParser::ParseDirectiveComm(bool IsLocal) {
|
bool AsmParser::ParseDirectiveComm(bool IsLocal) {
|
||||||
|
@@ -8,13 +8,13 @@
|
|||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#include "llvm/MC/MCParser/MCAsmParserExtension.h"
|
#include "llvm/MC/MCParser/MCAsmParserExtension.h"
|
||||||
|
#include "llvm/ADT/StringSwitch.h"
|
||||||
#include "llvm/ADT/Twine.h"
|
#include "llvm/ADT/Twine.h"
|
||||||
#include "llvm/MC/MCAsmInfo.h"
|
#include "llvm/MC/MCAsmInfo.h"
|
||||||
#include "llvm/MC/MCContext.h"
|
#include "llvm/MC/MCContext.h"
|
||||||
#include "llvm/MC/MCParser/MCAsmLexer.h"
|
#include "llvm/MC/MCParser/MCAsmLexer.h"
|
||||||
#include "llvm/MC/MCSectionELF.h"
|
#include "llvm/MC/MCSectionELF.h"
|
||||||
#include "llvm/MC/MCStreamer.h"
|
#include "llvm/MC/MCStreamer.h"
|
||||||
#include "llvm/ADT/Twine.h"
|
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
@@ -49,6 +49,7 @@ public:
|
|||||||
AddDirectiveHandler<&ELFAsmParser::ParseDirectiveSection>(".section");
|
AddDirectiveHandler<&ELFAsmParser::ParseDirectiveSection>(".section");
|
||||||
AddDirectiveHandler<&ELFAsmParser::ParseDirectiveSize>(".size");
|
AddDirectiveHandler<&ELFAsmParser::ParseDirectiveSize>(".size");
|
||||||
AddDirectiveHandler<&ELFAsmParser::ParseDirectivePrevious>(".previous");
|
AddDirectiveHandler<&ELFAsmParser::ParseDirectivePrevious>(".previous");
|
||||||
|
AddDirectiveHandler<&ELFAsmParser::ParseDirectiveType>(".type");
|
||||||
}
|
}
|
||||||
|
|
||||||
// FIXME: Part of this logic is duplicated in the MCELFStreamer. What is
|
// FIXME: Part of this logic is duplicated in the MCELFStreamer. What is
|
||||||
@@ -112,6 +113,7 @@ public:
|
|||||||
bool ParseDirectiveSection(StringRef, SMLoc);
|
bool ParseDirectiveSection(StringRef, SMLoc);
|
||||||
bool ParseDirectiveSize(StringRef, SMLoc);
|
bool ParseDirectiveSize(StringRef, SMLoc);
|
||||||
bool ParseDirectivePrevious(StringRef, SMLoc);
|
bool ParseDirectivePrevious(StringRef, SMLoc);
|
||||||
|
bool ParseDirectiveType(StringRef, SMLoc);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
bool ParseSectionName(StringRef &SectionName);
|
bool ParseSectionName(StringRef &SectionName);
|
||||||
@@ -297,6 +299,52 @@ bool ELFAsmParser::ParseDirectivePrevious(StringRef DirName, SMLoc) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// ParseDirectiveELFType
|
||||||
|
/// ::= .type identifier , @attribute
|
||||||
|
bool ELFAsmParser::ParseDirectiveType(StringRef, SMLoc) {
|
||||||
|
StringRef Name;
|
||||||
|
if (getParser().ParseIdentifier(Name))
|
||||||
|
return TokError("expected identifier in directive");
|
||||||
|
|
||||||
|
// Handle the identifier as the key symbol.
|
||||||
|
MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
|
||||||
|
|
||||||
|
if (getLexer().isNot(AsmToken::Comma))
|
||||||
|
return TokError("unexpected token in '.type' directive");
|
||||||
|
Lex();
|
||||||
|
|
||||||
|
if (getLexer().isNot(AsmToken::At))
|
||||||
|
return TokError("expected '@' before type");
|
||||||
|
Lex();
|
||||||
|
|
||||||
|
StringRef Type;
|
||||||
|
SMLoc TypeLoc;
|
||||||
|
|
||||||
|
TypeLoc = getLexer().getLoc();
|
||||||
|
if (getParser().ParseIdentifier(Type))
|
||||||
|
return TokError("expected symbol type in directive");
|
||||||
|
|
||||||
|
MCSymbolAttr Attr = StringSwitch<MCSymbolAttr>(Type)
|
||||||
|
.Case("function", MCSA_ELF_TypeFunction)
|
||||||
|
.Case("object", MCSA_ELF_TypeObject)
|
||||||
|
.Case("tls_object", MCSA_ELF_TypeTLS)
|
||||||
|
.Case("common", MCSA_ELF_TypeCommon)
|
||||||
|
.Case("notype", MCSA_ELF_TypeNoType)
|
||||||
|
.Default(MCSA_Invalid);
|
||||||
|
|
||||||
|
if (Attr == MCSA_Invalid)
|
||||||
|
return Error(TypeLoc, "unsupported attribute in '.type' directive");
|
||||||
|
|
||||||
|
if (getLexer().isNot(AsmToken::EndOfStatement))
|
||||||
|
return TokError("unexpected token in '.type' directive");
|
||||||
|
|
||||||
|
Lex();
|
||||||
|
|
||||||
|
getStreamer().EmitSymbolAttribute(Sym, Attr);
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
|
|
||||||
MCAsmParserExtension *createELFAsmParser() {
|
MCAsmParserExtension *createELFAsmParser() {
|
||||||
|
Reference in New Issue
Block a user