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

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

Completed in 140 milliseconds