Lines Matching refs:argv0
109 static std::unique_ptr<Module> loadFile(const char *argv0, in loadFile() argument
118 Err.print(argv0, errs()); in loadFile()
154 static bool importFunctions(const char *argv0, LLVMContext &Context, in importFunctions() argument
169 std::unique_ptr<Module> M = loadFile(argv0, FileName, Context, false); in importFunctions()
171 errs() << argv0 << ": error loading file '" << FileName << "'\n"; in importFunctions()
176 errs() << argv0 << ": " << FileName in importFunctions()
230 std::unique_ptr<Module> M = loadFile(argv0, SME.getKey(), Context, true); in importFunctions()
232 errs() << argv0 << ": error loading file '" << SME.getKey() << "'\n"; in importFunctions()
237 errs() << argv0 << ": " << SME.getKey() in importFunctions()
249 static bool linkFiles(const char *argv0, LLVMContext &Context, Linker &L, in linkFiles() argument
255 std::unique_ptr<Module> M = loadFile(argv0, File, Context); in linkFiles()
257 errs() << argv0 << ": error loading file '" << File << "'\n"; in linkFiles()
262 errs() << argv0 << ": " << File << ": error: input module is broken!\n"; in linkFiles()