mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-24 12:29:33 +00:00
Added llvm-mc support for parsing the .desc directive.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75645 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
533c67ba98
commit
95cf30c444
@ -120,6 +120,12 @@ namespace llvm {
|
|||||||
virtual void EmitSymbolAttribute(MCSymbol *Symbol,
|
virtual void EmitSymbolAttribute(MCSymbol *Symbol,
|
||||||
SymbolAttr Attribute) = 0;
|
SymbolAttr Attribute) = 0;
|
||||||
|
|
||||||
|
/// EmitSymbolDesc - Set the @param DescValue for the @param Symbol.
|
||||||
|
///
|
||||||
|
/// @param Symbol - The symbol to have its n_desc field set.
|
||||||
|
/// @param DescValue - The value to set into the n_desc field.
|
||||||
|
virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) = 0;
|
||||||
|
|
||||||
/// EmitCommonSymbol - Emit a common or local common symbol of @param Size
|
/// EmitCommonSymbol - Emit a common or local common symbol of @param Size
|
||||||
/// with the @param Pow2Alignment if non-zero.
|
/// with the @param Pow2Alignment if non-zero.
|
||||||
///
|
///
|
||||||
|
@ -45,6 +45,8 @@ namespace {
|
|||||||
|
|
||||||
virtual void EmitSymbolAttribute(MCSymbol *Symbol, SymbolAttr Attribute);
|
virtual void EmitSymbolAttribute(MCSymbol *Symbol, SymbolAttr Attribute);
|
||||||
|
|
||||||
|
virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue);
|
||||||
|
|
||||||
virtual void EmitCommonSymbol(MCSymbol *Symbol, unsigned Size,
|
virtual void EmitCommonSymbol(MCSymbol *Symbol, unsigned Size,
|
||||||
unsigned Pow2Alignment, bool IsLocal);
|
unsigned Pow2Alignment, bool IsLocal);
|
||||||
|
|
||||||
@ -166,6 +168,10 @@ void MCAsmStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
|
|||||||
OS << ' ' << Symbol->getName() << '\n';
|
OS << ' ' << Symbol->getName() << '\n';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MCAsmStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
|
||||||
|
OS << ".desc" << ' ' << Symbol->getName() << ',' << DescValue << '\n';
|
||||||
|
}
|
||||||
|
|
||||||
void MCAsmStreamer::EmitCommonSymbol(MCSymbol *Symbol, unsigned Size,
|
void MCAsmStreamer::EmitCommonSymbol(MCSymbol *Symbol, unsigned Size,
|
||||||
unsigned Pow2Alignment, bool IsLocal) {
|
unsigned Pow2Alignment, bool IsLocal) {
|
||||||
if (IsLocal)
|
if (IsLocal)
|
||||||
|
8
test/MC/AsmParser/directive_desc.s
Normal file
8
test/MC/AsmParser/directive_desc.s
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
# RUN: llvm-mc %s | FileCheck %s
|
||||||
|
|
||||||
|
# CHECK: TEST0:
|
||||||
|
# CHECK: .desc foo,16
|
||||||
|
# CHECK: .desc bar,4
|
||||||
|
TEST0:
|
||||||
|
.desc foo,0x10
|
||||||
|
.desc bar, 1 +3
|
@ -526,6 +526,8 @@ bool AsmParser::ParseStatement() {
|
|||||||
return ParseDirectiveComm(/*IsLocal=*/true);
|
return ParseDirectiveComm(/*IsLocal=*/true);
|
||||||
if (!strcmp(IDVal, ".zerofill"))
|
if (!strcmp(IDVal, ".zerofill"))
|
||||||
return ParseDirectiveDarwinZerofill();
|
return ParseDirectiveDarwinZerofill();
|
||||||
|
if (!strcmp(IDVal, ".desc"))
|
||||||
|
return ParseDirectiveDarwinSymbolDesc();
|
||||||
|
|
||||||
if (!strcmp(IDVal, ".subsections_via_symbols"))
|
if (!strcmp(IDVal, ".subsections_via_symbols"))
|
||||||
return ParseDirectiveDarwinSubsectionsViaSymbols();
|
return ParseDirectiveDarwinSubsectionsViaSymbols();
|
||||||
@ -909,6 +911,37 @@ bool AsmParser::ParseDirectiveSymbolAttribute(MCStreamer::SymbolAttr Attr) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// ParseDirectiveDarwinSymbolDesc
|
||||||
|
/// ::= .desc identifier , expression
|
||||||
|
bool AsmParser::ParseDirectiveDarwinSymbolDesc() {
|
||||||
|
if (Lexer.isNot(asmtok::Identifier))
|
||||||
|
return TokError("expected identifier in directive");
|
||||||
|
|
||||||
|
// handle the identifier as the key symbol.
|
||||||
|
SMLoc IDLoc = Lexer.getLoc();
|
||||||
|
MCSymbol *Sym = Ctx.GetOrCreateSymbol(Lexer.getCurStrVal());
|
||||||
|
Lexer.Lex();
|
||||||
|
|
||||||
|
if (Lexer.isNot(asmtok::Comma))
|
||||||
|
return TokError("unexpected token in '.desc' directive");
|
||||||
|
Lexer.Lex();
|
||||||
|
|
||||||
|
SMLoc DescLoc = Lexer.getLoc();
|
||||||
|
int64_t DescValue;
|
||||||
|
if (ParseAbsoluteExpression(DescValue))
|
||||||
|
return true;
|
||||||
|
|
||||||
|
if (Lexer.isNot(asmtok::EndOfStatement))
|
||||||
|
return TokError("unexpected token in '.desc' directive");
|
||||||
|
|
||||||
|
Lexer.Lex();
|
||||||
|
|
||||||
|
// Set the n_desc field of this Symbol to this DescValue
|
||||||
|
Out.EmitSymbolDesc(Sym, DescValue);
|
||||||
|
|
||||||
|
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) {
|
||||||
|
@ -109,6 +109,7 @@ private:
|
|||||||
/// ParseDirectiveSymbolAttribute - Parse a directive like ".globl" which
|
/// ParseDirectiveSymbolAttribute - Parse a directive like ".globl" which
|
||||||
/// accepts a single symbol (which should be a label or an external).
|
/// accepts a single symbol (which should be a label or an external).
|
||||||
bool ParseDirectiveSymbolAttribute(MCStreamer::SymbolAttr Attr);
|
bool ParseDirectiveSymbolAttribute(MCStreamer::SymbolAttr Attr);
|
||||||
|
bool ParseDirectiveDarwinSymbolDesc(); // Darwin specific ".desc"
|
||||||
|
|
||||||
bool ParseDirectiveComm(bool IsLocal); // ".comm" and ".lcomm"
|
bool ParseDirectiveComm(bool IsLocal); // ".comm" and ".lcomm"
|
||||||
bool ParseDirectiveDarwinZerofill(); // Darwin specific ".zerofill"
|
bool ParseDirectiveDarwinZerofill(); // Darwin specific ".zerofill"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user