/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | AnalysisOrderChecker.cpp | 63 llvm::errs() << "PreStmt<CastExpr> (Kind : " << CE->getCastKindName() in checkPreStmt() 69 llvm::errs() << "PostStmt<CastExpr> (Kind : " << CE->getCastKindName() in checkPostStmt() 76 llvm::errs() << "PreStmt<ArraySubscriptExpr>\n"; in checkPreStmt() 82 llvm::errs() << "PostStmt<ArraySubscriptExpr>\n"; in checkPostStmt() 87 llvm::errs() << "PreStmt<CXXNewExpr>\n"; in checkPreStmt() 92 llvm::errs() << "PostStmt<CXXNewExpr>\n"; in checkPostStmt() 97 llvm::errs() << "PreStmt<CXXDeleteExpr>\n"; in checkPreStmt() 102 llvm::errs() << "PostStmt<CXXDeleteExpr>\n"; in checkPostStmt() 107 llvm::errs() << "PreStmt<CXXConstructExpr>\n"; in checkPreStmt() 112 llvm::errs() << "PostStmt<CXXConstructExpr>\n"; in checkPostStmt() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | VPlanVerifier.cpp | 75 errs() << "Found non-header PHI recipe in header VPBB"; in verifyPhiRecipes() 77 errs() << ": "; in verifyPhiRecipes() 84 errs() << "Found header PHI recipe in non-header VPBB"; in verifyPhiRecipes() 86 errs() << ": "; in verifyPhiRecipes() 96 errs() << "There should be no more than one VPActiveLaneMaskPHIRecipe"; in verifyPhiRecipes() 102 errs() << "Found phi-like recipe after non-phi recipe"; in verifyPhiRecipes() 105 errs() << ": "; in verifyPhiRecipes() 107 errs() << "after\n"; in verifyPhiRecipes() 141 errs() << "Use before def!\n"; in verifyVPBasicBlock() 148 errs() << "Use before def!\n"; in verifyVPBasicBlock() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ModuleFile.cpp | 40 llvm::errs() << " " << Name << ":\n"; in dumpLocalRemap() 43 llvm::errs() << " " << I->first << " -> " << I->second << "\n"; in dumpLocalRemap() 48 llvm::errs() << "\nModule: " << FileName << "\n"; in dump() 50 llvm::errs() << " Imports: "; in dump() 53 llvm::errs() << ", "; in dump() 54 llvm::errs() << Imports[I]->FileName; in dump() 56 llvm::errs() << "\n"; in dump() 60 llvm::errs() << " Base source location offset: " << SLocEntryBaseOffset in dump() 63 llvm::errs() << " Base identifier ID: " << BaseIdentifierID << '\n' in dump() 66 llvm::errs() << " Base macro ID: " << BaseMacroID << '\n' in dump() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | AliasAnalysisEvaluator.cpp | 57 errs() << " " << AR << ":\t"; in PrintResults() 58 Ty1->print(errs(), false, /* NoDetails */ true); in PrintResults() 60 errs() << " addrspace(" << AS1 << ")"; in PrintResults() 61 errs() << "* " << o1 << ", "; in PrintResults() 62 Ty2->print(errs(), false, /* NoDetails */ true); in PrintResults() 64 errs() << " addrspace(" << AS2 << ")"; in PrintResults() 65 errs() << "* " << o2 << "\n"; in PrintResults() 73 errs() << " " << Msg << ": Ptr: "; in PrintModRefResults() 74 Loc.second->print(errs(), false, /* NoDetails */ true); in PrintModRefResults() 75 errs() << "* "; in PrintModRefResults() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | DAGDeltaAlgorithm.cpp | 222 llvm::errs() << "-- DAGDeltaAlgorithmImpl --\n"; in DAGDeltaAlgorithmImpl() 223 llvm::errs() << "Changes: ["; in DAGDeltaAlgorithmImpl() 227 llvm::errs() << ", "; in DAGDeltaAlgorithmImpl() 228 llvm::errs() << *it; in DAGDeltaAlgorithmImpl() 231 llvm::errs() << "("; in DAGDeltaAlgorithmImpl() 235 llvm::errs() << ", "; in DAGDeltaAlgorithmImpl() 236 llvm::errs() << "->" << *it2; in DAGDeltaAlgorithmImpl() 238 llvm::errs() << ")"; in DAGDeltaAlgorithmImpl() 241 llvm::errs() << "]\n"; in DAGDeltaAlgorithmImpl() 243 llvm::errs() << "Roots: ["; in DAGDeltaAlgorithmImpl() [all …]
|
H A D | GraphWriter.cpp | 128 errs() << "Error: " << EC.message() << "\n"; in createGraphFilename() 132 errs() << "Writing '" << Filename << "'... "; in createGraphFilename() 142 errs() << "Error: " << ErrMsg << "\n"; in ExecGraphViewer() 146 errs() << " done. \n"; in ExecGraphViewer() 149 errs() << "Remember to erase graph file: " << Filename << "\n"; in ExecGraphViewer() 207 errs() << "Trying 'open' program... "; in DisplayGraph() 216 errs() << "Trying 'xdg-open' program... "; in DisplayGraph() 227 errs() << "Running 'Graphviz' program... "; in DisplayGraph() 240 errs() << "Running 'xdot.py' program... "; in DisplayGraph() 286 errs() << "Running '" << GeneratorPath << "' program... "; in DisplayGraph() [all …]
|
/freebsd/usr.bin/top/ |
H A D | commands.c | 37 struct errs /* structure for a system-call error */ struct 188 static struct errs errs[ERRMAX]; variable 202 errs[errcnt].arg = (p); \ 203 errs[errcnt++].errnum = (e); \ 218 struct errs *errp; in err_string() 232 qsort((char *)errs, errcnt, sizeof(struct errs), err_compar); in err_string() 242 errp = &(errs[cnt++]); in err_string() 329 const struct errs * const g1 = (const struct errs * const)p1; in err_compar() 330 const struct errs * const g2 = (const struct errs * const)p2; in err_compar() 359 struct errs *errp = errs; in show_errors()
|
/freebsd/contrib/llvm-project/llvm/lib/FuzzMutate/ |
H A D | FuzzerCLI.cpp | 51 errs() << ExecName << ": Unknown option: " << Opt << ".\n"; in handleExecNameEncodedBEOpts() 55 errs() << NameAndArgs.first << ": Injected args:"; in handleExecNameEncodedBEOpts() 57 errs() << " " << Args[I]; in handleExecNameEncodedBEOpts() 58 errs() << "\n"; in handleExecNameEncodedBEOpts() 124 errs() << ExecName << ": Unknown option: " << Opt << ".\n"; in handleExecNameEncodedOptimizerOpts() 129 errs() << NameAndArgs.first << ": Injected args:"; in handleExecNameEncodedOptimizerOpts() 131 errs() << " " << Args[I]; in handleExecNameEncodedOptimizerOpts() 132 errs() << "\n"; in handleExecNameEncodedOptimizerOpts() 144 errs() << "*** This tool was not linked to libFuzzer.\n" in runFuzzerOnInputs() 147 errs() << "Initialization failed\n"; in runFuzzerOnInputs() [all …]
|
/freebsd/sys/dev/bnxt/bnxt_re/ |
H A D | stats.c | 387 &rdev->stats.dstat.errs, in bnxt_re_get_device_stats() 624 struct bnxt_qplib_roce_stats *errs; in bnxt_re_get_hw_stats() local 641 errs = &rdev->stats.dstat.errs; in bnxt_re_get_hw_stats() 696 stats->value[BNXT_RE_MAX_RETRY_EXCEEDED] = errs->max_retry_exceeded; in bnxt_re_get_hw_stats() 706 stats->value[BNXT_RE_TO_RETRANSMITS] = errs->to_retransmits; in bnxt_re_get_hw_stats() 707 stats->value[BNXT_RE_SEQ_ERR_NAKS_RCVD] = errs->seq_err_naks_rcvd; in bnxt_re_get_hw_stats() 708 stats->value[BNXT_RE_RNR_NAKS_RCVD] = errs->rnr_naks_rcvd; in bnxt_re_get_hw_stats() 709 stats->value[BNXT_RE_MISSING_RESP] = errs->missing_resp; in bnxt_re_get_hw_stats() 710 stats->value[BNXT_RE_DUP_REQS] = errs->dup_req; in bnxt_re_get_hw_stats() 713 stats->value[BNXT_RE_UNRECOVERABLE_ERR] = errs->unrecoverable_err; in bnxt_re_get_hw_stats() [all …]
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-link/ |
H A D | llvm-link.cpp | 155 errs() << "Loading '" << Buffer->getBufferIdentifier() << "'\n"; in loadFile() 164 Err.print(argv0, errs()); in loadFile() 182 errs() << "Reading library archive file '" << ArchiveName in loadArFile() 196 errs() << Argv0 << ": "; in loadArFile() 203 errs() << "Parsing member '" << ChildName in loadArFile() 208 errs() << Argv0 << ": "; in loadArFile() 221 errs() << Argv0 << ": "; in loadArFile() 235 errs() << Argv0 << ": "; in loadArFile() 242 errs() << "Linking member '" << ChildName << "' of archive library.\n"; in loadArFile() 312 DiagnosticPrinterRawOStream DP(errs()); in handleDiagnostics() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | MachineFunctionPass.cpp | 53 errs() << "MachineFunctionProperties required by " << getPassName() in runOnFunction() 56 RequiredProperties.print(errs()); in runOnFunction() 57 errs() << "\nCurrent properties: "; in runOnFunction() 58 MFProps.print(errs()); in runOnFunction() 59 errs() << "\n"; in runOnFunction() 129 errs() << ("*** IR Dump After " + getPassName() + " (" + PassID + in runOnFunction() 138 errs() << AfterStr; in runOnFunction() 150 errs() << doSystemDiff(BeforeStr, AfterStr, Removed, Added, NoChange); in runOnFunction() 160 errs() << "*** IR Dump After " << getPassName(); in runOnFunction() 162 errs() << " (" << PassID << ")"; in runOnFunction() [all …]
|
H A D | MachineCheckDebugify.cpp | 35 errs() << "WARNING: Please run mir-debugify to generate " in runOnModule() 71 errs() << "WARNING: Instruction with empty DebugLoc in function "; in runOnModule() 72 errs() << F.getName() << " --"; in runOnModule() 73 MI.print(errs()); in runOnModule() 94 errs() << "WARNING: Missing line " << Idx + 1 << "\n"; in runOnModule() 99 errs() << "WARNING: Missing variable " << Idx + 1 << "\n"; in runOnModule() 102 errs() << "Machine IR debug info check: "; in runOnModule() 103 errs() << (Fail ? "FAIL" : "PASS") << "\n"; in runOnModule()
|
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/ |
H A D | DWARFLinkerCompileUnit.cpp |
|
/freebsd/crypto/openssl/apps/ |
H A D | rehash.c | 242 int type, errs = 0; in do_file() local 259 errs++; in do_file() 281 ++errs; in do_file() 289 ++errs; in do_file() 293 ++errs; in do_file() 304 errs += add_entry(type, hash_value, filename, digest, 1, ~0); in do_file() 308 errs++; in do_file() 312 errs += add_entry(type, X509_NAME_hash_old(name), in do_file() 318 return errs; in do_file() 355 int n, numfiles, nextid, dirlen, buflen, errs = 0; in do_dir() local [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/MCTargetDesc/ |
H A D | LoongArchBaseInfo.cpp | 49 errs() << "warning: '" << ABIName << "' has not been standardized\n"; in checkABIStandardized() 100 errs() in computeTargetABI() 116 errs() << "warning: the '" << ABIName in computeTargetABI() 124 errs() << "warning: 32-bit ABIs are not supported for 64-bit targets, " in computeTargetABI() 133 errs() << "warning: 64-bit ABIs are not supported for 32-bit targets, " in computeTargetABI() 143 errs() << "warning: the '" << ABIName in computeTargetABI() 149 errs() << "warning: the '" << ABIName in computeTargetABI() 168 errs() << "warning: the triple-implied ABI is invalid, ignoring and using " in computeTargetABI() 171 errs() << "warning: both target-abi and the triple-implied ABI are " in computeTargetABI()
|
/freebsd/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-lib/ |
H A D | LibDriver.cpp | 102 llvm::errs() << "cannot open file " << Path << ": " << EC.message() << "\n"; in openFile() 123 llvm::errs() << "error opening '" << File << "': " << EIB.message() << '\n'; in fatalOpenError() 227 llvm::errs() << MB.getBufferIdentifier() in appendFile() 246 llvm::errs() << MB.getBufferIdentifier() << ": " << EIB.message() in appendFile() 273 llvm::errs() << MB.getBufferIdentifier() << ": " in appendFile() 287 llvm::errs() << MB.getBufferIdentifier() << ": file machine type " in appendFile() 298 llvm::errs() << MB.getBufferIdentifier() << ": file machine type " in appendFile() 325 llvm::errs() << "missing arg value for \"" in libDriverMain() 332 llvm::errs() << "ignoring unknown argument: " << Arg->getAsString(Args) in libDriverMain() 357 llvm::errs() << "unknown /machine: arg " << Arg->getValue() << '\n'; in libDriverMain() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCSubtargetInfo.cpp | 82 errs() << "'" << Feature << "' is not a recognized feature for this target" in ApplyFeatureFlag() 111 errs() << "Available CPUs for this target:\n\n"; in Help() 113 errs() << format(" %-*s - Select the %s processor.\n", MaxCPULen, CPU.Key, in Help() 115 errs() << '\n'; in Help() 118 errs() << "Available features for this target:\n\n"; in Help() 120 errs() << format(" %-*s - %s.\n", MaxFeatLen, Feature.Key, Feature.Desc); in Help() 121 errs() << '\n'; in Help() 123 errs() << "Use +feature to enable a feature, or -feature to disable it.\n" in Help() 139 errs() << "Available CPUs for this target:\n\n"; in cpuHelp() 141 errs() << "\t" << CPU.Key << "\n"; in cpuHelp() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ASTDumper.cpp | 180 llvm::errs() << msg << ": "; in dump() 185 ASTDumper Dumper(llvm::errs(), /*ShowColors=*/false); in dump() 207 ASTDumper(llvm::errs(), /*ShowColors=*/false).Visit(*this); in dump() 219 LLVM_DUMP_METHOD void Decl::dump() const { dump(llvm::errs()); } in dump() 240 ASTDumper P(llvm::errs(), Ctx, /*ShowColors=*/true); in dumpColor() 262 ASTDumper P = Ctx ? ASTDumper(llvm::errs(), *Ctx, in dumpAsDecl() 264 : ASTDumper(llvm::errs(), /*ShowColors*/ false); in dumpAsDecl() 270 dumpLookups(llvm::errs()); in dumpLookups() 290 ASTDumper P(llvm::errs(), /*ShowColors=*/false); in dump() 301 ASTDumper P(llvm::errs(), /*ShowColors=*/true); in dumpColor() [all …]
|
/freebsd/contrib/llvm-project/llvm/tools/bugpoint/ |
H A D | OptimizerDriver.cpp | 97 errs() << "Error opening file '" << Filename << "' for writing!\n"; in EmitProgressBitcode() 140 errs() << getToolName() in runPasses() 150 errs() << getToolName() in runPasses() 161 errs() << "Error writing bitcode file: " << Temp->TmpName << "\n"; in runPasses() 172 errs() << Path.getError().message() << "\n"; in runPasses() 175 errs() << "Cannot find `opt' in PATH!\n"; in runPasses() 179 errs() << "Specified `opt' binary does not exist: " << tool << "\n"; in runPasses() 188 errs() << Path.getError().message() << "\n"; in runPasses() 192 errs() << "Cannot find `valgrind' in PATH!\n"; in runPasses() 230 LLVM_DEBUG(errs() << "\nAbou in runPasses() [all...] |
/freebsd/usr.bin/renice/ |
H A D | renice.c | 59 int errs = 0, prio = 0, who = 0, which = PRIO_PROCESS; in main() local 100 errs++; in main() 104 errs++; in main() 109 errs++; in main() 114 errs++; in main() 118 errs += donice(which, who, prio, incr); in main() 122 exit(errs != 0); in main()
|
/freebsd/contrib/llvm-project/llvm/tools/opt/ |
H A D | optdriver.cpp | 307 errs() << SE.getMessage() << "\n"; in ~TimeTracerRAII() 480 errs() << "The `opt -passname` syntax for the new pass manager is " in optMain() 483 errs() << "See https://llvm.org/docs/NewPassManager.html#invoking-opt " in optMain() 489 errs() << argv[0] << ": " << PassPlugins.ArgStr in optMain() 515 errs() << toString(std::move(E)) << '\n'; in optMain() 546 errs() << argv[0] << ": warning: failed to infer data layout: " in optMain() 562 Err.print(argv[0], errs()); in optMain() 585 if (!NoVerify && verifyModule(*M, &errs())) { in optMain() 586 errs() << argv[0] << ": " << InputFilename in optMain() 609 errs() << "WARNING: The -o (output filename) option is ignored when\n" in optMain() [all …]
|
/freebsd/tools/pkgbase/ |
H A D | metalog_reader.lua | 389 local warn, errs = {}, {} 403 errs[#errs+1] = 'error: ' .. dupmsg .. '\n' 407 errs[#errs+1] = 'error: '..filename 412 errs[#errs+1] = '\n' 416 return table.concat(warn, ''), table.concat(errs, '') 444 local warn, errs = {}, {} 453 errs[#errs+1] = 'error: ' 459 errs[#errs+1] = '\n' 471 return table.concat(warn, ''), table.concat(errs, '') 522 errs = serrs,
|
/freebsd/contrib/llvm-project/clang/tools/clang-format/ |
H A D | ClangFormat.cpp | 251 errs() << "error: cannot use -lines with -offset/-length\n"; in fillRanges() 258 errs() << "error: invalid <start line>:<end line> pair\n"; in fillRanges() 262 errs() << "error: start line should be at least 1\n"; in fillRanges() 266 errs() << "error: start line should not exceed end line\n"; in fillRanges() 284 errs() << "error: number of -offset and -length arguments must match.\n"; in fillRanges() 289 errs() << "error: offset " << Offsets[i] << " is outside the file\n"; in fillRanges() 297 errs() << "error: invalid length " << Lengths[i] in fillRanges() 371 Diag.print(nullptr, llvm::errs(), (ShowColors && !NoShowColors)); in emitReplacementWarnings() 407 errs() << "clang-format error:" << vec << "\n"; in HandleDiagnostic() 415 errs() << "error: cannot use -i when reading from stdin.\n"; in format() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
H A D | MipsSubtarget.cpp | 97 errs() << "warning: MIPS-I support is experimental\n"; in MipsSubtarget() 165 errs() << "warning: cannot use small-data accesses for '-mabicalls'" in MipsSubtarget() 172 errs() << "warning: the 'dspr2' ASE requires MIPS64 revision 2 or " in MipsSubtarget() 176 errs() << "warning: the 'dspr2' ASE requires MIPS32 revision 2 or " in MipsSubtarget() 182 errs() << "warning: the 'dsp' ASE requires MIPS64 revision 2 or " in MipsSubtarget() 186 errs() << "warning: the 'dsp' ASE requires MIPS32 revision 2 or " in MipsSubtarget() 195 errs() << "warning: the 'msa' ASE requires " << ArchName in MipsSubtarget() 200 errs() << "warning: the 'virt' ASE requires " << ArchName in MipsSubtarget() 205 errs() << "warning: the 'crc' ASE requires " << ArchName in MipsSubtarget() 210 errs() << "warning: the 'ginv' ASE requires " << ArchName in MipsSubtarget()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | GenericDomTreeConstruction.h | 1209 errs() << "Tree has no parent but has roots!\n"; in verifyRoots() 1210 errs().flush(); in verifyRoots() 1216 errs() << "Tree doesn't have a root!\n"; in verifyRoots() 1217 errs().flush(); in verifyRoots() 1222 errs() << "Tree's root is not its parent's entry node!\n"; in verifyRoots() 1223 errs().flush(); in verifyRoots() 1230 errs() << "Tree has different roots than freshly computed ones!\n"; in verifyRoots() 1231 errs() << "\tPDT roots: "; in verifyRoots() 1232 for (const NodePtr N : DT.Roots) errs() << BlockNamePrinter(N) << ", "; in verifyRoots() 1233 errs() << "\n\tComputed roots: "; in verifyRoots() [all …]
|