Added llvm-mc support for parsing the .include directive.
authorKevin Enderby <enderby@apple.com>
Tue, 14 Jul 2009 23:21:55 +0000 (23:21 +0000)
committerKevin Enderby <enderby@apple.com>
Tue, 14 Jul 2009 23:21:55 +0000 (23:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75711 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/MC/MCStreamer.h
lib/MC/MCAsmStreamer.cpp
test/MC/AsmParser/directive_include.s [new file with mode: 0644]
tools/llvm-mc/AsmParser.cpp
tools/llvm-mc/AsmParser.h

index d58c8ba87ddd7e6de303381b01fa9b3b5d6b2668..1327b261a7c10f8e305919d6fe18586207eeab23 100644 (file)
@@ -160,6 +160,12 @@ namespace llvm {
     /// @param AbortReason - The reason assembly is terminated, if non-NULL.
     virtual void AbortAssembly(const char *AbortReason) = 0;
 
+    /// SwitchInputAssemblyFile - Assemble the contents of the specified file in
+    /// @param FileName at this point in the assembly.
+    ///
+    /// @param FileName - The file to assemble at this point
+    virtual void SwitchInputAssemblyFile(const char *FileName) = 0;
+
     /// @}
     /// @name Generating Data
     /// @{
index ec99b108bed66d274f8cbe9da00a633c36c300b6..2a15783478b278a971183477c06893898a064b22 100644 (file)
@@ -57,6 +57,8 @@ namespace {
 
     virtual void AbortAssembly(const char *AbortReason = NULL);
 
+    virtual void SwitchInputAssemblyFile(const char *FileName);
+
     virtual void EmitBytes(const char *Data, unsigned Length);
 
     virtual void EmitValue(const MCValue &Value, unsigned Size);
@@ -137,6 +139,10 @@ void MCAsmStreamer::AbortAssembly(const char *AbortReason) {
   
 }
 
+void MCAsmStreamer::SwitchInputAssemblyFile(const char *FileName) {
+  OS << ".include" << ' ' << FileName << '\n';
+}
+
 void MCAsmStreamer::EmitAssignment(MCSymbol *Symbol, const MCValue &Value,
                                    bool MakeAbsolute) {
   assert(!Symbol->getSection() && "Cannot assign to a label!");
diff --git a/test/MC/AsmParser/directive_include.s b/test/MC/AsmParser/directive_include.s
new file mode 100644 (file)
index 0000000..8c35d2a
--- /dev/null
@@ -0,0 +1,8 @@
+# RUN: llvm-mc %s | FileCheck %s
+
+# CHECK: TEST0:
+# CHECK: .include "some/include/file"
+# CHECK: .include "mary had a little lamb"
+TEST0:  
+       .include       "some/include/file"
+ .include  "mary had a little lamb"
index b4e0f5792aaa93a984b22ce51bbcbc417e276192..1550c69874493e8f1f568feac0619858966b2499 100644 (file)
@@ -535,6 +535,8 @@ bool AsmParser::ParseStatement() {
       return ParseDirectiveDarwinSubsectionsViaSymbols();
     if (!strcmp(IDVal, ".abort"))
       return ParseDirectiveAbort();
+    if (!strcmp(IDVal, ".include"))
+      return ParseDirectiveInclude();
 
     Warning(IDLoc, "ignoring directive for now");
     EatToEndOfStatement();
@@ -1158,3 +1160,25 @@ bool AsmParser::ParseDirectiveDarwinLsym() {
 
   return false;
 }
+
+/// ParseDirectiveInclude
+///  ::= .include "filename"
+bool AsmParser::ParseDirectiveInclude() {
+  const char *Str;
+
+  if (Lexer.isNot(asmtok::String))
+    return TokError("expected string in '.include' directive");
+  
+  Str = Lexer.getCurStrVal();
+
+  Lexer.Lex();
+
+  if (Lexer.isNot(asmtok::EndOfStatement))
+    return TokError("unexpected token in '.include' directive");
+  
+  Lexer.Lex();
+
+  Out.SwitchInputAssemblyFile(Str);
+
+  return false;
+}
index 7d756376c506c038eb770475602b351c71b0451c..1bb7ca2832d0486963d179946b4b49f29684d9c2 100644 (file)
@@ -119,6 +119,7 @@ private:
   bool ParseDirectiveDarwinSubsectionsViaSymbols();
 
   bool ParseDirectiveAbort(); // ".abort"
+  bool ParseDirectiveInclude(); // ".include"
 };
 
 } // end namespace llvm