[PATCH] Implement semantic action for SEARCH_DIR linker script command

Phabricator reviews at reviews.llvm.org
Sat Jan 31 14:44:06 PST 2015


REPOSITORY
  rL LLVM

http://reviews.llvm.org/D7220

Files:
  lld/trunk/include/lld/ReaderWriter/ELFLinkingContext.h
  lld/trunk/lib/Driver/GnuLdDriver.cpp
  lld/trunk/unittests/DriverTests/GnuLdDriverTest.cpp

Index: lld/trunk/unittests/DriverTests/GnuLdDriverTest.cpp
===================================================================
--- lld/trunk/unittests/DriverTests/GnuLdDriverTest.cpp
+++ lld/trunk/unittests/DriverTests/GnuLdDriverTest.cpp
@@ -177,3 +177,17 @@
   EXPECT_EQ("/y", cast<FileNode>(nodes[2].get())->getFile()->path());
   EXPECT_EQ(2, cast<GroupEnd>(nodes[3].get())->getSize());
 }
+
+TEST_F(GnuLdParserTest, LinkerScriptSearchDir) {
+  parse("ld", "a.o", nullptr);
+  std::unique_ptr<MemoryBuffer> mb = MemoryBuffer::getMemBuffer(
+    "SEARCH_DIR(\"/foo/bar\")", "foo.so");
+  std::string s;
+  raw_string_ostream out(s);
+  std::error_code ec = GnuLdDriver::evalLinkerScript(
+    *_context, std::move(mb), out);
+  EXPECT_FALSE(ec);
+  std::vector<StringRef> searchPaths = _context->getSearchPaths();
+  EXPECT_EQ((size_t)2, searchPaths.size());
+  EXPECT_EQ("/foo/bar", searchPaths[1]);
+}
Index: lld/trunk/lib/Driver/GnuLdDriver.cpp
===================================================================
--- lld/trunk/lib/Driver/GnuLdDriver.cpp
+++ lld/trunk/lib/Driver/GnuLdDriver.cpp
@@ -280,11 +280,16 @@
   if (!script)
     return LinkerScriptReaderError::parse_error;
   // Evaluate script commands.
-  // Currently we only recognize GROUP() command.
-  for (const script::Command *c : script->_commands)
+  // Currently we only recognize this subset of linker script commands:
+  // - GROUP()
+  // - SEARCH_DIR()
+  for (const script::Command *c : script->_commands) {
     if (auto *group = dyn_cast<script::Group>(c))
       if (std::error_code ec = evaluateLinkerScriptGroup(ctx, path, group, diag))
         return ec;
+    if (auto *searchDir = dyn_cast<script::SearchDir>(c))
+      ctx.addSearchPath(searchDir->getSearchPath());
+  }
   return std::error_code();
 }
 
Index: lld/trunk/include/lld/ReaderWriter/ELFLinkingContext.h
===================================================================
--- lld/trunk/include/lld/ReaderWriter/ELFLinkingContext.h
+++ lld/trunk/include/lld/ReaderWriter/ELFLinkingContext.h
@@ -268,6 +268,9 @@
     return true;
   }
 
+  // Retrieve search path list.
+  StringRefVector getSearchPaths() { return _inputSearchPaths; };
+
   // By default, the linker would merge sections that are read only with
   // segments that have read and execute permissions. When the user specifies a
   // flag --rosegment, a separate segment needs to be created.

EMAIL PREFERENCES
  http://reviews.llvm.org/settings/panel/emailpreferences/
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D7220.19099.patch
Type: text/x-patch
Size: 2412 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20150131/790478f0/attachment.bin>


More information about the llvm-commits mailing list