LinkerScript: Add evaluation of the EXTERN command
authorMeador Inge <meadori@codesourcery.com>
Thu, 12 Mar 2015 21:55:55 +0000 (21:55 +0000)
committerMeador Inge <meadori@codesourcery.com>
Thu, 12 Mar 2015 21:55:55 +0000 (21:55 +0000)
This patch implements evaluation of the GNU ld EXTERN command.

llvm-svn: 232111

lld/include/lld/ReaderWriter/LinkerScript.h
lld/lib/Driver/GnuLdDriver.cpp
lld/test/elf/linkerscript/Inputs/externs.ls [new file with mode: 0644]
lld/test/elf/linkerscript/externs.objtxt [new file with mode: 0644]

index 5c74ae1..e4a8bf5 100644 (file)
@@ -846,6 +846,8 @@ private:
 /// Represents an extern command.
 class Extern : public Command {
 public:
+  typedef llvm::ArrayRef<StringRef>::const_iterator const_iterator;
+
   Extern(Parser &ctx,
          const SmallVectorImpl<StringRef> &symbols)
       : Command(ctx, Kind::Extern) {
@@ -861,6 +863,8 @@ public:
   }
 
   void dump(raw_ostream &os) const override;
+  const_iterator begin() const { return _symbols.begin(); }
+  const_iterator end() const { return _symbols.end(); }
 
 private:
   llvm::ArrayRef<StringRef> _symbols;
index 48ec24a..c20e108 100644 (file)
@@ -308,6 +308,11 @@ std::error_code GnuLdDriver::evalLinkerScript(ELFLinkingContext &ctx,
       ctx.setEntrySymbolName(entry->getEntryName());
     if (auto *output = dyn_cast<script::Output>(c))
       ctx.setOutputPath(output->getOutputFileName());
+    if (auto *externs = dyn_cast<script::Extern>(c)) {
+      for (auto symbol : *externs) {
+        ctx.addInitialUndefinedSymbol(symbol);
+      }
+    }
   }
   // Transfer ownership of the script to the linking context
   ctx.addLinkerScript(std::move(parser));
diff --git a/lld/test/elf/linkerscript/Inputs/externs.ls b/lld/test/elf/linkerscript/Inputs/externs.ls
new file mode 100644 (file)
index 0000000..20fdc0c
--- /dev/null
@@ -0,0 +1,3 @@
+/* A simple valid linker script used for testing the EXTERN command.
+ */
+EXTERN(_foo bar __baz)
diff --git a/lld/test/elf/linkerscript/externs.objtxt b/lld/test/elf/linkerscript/externs.objtxt
new file mode 100644 (file)
index 0000000..154891e
--- /dev/null
@@ -0,0 +1,21 @@
+# Check symbols defined with the EXTERN command are added as undefined
+# symbols.
+
+# RUN: lld -flavor gnu -target x86_64 -T %p/Inputs/externs.ls -r %s \
+# RUN:     --output-filetype=yaml | FileCheck %s
+
+defined-atoms:
+  - name:            main
+    scope:           global
+    content:         [ B8, 00, 00, 00, 00, C7, 44, 24, FC, 00, 00, 00, 00, C3 ]
+    alignment:       2^4
+    section-choice:  custom-required
+    section-name:    .text
+
+# CHECK: undefined-atoms:
+# CHECK:   - name:            _foo
+# CHECK:     can-be-null:     at-buildtime
+# CHECK:   - name:            bar
+# CHECK:     can-be-null:     at-buildtime
+# CHECK:   - name:            __baz
+# CHECK:     can-be-null:     at-buildtime