[llvm-commits] CVS: llvm/lib/Linker/LinkItems.cpp
Reid Spencer
reid at x10sys.com
Tue Apr 3 23:33:34 PDT 2007
Changes in directory llvm/lib/Linker:
LinkItems.cpp updated: 1.9 -> 1.10
---
Log message:
For PR1302: http://llvm.org/PR1302 :
Implement file tests for both LinkInLibrary and LinkInFile to determine if
the file is native. Don't generate warnings if the file is native.
---
Diffs of the changes: (+61 -31)
LinkItems.cpp | 92 ++++++++++++++++++++++++++++++++++++++--------------------
1 files changed, 61 insertions(+), 31 deletions(-)
Index: llvm/lib/Linker/LinkItems.cpp
diff -u llvm/lib/Linker/LinkItems.cpp:1.9 llvm/lib/Linker/LinkItems.cpp:1.10
--- llvm/lib/Linker/LinkItems.cpp:1.9 Sat Nov 11 05:54:25 2006
+++ llvm/lib/Linker/LinkItems.cpp Wed Apr 4 01:33:17 2007
@@ -33,14 +33,17 @@
if (I->second) {
// Link in the library suggested.
bool is_bytecode = true;
- if (LinkInLibrary(I->first,is_bytecode))
+ if (LinkInLibrary(I->first, is_bytecode))
return true;
if (!is_bytecode)
NativeItems.push_back(*I);
} else {
// Link in the file suggested
- if (LinkInFile(sys::Path(I->first)))
+ bool is_native = false;
+ if (LinkInFile(sys::Path(I->first), is_native))
return true;
+ if (is_native)
+ NativeItems.push_back(*I);
}
}
@@ -61,8 +64,8 @@
/// LinkInLibrary - links one library into the HeadModule.
///
-bool Linker::LinkInLibrary(const std::string& Lib, bool& is_bytecode) {
- is_bytecode = false;
+bool Linker::LinkInLibrary(const std::string& Lib, bool& is_native) {
+ is_native = false;
// Determine where this library lives.
sys::Path Pathname = FindLib(Lib);
if (Pathname.isEmpty())
@@ -72,20 +75,27 @@
std::string Magic;
Pathname.getMagicNumber(Magic, 64);
switch (sys::IdentifyFileType(Magic.c_str(), 64)) {
- case sys::BytecodeFileType:
- case sys::CompressedBytecodeFileType:
+ default: assert(0 && "Bad file type identification");
+ case sys::Unknown_FileType:
+ return warning("Supposed library '" + Lib + "' isn't a library.");
+
+ case sys::Bytecode_FileType:
+ case sys::CompressedBytecode_FileType:
// LLVM ".so" file.
- if (LinkInFile(Pathname))
+ if (LinkInFile(Pathname, is_native))
return error("Cannot link file '" + Pathname.toString() + "'");
- is_bytecode = true;
break;
- case sys::ArchiveFileType:
+
+ case sys::Archive_FileType:
if (LinkInArchive(Pathname))
return error("Cannot link archive '" + Pathname.toString() + "'");
- is_bytecode = true;
break;
- default:
- return warning("Supposed library '" + Lib + "' isn't a library.");
+
+ case sys::ELF_FileType:
+ case sys::Mach_O_FileType:
+ case sys::COFF_FileType:
+ is_native = true;
+ break;
}
return false;
}
@@ -135,28 +145,47 @@
/// TRUE - An error occurred.
/// FALSE - No errors.
///
-bool Linker::LinkInFile(const sys::Path &File) {
+bool Linker::LinkInFile(const sys::Path &File, bool &is_native) {
+ is_native = false;
// Make sure we can at least read the file
if (!File.canRead())
return error("Cannot find linker input '" + File.toString() + "'");
- // A user may specify an ar archive without -l, perhaps because it
- // is not installed as a library. Detect that and link the library.
- if (File.isArchive()) {
- if (LinkInArchive(File))
- return error("Cannot link archive '" + File.toString() + "'");
- } else if (File.isBytecodeFile()) {
- verbose("Linking bytecode file '" + File.toString() + "'");
-
- std::auto_ptr<Module> M(LoadObject(File));
- if (M.get() == 0)
- return error("Cannot load file '" + File.toString() + "'" + Error);
- if (LinkInModule(M.get()))
- return error("Cannot link file '" + File.toString() + "'" + Error);
-
- verbose("Linked in file '" + File.toString() + "'");
- } else {
- return warning("File of unknown type '" + File.toString() + "' ignored.");
+ // If its an archive, try to link it in
+ std::string Magic;
+ File.getMagicNumber(Magic, 64);
+ switch (sys::IdentifyFileType(Magic.c_str(), 64)) {
+ default: assert(0 && "Bad file type identification");
+ case sys::Unknown_FileType:
+ return warning("Supposed object file '" + File.toString() +
+ "' not recognized as such");
+
+ case sys::Archive_FileType:
+ // A user may specify an ar archive without -l, perhaps because it
+ // is not installed as a library. Detect that and link the archive.
+ verbose("Linking archive file '" + File.toString() + "'");
+ if (LinkInArchive(File))
+ return error("Cannot link archive '" + File.toString() + "'");
+ break;
+
+ case sys::Bytecode_FileType:
+ case sys::CompressedBytecode_FileType: {
+ verbose("Linking bytecode file '" + File.toString() + "'");
+ std::auto_ptr<Module> M(LoadObject(File));
+ if (M.get() == 0)
+ return error("Cannot load file '" + File.toString() + "'" + Error);
+ if (LinkInModule(M.get()))
+ return error("Cannot link file '" + File.toString() + "'" + Error);
+
+ verbose("Linked in file '" + File.toString() + "'");
+ break;
+ }
+
+ case sys::ELF_FileType:
+ case sys::Mach_O_FileType:
+ case sys::COFF_FileType:
+ is_native = true;
+ break;
}
return false;
}
@@ -175,8 +204,9 @@
/// TRUE - Some error occurred.
///
bool Linker::LinkInFiles(const std::vector<sys::Path> &Files) {
+ bool is_native;
for (unsigned i = 0; i < Files.size(); ++i)
- if (LinkInFile(Files[i]))
+ if (LinkInFile(Files[i], is_native))
return true;
return false;
}
More information about the llvm-commits
mailing list