Searched refs:mapFile (Results 1 – 12 of 12) sorted by relevance
/openbsd-src/gnu/llvm/lld/ELF/ |
H A D | MapFile.cpp | 258 if (config->mapFile.empty() && !config->cref) in writeMapAndCref() 265 StringRef mapFile = config->mapFile.empty() ? "-" : config->mapFile; in writeMapAndCref() local 266 raw_fd_ostream os(mapFile, ec, sys::fs::OF_None); in writeMapAndCref() 268 error("cannot open " + mapFile + ": " + ec.message()); in writeMapAndCref() 272 if (!config->mapFile.empty()) in writeMapAndCref()
|
H A D | Config.h | 154 llvm::StringRef mapFile; member
|
H A D | Driver.cpp | 1167 config->mapFile = args.getLastArgValue(OPT_Map); in readConfigs() 1465 config->mapFile = "-"; in readConfigs() 2555 if (auto e = tryCreateFile(config->mapFile)) in link() 2556 error("cannot open map file " + config->mapFile + ": " + e.message()); in link()
|
/openbsd-src/gnu/llvm/lld/wasm/ |
H A D | MapFile.cpp | 106 if (config->mapFile.empty()) in writeMapFile() 111 raw_fd_ostream os(config->mapFile, ec, sys::fs::OF_None); in writeMapFile() 113 error("cannot open " + config->mapFile + ": " + ec.message()); in writeMapFile()
|
H A D | Config.h | 75 llvm::StringRef mapFile; member
|
H A D | Driver.cpp | 435 config->mapFile = args.getLastArgValue(OPT_Map); in readConfigs() 520 config->mapFile = "-"; in readConfigs() 1090 if (auto e = tryCreateFile(config->mapFile)) in linkerMain() 1091 error("cannot open map file " + config->mapFile + ": " + e.message()); in linkerMain()
|
/openbsd-src/gnu/llvm/lld/MachO/ |
H A D | MapFile.cpp | 150 if (config->mapFile.empty()) in writeMapFile() 157 raw_fd_ostream os(config->mapFile, ec, sys::fs::OF_None); in writeMapFile() 159 error("cannot open " + config->mapFile + ": " + ec.message()); in writeMapFile()
|
H A D | Config.h | 163 llvm::StringRef mapFile; member
|
H A D | Driver.cpp | 1523 config->mapFile = args.getLastArgValue(OPT_map); in link()
|
/openbsd-src/gnu/llvm/lld/COFF/ |
H A D | MapFile.cpp | 203 if (ctx.config.mapFile.empty()) in writeMapFile() 207 raw_fd_ostream os(ctx.config.mapFile, ec, sys::fs::OF_None); in writeMapFile() 209 fatal("cannot open " + ctx.config.mapFile + ": " + ec.message()); in writeMapFile()
|
H A D | Config.h | 211 std::string mapFile; member
|
H A D | Driver.cpp | 2148 config->mapFile = getMapFile(args, OPT_map, OPT_map_file); in linkerMain() 2150 if (config->mapFile != "" && args.hasArg(OPT_map_info)) { in linkerMain() 2160 if (config->lldmapFile != "" && config->lldmapFile == config->mapFile) { in linkerMain() 2161 warn("/lldmap and /map have the same output file '" + config->mapFile + in linkerMain()
|