Searched refs:mapFile (Results 1 – 13 of 13) sorted by relevance
| /llvm-project-15.0.7/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 | 124 llvm::StringRef mapFile; member
|
| H A D | Driver.cpp | 1116 config->mapFile = args.getLastArgValue(OPT_Map); in readConfigs() 1405 config->mapFile = "-"; in readConfigs() 2450 if (auto e = tryCreateFile(config->mapFile)) in link() 2451 error("cannot open map file " + config->mapFile + ": " + e.message()); in link()
|
| /llvm-project-15.0.7/lld/wasm/ |
| H A D | MapFile.cpp | 107 if (config->mapFile.empty()) in writeMapFile() 112 raw_fd_ostream os(config->mapFile, ec, sys::fs::OF_None); in writeMapFile() 114 error("cannot open " + config->mapFile + ": " + ec.message()); in writeMapFile()
|
| H A D | Config.h | 68 llvm::StringRef mapFile; member
|
| H A D | Driver.cpp | 372 config->mapFile = args.getLastArgValue(OPT_Map); in readConfigs() 449 config->mapFile = "-"; in readConfigs() 905 if (auto e = tryCreateFile(config->mapFile)) in linkerMain() 906 error("cannot open map file " + config->mapFile + ": " + e.message()); in linkerMain()
|
| /llvm-project-15.0.7/lld/MachO/ |
| H A D | MapFile.cpp | 110 if (config->mapFile.empty()) in writeMapFile() 117 raw_fd_ostream os(config->mapFile, ec, sys::fs::OF_None); in writeMapFile() 119 error("cannot open " + config->mapFile + ": " + ec.message()); in writeMapFile()
|
| H A D | Config.h | 150 llvm::StringRef mapFile; member
|
| H A D | Driver.cpp | 1295 config->mapFile = args.getLastArgValue(OPT_map); in link()
|
| /llvm-project-15.0.7/lld/COFF/ |
| H A D | MapFile.cpp | 202 if (config->mapFile.empty()) in writeMapFile() 206 raw_fd_ostream os(config->mapFile, ec, sys::fs::OF_None); in writeMapFile() 208 fatal("cannot open " + config->mapFile + ": " + ec.message()); in writeMapFile()
|
| H A D | Config.h | 210 std::string mapFile; member
|
| H A D | Driver.cpp | 1920 config->mapFile = getMapFile(args, OPT_map, OPT_map_file); in linkerMain() 1922 if (config->lldmapFile != "" && config->lldmapFile == config->mapFile) { in linkerMain() 1923 warn("/lldmap and /map have the same output file '" + config->mapFile + in linkerMain()
|
| /llvm-project-15.0.7/clang-tools-extra/unittests/include/common/ |
| H A D | VirtualFileHelper.h | 42 void mapFile(llvm::StringRef FileName, llvm::StringRef Code) { in mapFile() function
|