Searched refs:errs (Results 51 - 75 of 637) sorted by relevance

1234567891011>>

/openbsd-current/gnu/llvm/llvm/tools/llvm-jitlink/llvm-jitlink-executor/
H A Dllvm-jitlink-executor.cpp41 errs() << (void *)&llvm_orc_registerEHFrameSectionWrapper
54 errs() << "error: " << ErrMsg.str() << "\n\n"
76 errs() << "Error setting up bind address: " << gai_strerror(EC) << "\n";
83 errs() << "Error creating socket: " << std::strerror(errno) << "\n";
90 errs() << "Error calling setsockopt: " << std::strerror(errno) << "\n";
96 errs() << "Error on binding: " << std::strerror(errno) << "\n";
179 errs() << argv[0]
/openbsd-current/gnu/llvm/llvm/include/llvm/ADT/
H A DGenericCycleImpl.h191 LLVM_DEBUG(errs() << "Entry block: " << Info.Context.print(EntryBlock)
210 LLVM_DEBUG(errs() << "Found cycle for header: "
221 LLVM_DEBUG(errs() << " block " << Info.Context.print(Block) << ": ");
234 LLVM_DEBUG(errs() << "append as entry\n");
237 LLVM_DEBUG(errs() << "append as child\n");
250 LLVM_DEBUG(errs() << " block " << Info.Context.print(Block) << ": ");
253 LLVM_DEBUG(errs()
262 LLVM_DEBUG(errs()
280 LLVM_DEBUG(errs() << "top-level cycle: "
307 LLVM_DEBUG(errs() << "DF
[all...]
/openbsd-current/regress/lib/libutil/fmt_scaled/
H A Dfmt_test.c122 unsigned int i, e, errs = 0; local
138 errs += assert_int(i, 1, ret, ddata[i].err == 0 ? 0 : -1);
140 errs += assert_errno(i, 2, ddata[i].err, e);
142 errs += assert_str(i, 3, ddata[i].expect, buf);
145 return errs;
246 unsigned int i, errs = 0, e; local
289 errs += assert_int(i, 1, ret, sdata[i].err == 0 ? 0 : -1);
291 errs += assert_errno(i, 2, sdata[i].err, e);
293 errs += assert_llong(i, 3, sdata[i].result, result);
295 return errs;
[all...]
/openbsd-current/gnu/llvm/llvm/lib/Target/Mips/
H A DMipsSubtarget.cpp97 errs() << "warning: MIPS-I support is experimental\n";
166 errs() << "warning: cannot use small-data accesses for '-mabicalls'"
173 errs() << "warning: the 'dspr2' ASE requires MIPS64 revision 2 or "
177 errs() << "warning: the 'dspr2' ASE requires MIPS32 revision 2 or "
183 errs() << "warning: the 'dsp' ASE requires MIPS64 revision 2 or "
187 errs() << "warning: the 'dsp' ASE requires MIPS32 revision 2 or "
196 errs() << "warning: the 'msa' ASE requires " << ArchName
201 errs() << "warning: the 'virt' ASE requires " << ArchName
206 errs() << "warning: the 'crc' ASE requires " << ArchName
211 errs() << "warnin
[all...]
H A DMipsModuleISelDAGToDAG.cpp48 LLVM_DEBUG(errs() << "In MipsModuleDAGToDAGISel::runMachineFunction\n");
/openbsd-current/gnu/llvm/llvm/lib/Support/
H A DGraphWriter.cpp126 errs() << "Error: " << EC.message() << "\n";
130 errs() << "Writing '" << Filename << "'... ";
140 errs() << "Error: " << ErrMsg << "\n";
144 errs() << " done. \n";
147 errs() << "Remember to erase graph file: " << Filename << "\n";
205 errs() << "Trying 'open' program... ";
214 errs() << "Trying 'xdg-open' program... ";
225 errs() << "Running 'Graphviz' program... ";
238 errs() << "Running 'xdot.py' program... ";
284 errs() << "Runnin
[all...]
/openbsd-current/gnu/llvm/clang/tools/clang-refactor/
H A DTestSupport.cpp49 llvm::errs() << "error: -selection=test:" << Filename
97 llvm::errs() << "failed to open" << File << "\n";
103 llvm::errs() << toString(Result.takeError());
222 llvm::errs()
227 llvm::errs() << "valid result";
229 llvm::errs() << "error '" << ErrorMessage << "'";
230 llvm::errs() << " does not match initial ";
232 llvm::errs() << "error '" << *CanonicalErrorMessage << "'\n";
234 llvm::errs() << "valid result\n";
236 llvm::errs() << " Expecte
[all...]
/openbsd-current/gnu/llvm/llvm/tools/opt/
H A Dopt.cpp326 errs() << SE.getMessage() << "\n";
473 errs() << "Failed to load passes from '" << PluginPath
496 errs() << "The `opt -passname` syntax for the new pass manager is "
499 errs() << "See https://llvm.org/docs/NewPassManager.html#invoking-opt "
505 errs() << argv[0] << ": " << PassPlugins.ArgStr
531 errs() << toString(std::move(E)) << '\n';
552 Err.print(argv[0], errs());
575 if (!NoVerify && verifyModule(*M, &errs())) {
576 errs() << argv[0] << ": " << InputFilename
594 errs() << "WARNIN
[all...]
/openbsd-current/gnu/llvm/llvm/tools/llvm-as/
H A Dllvm-as.cpp87 errs() << EC.message() << '\n';
139 Err.print(argv[0], errs());
148 errs() << argv[0]
150 errs() << OS.str();
157 errs() << "Here's the assembly:\n" << *M.get();
159 Index->print(errs());
/openbsd-current/gnu/llvm/llvm/tools/llvm-reduce/
H A DTestRunner.cpp55 WithColor::error(errs(), ToolName) << toString(std::move(E)) << '\n';
68 errs() << "Error opening output file: " << EC.message() << "!\n";
73 errs() << Message << OutputFilename << '\n';
/openbsd-current/gnu/llvm/llvm/tools/llvm-reduce/deltas/
H A DDelta.h38 errs() << '[' << Begin;
40 errs() << ',' << End;
41 errs() << ']';
/openbsd-current/gnu/llvm/clang/examples/PrintFunctionNames/
H A DPrintFunctionNames.cpp38 llvm::errs() << "top-level-decl: \"" << ND->getNameAsString() << "\"\n";
74 llvm::errs() << "late-parsed-decl: \"" << FD->getNameAsString() << "\"\n";
90 llvm::errs() << "PrintFunctionNames arg = " << args[i] << "\n";
110 PrintHelp(llvm::errs());
/openbsd-current/gnu/llvm/clang/lib/Tooling/
H A DRefactoring.cpp43 TextDiagnosticPrinter DiagnosticPrinter(llvm::errs(), &*DiagOpts);
51 llvm::errs() << "Skipped some replacements.\n";
90 llvm::errs() << llvm::toString(CurStyle.takeError()) << "\n";
97 llvm::errs() << llvm::toString(NewReplacements.takeError()) << "\n";
H A DRefactoringCallbacks.cpp56 llvm::errs() << "Skipping replacement " << Replacement.toString()
97 llvm::errs() << llvm::toString(std::move(Err)) << "\n";
116 llvm::errs() << llvm::toString(std::move(Err)) << "\n";
136 llvm::errs() << llvm::toString(std::move(Err)) << "\n";
147 llvm::errs() << llvm::toString(std::move(Err)) << "\n";
211 llvm::errs() << "Node " << Element.Value
224 llvm::errs() << "Node to be replaced " << FromId
233 llvm::errs() << "Query and replace failed in " << Replacement.getFilePath()
/openbsd-current/gnu/llvm/llvm/utils/TableGen/GlobalISel/
H A DGIMatchDagPredicate.h79 virtual LLVM_DUMP_METHOD void dump() const { print(errs()); }
99 LLVM_DUMP_METHOD void dump() const override { print(errs()); }
122 LLVM_DUMP_METHOD void dump() const override { print(errs()); }
137 LLVM_DUMP_METHOD void dump() const override { print(errs()); }
H A DGIMatchDagEdge.cpp33 LLVM_DUMP_METHOD void GIMatchDagEdge::dump() const { print(errs()); }
/openbsd-current/gnu/llvm/llvm/tools/llvm-as-fuzzer/
H A Dllvm-as-fuzzer.cpp73 if (verifyModule(*M.get(), &errs()))
/openbsd-current/gnu/llvm/llvm/tools/bugpoint/
H A DBugDriver.cpp37 errs() << "Failed to keep temp file " << toString(std::move(E)) << '\n';
41 errs() << "Failed to delete temp file " << toString(std::move(E)) << '\n';
97 Err.print("bugpoint", errs());
101 if (verifyModule(*Result, &errs())) {
102 errs() << "bugpoint: " << Filename << ": error: input module is broken!\n";
202 errs() << toString(std::move(E));
219 errs() << toString(std::move(E));
225 errs() << toString(std::move(E));
234 errs() << toString(std::move(E));
/openbsd-current/gnu/llvm/clang/tools/clang-format/
H A DClangFormat.cpp240 errs() << "error: cannot use -lines with -offset/-length\n";
247 errs() << "error: invalid <start line>:<end line> pair\n";
251 errs() << "error: start line should be at least 1\n";
255 errs() << "error: start line should not exceed end line\n";
273 errs() << "error: number of -offset and -length arguments must match.\n";
278 errs() << "error: offset " << Offsets[i] << " is outside the file\n";
286 errs() << "error: invalid length " << Lengths[i]
360 Diag.print(nullptr, llvm::errs(), (ShowColors && !NoShowColors));
396 errs() << "clang-format error:" << vec << "\n";
403 errs() << "erro
[all...]
/openbsd-current/gnu/llvm/llvm/lib/ToolDrivers/llvm-lib/
H A DLibDriver.cpp108 llvm::errs() << "error opening '" << File << "': " << EIB.message() << '\n';
191 llvm::errs() << MB.getBufferIdentifier()
210 llvm::errs() << MB.getBufferIdentifier() << ": " << EIB.message()
237 llvm::errs() << MB.getBufferIdentifier() << ": "
255 llvm::errs() << MB.getBufferIdentifier() << ": file machine type "
282 llvm::errs() << "missing arg value for \""
289 llvm::errs() << "ignoring unknown argument: " << Arg->getAsString(Args)
307 llvm::errs() << "warning: no input files, not writing output file\n";
308 llvm::errs() << " pass /llvmlibempty to write empty .lib file,\n";
309 llvm::errs() << " pas
[all...]
/openbsd-current/gnu/usr.bin/binutils/gdb/testsuite/gdb.stabs/
H A DMakefile.in10 -rm -f *.o *~ core tmp.c tmp.s weird.s errs
/openbsd-current/etc/
H A Dsyslog.conf11 lpr.debug /var/log/lpd-errs
H A Dnewsyslog.conf9 /var/log/lpd-errs 640 7 10 * Z
/openbsd-current/gnu/llvm/clang/tools/apinotes-test/
H A DAPINotesTest.cpp31 llvm::WithColor::error(llvm::errs(), "apinotes-test") << Msg << '\n';
46 llvm::errs() << EC.message() << '\n';
/openbsd-current/gnu/llvm/clang/tools/clang-rename/
H A DClangRename.cpp104 llvm::errs() << ExpectedParser.takeError();
114 errs() << "clang-rename: failed to read " << Input << ": "
133 errs() << "clang-rename: -new-name must be specified.\n\n";
138 errs() << "clang-rename: -offset and -qualified-name can't be present at "
151 errs() << "ERROR: new name is not a valid identifier in C++17.\n\n";
157 errs() << "clang-rename: number of symbol offsets(" << SymbolOffsets.size()
199 llvm::errs() << "Error opening output file: " << EC.message() << '\n';
221 TextDiagnosticPrinter DiagnosticPrinter(errs(), &*DiagOpts);

Completed in 289 milliseconds

1234567891011>>