Home
last modified time | relevance | path

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

/freebsd/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.h174 llvm::StringRef mapFile; member
H A DDriver.cpp1352 config->mapFile = args.getLastArgValue(OPT_Map); in readConfigs()
1716 config->mapFile = "-"; in readConfigs()
1882 if (auto e = tryCreateFile(config->mapFile)) in setConfigs()
1883 error("cannot open map file " + config->mapFile + ": " + e.message()); in setConfigs()
/freebsd/contrib/llvm-project/lld/MachO/
H A DMapFile.cpp165 if (config->mapFile.empty()) in writeMapFile()
172 raw_fd_ostream os(config->mapFile, ec, sys::fs::OF_None); in writeMapFile()
174 error("cannot open " + config->mapFile + ": " + ec.message()); in writeMapFile()
H A DConfig.h166 llvm::StringRef mapFile; member
H A DDriver.cpp1639 config->mapFile = args.getLastArgValue(OPT_map); in link()
/freebsd/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.cpp2304 config->mapFile = getMapFile(args, OPT_map, OPT_map_file); in linkerMain()
2306 if (config->mapFile != "" && args.hasArg(OPT_map_info)) { in linkerMain()
2316 if (config->lldmapFile != "" && config->lldmapFile == config->mapFile) { in linkerMain()
2317 warn("/lldmap and /map have the same output file '" + config->mapFile + in linkerMain()