Home
last modified time | relevance | path

Searched refs:MapFile (Results 1 – 12 of 12) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Transforms/Utils/
H A DSymbolRewriter.cpp251 bool RewriteMapParser::parse(const std::string &MapFile, in parse() argument
254 MemoryBuffer::getFile(MapFile); in parse()
257 report_fatal_error("unable to read rewrite map '" + MapFile + "': " + in parse()
261 report_fatal_error("unable to parse rewrite map '" + MapFile + "'"); in parse()
266 bool RewriteMapParser::parse(std::unique_ptr<MemoryBuffer> &MapFile, in parse() argument
269 yaml::Stream YS(MapFile->getBuffer(), SM); in parse()
571 for (const auto &MapFile : MapFiles) in loadAndParseMapFiles() local
572 Parser.parse(MapFile, &Descriptors); in loadAndParseMapFiles()
/freebsd-12.1/contrib/llvm/tools/lld/COFF/
H A DMapFile.cpp92 if (Config->MapFile.empty()) in writeMapFile()
96 raw_fd_ostream OS(Config->MapFile, EC, sys::fs::F_None); in writeMapFile()
98 fatal("cannot open " + Config->MapFile + ": " + EC.message()); in writeMapFile()
H A DCMakeLists.txt17 MapFile.cpp
H A DConfig.h177 std::string MapFile; member
H A DDriver.cpp1301 Config->MapFile = getMapFile(Args); in link()
/freebsd-12.1/contrib/llvm/include/llvm/Transforms/Utils/
H A DSymbolRewriter.h97 bool parse(const std::string &MapFile, RewriteDescriptorList *Descriptors);
100 bool parse(std::unique_ptr<MemoryBuffer> &MapFile, RewriteDescriptorList *DL);
/freebsd-12.1/contrib/llvm/tools/lld/ELF/
H A DMapFile.cpp145 if (Config->MapFile.empty()) in writeMapFile()
150 raw_fd_ostream OS(Config->MapFile, EC, sys::fs::F_None); in writeMapFile()
152 error("cannot open " + Config->MapFile + ": " + EC.message()); in writeMapFile()
H A DCMakeLists.txt36 MapFile.cpp
H A DConfig.h100 llvm::StringRef MapFile; member
H A DDriver.cpp812 Config->MapFile = Args.getLastArgValue(OPT_Map); in readConfigs()
940 Config->MapFile = "-"; in readConfigs()
1473 if (auto E = tryCreateFile(Config->MapFile)) in link()
1474 error("cannot open map file " + Config->MapFile + ": " + E.message()); in link()
/freebsd-12.1/usr.bin/clang/lld/
H A DMakefile58 SRCS+= ELF/MapFile.cpp
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DBackendUtil.cpp364 for (const auto &MapFile : Opts.RewriteMapFiles) in addSymbolRewriterPass() local
365 MapParser.parse(MapFile, &DL); in addSymbolRewriterPass()