From: Rui Ueyama Date: Sat, 28 Oct 2017 21:11:38 +0000 (+0000) Subject: Do not handle DefinedCommon symbols in the MapFile writer. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4a22edabec95a4c1197212f86a63d21ab2a6194a;p=platform%2Fupstream%2Fllvm.git Do not handle DefinedCommon symbols in the MapFile writer. Because of r314495 which converts DefinedCommon symbols to DefinedRegular symbols, common symbols are no longer reachable to the MapFile writer. So the code to handle common symbols is now dead. llvm-svn: 316846 --- diff --git a/lld/ELF/MapFile.cpp b/lld/ELF/MapFile.cpp index 591c4d8..852f017 100644 --- a/lld/ELF/MapFile.cpp +++ b/lld/ELF/MapFile.cpp @@ -26,9 +26,7 @@ #include "Strings.h" #include "SymbolTable.h" #include "SyntheticSections.h" - #include "lld/Common/Threads.h" - #include "llvm/Support/raw_ostream.h" using namespace llvm; @@ -51,30 +49,21 @@ static std::string indent(int Depth) { return std::string(Depth * 8, ' '); } // Returns a list of all symbols that we want to print out. static std::vector getSymbols() { std::vector V; - for (InputFile *File : ObjectFiles) { - for (SymbolBody *B : File->getSymbols()) { - if (auto *DR = dyn_cast(B)) { + for (InputFile *File : ObjectFiles) + for (SymbolBody *B : File->getSymbols()) + if (auto *DR = dyn_cast(B)) if (DR->getFile() == File && !DR->isSection() && DR->Section && DR->Section->Live) V.push_back(DR); - } else if (auto *DC = dyn_cast(B)) { - if (DC->Section) - V.push_back(DC); - } - } - } return V; } // Returns a map from sections to their symbols. static SymbolMapTy getSectionSyms(ArrayRef Syms) { SymbolMapTy Ret; - for (Defined *S : Syms) { + for (Defined *S : Syms) if (auto *DR = dyn_cast(S)) Ret[DR->Section].push_back(S); - else if (auto *DC = dyn_cast(S)) - Ret[DC->Section].push_back(S); - } // Sort symbols by address. We want to print out symbols in the // order in the output file rather than the order they appeared