Home
last modified time | relevance | path

Searched refs:mapFile (Results 1 – 9 of 9) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lld/ELF/
H A DMapFile.cpp258 if (config->mapFile.empty() && !config->cref) in writeMapAndCref()
265 StringRef mapFile = config->mapFile.empty() ? "-" : config->mapFile; in writeMapAndCref() local
266 raw_fd_ostream os = ctx.openAuxiliaryFile(mapFile, ec); in writeMapAndCref()
268 error("cannot open " + mapFile + ": " + ec.message()); in writeMapAndCref()
272 if (!config->mapFile.empty()) in writeMapAndCref()
H A DConfig.h171 llvm::StringRef mapFile; member
H A DDriver.cpp1307 config->mapFile = args.getLastArgValue(OPT_Map); in readConfigs()
1638 config->mapFile = "-"; in readConfigs()
2682 if (auto e = tryCreateFile(config->mapFile)) in link()
2683 error("cannot open map file " + config->mapFile + ": " + e.message()); in link()
/freebsd-14.2/contrib/llvm-project/lld/MachO/
H A DMapFile.cpp159 if (config->mapFile.empty()) in writeMapFile()
166 raw_fd_ostream os(config->mapFile, ec, sys::fs::OF_None); in writeMapFile()
168 error("cannot open " + config->mapFile + ": " + ec.message()); in writeMapFile()
H A DConfig.h165 llvm::StringRef mapFile; member
H A DDriver.cpp1575 config->mapFile = args.getLastArgValue(OPT_map); in link()
/freebsd-14.2/contrib/llvm-project/lld/COFF/
H A DMapFile.cpp204 if (ctx.config.mapFile.empty()) in writeMapFile()
209 raw_fd_ostream os(ctx.config.mapFile, ec, sys::fs::OF_None); in writeMapFile()
211 fatal("cannot open " + ctx.config.mapFile + ": " + ec.message()); in writeMapFile()
H A DConfig.h232 std::string mapFile; member
H A DDriver.cpp2309 config->mapFile = getMapFile(args, OPT_map, OPT_map_file); in linkerMain()
2311 if (config->mapFile != "" && args.hasArg(OPT_map_info)) { in linkerMain()
2321 if (config->lldmapFile != "" && config->lldmapFile == config->mapFile) { in linkerMain()
2322 warn("/lldmap and /map have the same output file '" + config->mapFile + in linkerMain()