| /openbsd/src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/ |
| 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 …]
|
| /openbsd/src/gnu/llvm/clang/lib/Serialization/ |
| 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() 64 llvm::errs() << " Base identifier ID: " << BaseIdentifierID << '\n' in dump() 68 llvm::errs() << " Base macro ID: " << BaseMacroID << '\n' in dump() [all …]
|
| /openbsd/src/gnu/llvm/llvm/lib/Analysis/ |
| D | AliasAnalysisEvaluator.cpp | 59 errs() << " " << AR << ":\t"; in PrintResults() 60 Ty1->print(errs(), false, /* NoDetails */ true); in PrintResults() 62 errs() << " addrspace(" << AS1 << ")"; in PrintResults() 63 errs() << "* " << o1 << ", "; in PrintResults() 64 Ty2->print(errs(), false, /* NoDetails */ true); in PrintResults() 66 errs() << " addrspace(" << AS2 << ")"; in PrintResults() 67 errs() << "* " << o2 << "\n"; in PrintResults() 75 errs() << " " << Msg << ": Ptr: "; in PrintModRefResults() 76 Loc.second->print(errs(), false, /* NoDetails */ true); in PrintModRefResults() 77 errs() << "* "; in PrintModRefResults() [all …]
|
| /openbsd/src/gnu/llvm/llvm/lib/Transforms/Vectorize/ |
| D | VPlanVerifier.cpp | 150 errs() << "Found non-header PHI recipe in header VPBB"; in verifyPhiRecipes() 152 errs() << ": "; in verifyPhiRecipes() 159 errs() << "Found header PHI recipe in non-header VPBB"; in verifyPhiRecipes() 161 errs() << ": "; in verifyPhiRecipes() 171 errs() << "There should be no more than one VPActiveLaneMaskPHIRecipe"; in verifyPhiRecipes() 177 errs() << "Found phi-like recipe after non-phi recipe"; in verifyPhiRecipes() 180 errs() << ": "; in verifyPhiRecipes() 182 errs() << "after\n"; in verifyPhiRecipes() 216 errs() << "Use before def!\n"; in verifyVPBasicBlock() 234 errs() << "Use before def!\n"; in verifyVPBasicBlock() [all …]
|
| /openbsd/src/gnu/usr.bin/perl/cpan/Sys-Syslog/ |
| D | Syslog.pm | 643 my @errs = (); 649 $connected = &$fn(\@errs) if defined &$fn; 659 $err_sub->(join "\n\t- ", "no connection to syslog available", @errs); 665 my ($errs) = @_; 671 push @$errs, "getservbyname failed for syslog/tcp and syslogng/tcp"; 679 push @$errs, "can't lookup $host"; 688 push @$errs, "tcp socket: $!"; 696 push @$errs, "tcp connect: $!"; 706 my ($errs) = @_; 711 push @$errs, "getservbyname failed for syslog/udp"; [all …]
|
| /openbsd/src/gnu/llvm/llvm/lib/Support/ |
| 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 …]
|
| D | GraphWriter.cpp | 126 errs() << "Error: " << EC.message() << "\n"; in createGraphFilename() 130 errs() << "Writing '" << Filename << "'... "; in createGraphFilename() 140 errs() << "Error: " << ErrMsg << "\n"; in ExecGraphViewer() 144 errs() << " done. \n"; in ExecGraphViewer() 147 errs() << "Remember to erase graph file: " << Filename << "\n"; in ExecGraphViewer() 205 errs() << "Trying 'open' program... "; in DisplayGraph() 214 errs() << "Trying 'xdg-open' program... "; in DisplayGraph() 225 errs() << "Running 'Graphviz' program... "; in DisplayGraph() 238 errs() << "Running 'xdot.py' program... "; in DisplayGraph() 284 errs() << "Running '" << GeneratorPath << "' program... "; in DisplayGraph() [all …]
|
| /openbsd/src/gnu/llvm/llvm/utils/KillTheDoctor/ |
| D | KillTheDoctor.cpp | 305 errs() << ToolName << ": Timeout value too large, must be less than: " in main() 316 errs() << ToolName << ": Failed to find program: '" << CommandLine in main() 322 errs() << ToolName << ": Found Program: " << ProgramToRun << '\n'; in main() 330 errs() << ToolName << ": Program Image Path: " << ProgramToRun << '\n' in main() 355 errs() << ToolName << ": Failed to run program: '" << ProgramToRun << "': " in main() 371 errs() << ToolName << ": Debugging...\n"; in main() 386 errs() << ToolName << ": Failed to get process times: " in main() 399 errs() << ToolName << ": Timeout Failed: Process has been running for" in main() 408 errs() << ToolName << ": Process timed out.\n"; in main() 423 errs() << ToolName << ": Process timed out.\n"; in main() [all …]
|
| /openbsd/src/gnu/llvm/lldb/scripts/ |
| D | reproducer-replay.py | 18 outs, errs = proc.communicate(timeout=TIMEOUT) 23 errs = errs.decode() 25 if 'Encountered unexpected packet during replay' in errs: 27 elif 'Assertion failed' in errs: 29 elif 'UNREACHABLE' in errs: 31 elif 'Segmentation fault' in errs: 33 elif 'Illegal instruction' in errs: 40 outs, errs = proc.communicate() 49 if errs: 50 print(errs)
|
| /openbsd/src/gnu/llvm/clang/tools/libclang/ |
| D | ARCMigrate.cpp | 37 llvm::errs() << "error: feature not enabled in this build\n"; in clang_getRemappings() 44 llvm::errs() << "clang_getRemappings was called with NULL parameter\n"; in clang_getRemappings() 50 llvm::errs() << "Error by clang_getRemappings(\"" << migrate_dir_path in clang_getRemappings() 52 llvm::errs() << "\"" << migrate_dir_path << "\" does not exist\n"; in clang_getRemappings() 64 llvm::errs() << "Error by clang_getRemappings(\"" << migrate_dir_path in clang_getRemappings() 68 llvm::errs() << I->second << '\n'; in clang_getRemappings() 80 llvm::errs() << "error: feature not enabled in this build\n"; in clang_getRemappingsFromFileList() 89 llvm::errs() << "clang_getRemappingsFromFileList was called with " in clang_getRemappingsFromFileList() 96 llvm::errs() << "clang_getRemappingsFromFileList was called with " in clang_getRemappingsFromFileList() 109 llvm::errs() << "Error by clang_getRemappingsFromFileList\n"; in clang_getRemappingsFromFileList() [all …]
|
| /openbsd/src/gnu/llvm/llvm/tools/llvm-reduce/deltas/ |
| D | Delta.cpp | 62 errs() << "Increasing granularity..."; in increaseGranularity() 79 errs() << "Success! " << NewChunks.size() << " New Chunks:\n"; in increaseGranularity() 81 errs() << '\t'; in increaseGranularity() 83 errs() << '\n'; in increaseGranularity() 116 if (Clone->verify(&errs())) { in CheckChunk() 118 errs() << "Invalid reduction, aborting.\n"; in CheckChunk() 119 Clone->print(errs()); in CheckChunk() 123 errs() << " **** WARNING | reduction resulted in invalid module, " in CheckChunk() 130 errs() << "Ignoring: "; in CheckChunk() 134 errs() << "\n"; in CheckChunk() [all …]
|
| /openbsd/src/gnu/llvm/llvm/lib/DWARFLinker/ |
| D | DWARFLinkerCompileUnit.cpp | 17 llvm::errs() << "{\n"; in dump() 18 llvm::errs() << " AddrAdjust: " << AddrAdjust << '\n'; in dump() 19 llvm::errs() << " Ctxt: " << formatv("{0:x}", Ctxt) << '\n'; in dump() 20 llvm::errs() << " Clone: " << formatv("{0:x}", Clone) << '\n'; in dump() 21 llvm::errs() << " ParentIdx: " << ParentIdx << '\n'; in dump() 22 llvm::errs() << " Keep: " << Keep << '\n'; in dump() 23 llvm::errs() << " InDebugMap: " << InDebugMap << '\n'; in dump() 24 llvm::errs() << " Prune: " << Prune << '\n'; in dump() 25 llvm::errs() << " Incomplete: " << Incomplete << '\n'; in dump() 26 llvm::errs() << " InModuleScope: " << InModuleScope << '\n'; in dump() [all …]
|
| /openbsd/src/gnu/llvm/llvm/lib/FuzzMutate/ |
| 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() 114 errs() << ExecName << ": Unknown option: " << Opt << ".\n"; in handleExecNameEncodedOptimizerOpts() 119 errs() << NameAndArgs.first << ": Injected args:"; in handleExecNameEncodedOptimizerOpts() 121 errs() << " " << Args[I]; in handleExecNameEncodedOptimizerOpts() 122 errs() << "\n"; in handleExecNameEncodedOptimizerOpts() 134 errs() << "*** This tool was not linked to libFuzzer.\n" in runFuzzerOnInputs() 137 errs() << "Initialization failed\n"; in runFuzzerOnInputs() [all …]
|
| /openbsd/src/gnu/llvm/llvm/tools/llvm-link/ |
| D | llvm-link.cpp | 143 errs() << "Loading '" << Buffer->getBufferIdentifier() << "'\n"; in loadFile() 152 Err.print(argv0, errs()); in loadFile() 170 errs() << "Reading library archive file '" << ArchiveName in loadArFile() 184 errs() << Argv0 << ": "; in loadArFile() 191 errs() << "Parsing member '" << ChildName in loadArFile() 196 errs() << Argv0 << ": "; in loadArFile() 209 errs() << Argv0 << ": "; in loadArFile() 223 errs() << Argv0 << ": "; in loadArFile() 230 errs() << "Linking member '" << ChildName << "' of archive library.\n"; in loadArFile() 300 DiagnosticPrinterRawOStream DP(errs()); in handleDiagnostics() [all …]
|
| /openbsd/src/usr.bin/top/ |
| D | commands.c | 132 struct errs errs[ERRMAX]; variable 144 free(errs[errcnt].arg); \ 145 if ((errs[errcnt].arg = strdup(p)) == NULL) \ 147 errs[errcnt++].err = (e); \ 163 struct errs *errp; in err_string() 170 qsort(errs, errcnt, sizeof(struct errs), err_compar); in err_string() 178 errp = &(errs[cnt++]); in err_string() 248 const struct errs *p1 = (const struct errs *) e1; in err_compar() 249 const struct errs *p2 = (const struct errs *) e2; in err_compar()
|
| /openbsd/src/gnu/llvm/llvm/lib/CodeGen/ |
| D | MachineFunctionPass.cpp | 52 errs() << "MachineFunctionProperties required by " << getPassName() in runOnFunction() 55 RequiredProperties.print(errs()); in runOnFunction() 56 errs() << "\nCurrent properties: "; in runOnFunction() 57 MFProps.print(errs()); in runOnFunction() 58 errs() << "\n"; in runOnFunction() 127 errs() << ("*** IR Dump After " + getPassName() + " (" + PassID + in runOnFunction() 136 errs() << AfterStr; in runOnFunction() 148 errs() << doSystemDiff(BeforeStr, AfterStr, Removed, Added, NoChange); in runOnFunction() 158 errs() << "*** IR Dump After " << getPassName(); in runOnFunction() 160 errs() << " (" << PassID << ")"; in runOnFunction() [all …]
|
| D | MachineCheckDebugify.cpp | 33 errs() << "WARNING: Please run mir-debugify to generate " in runOnModule() 69 errs() << "WARNING: Instruction with empty DebugLoc in function "; in runOnModule() 70 errs() << F.getName() << " --"; in runOnModule() 71 MI.print(errs()); in runOnModule() 92 errs() << "WARNING: Missing line " << Idx + 1 << "\n"; in runOnModule() 97 errs() << "WARNING: Missing variable " << Idx + 1 << "\n"; in runOnModule() 100 errs() << "Machine IR debug info check: "; in runOnModule() 101 errs() << (Fail ? "FAIL" : "PASS") << "\n"; in runOnModule()
|
| /openbsd/src/gnu/llvm/llvm/lib/MC/ |
| 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 …]
|
| /openbsd/src/gnu/llvm/llvm/tools/llvm-jitlistener/ |
| D | llvm-jitlistener.cpp | 46 errs() << in NotifyEvent() 59 errs() << "A function with a non-zero line count had no line table."; in NotifyEvent() 75 errs() << in NotifyEvent() 95 errs() << "Error: The IttNotify event listener did not provide a module " in ittNotifyInfo() 103 errs() << "Error: The IttNotify event listener did not provide a section " in ittNotifyInfo() 111 errs() << "Error: The IttNotify event listener did not provide a module " in ittNotifyInfo() 120 errs() << "Error: The IttNotify event listener did not provide a section " in ittNotifyInfo() 154 errs() << Err.getMessage(); in InitEE() 160 errs() << "Unable to create memory manager."; in InitEE() 182 errs() << Error; in InitEE()
|
| /openbsd/src/gnu/llvm/clang/tools/arcmt-test/ |
| D | arcmt-test.cpp | 112 new TextDiagnosticPrinter(llvm::errs(), &*DiagOpts); in checkForMigration() 128 llvm::errs() << "error: no input files\n"; in checkForMigration() 156 new TextDiagnosticPrinter(llvm::errs(), &*DiagOpts); in performTransformations() 166 llvm::errs() << "error: no input files\n"; in performTransformations() 191 llvm::errs() << "\n##### FINAL RESULT #####\n"; in performTransformations() 193 llvm::errs() << "\n##### OUTPUT AFTER "<< i+1 <<". TRANSFORMATION #####\n"; in performTransformations() 194 printResult(migration.getRemapper(), llvm::errs()); in performTransformations() 195 llvm::errs() << "\n##########################\n\n"; in performTransformations() 234 errs() << "error: filename '" << fname in verifyTransformedFiles() 247 errs() << "error: could not read remappings input\n"; in verifyTransformedFiles() [all …]
|
| /openbsd/src/gnu/llvm/llvm/tools/llvm-opt-fuzzer/ |
| D | llvm-opt-fuzzer.cpp | 68 errs() << "error: mutator input module is broken!\n"; in LLVMFuzzerCustomMutator() 74 if (verifyModule(*M, &errs())) { in LLVMFuzzerCustomMutator() 75 errs() << "mutation result doesn't pass verification\n"; in LLVMFuzzerCustomMutator() 100 errs() << "mutator failed to re-read the module\n"; in LLVMFuzzerCustomMutator() 124 errs() << "error: input module is broken!\n"; in LLVMFuzzerTestOneInput() 164 if (verifyModule(*M, &errs())) { in LLVMFuzzerTestOneInput() 165 errs() << "Transformation resulted in an invalid module\n"; in LLVMFuzzerTestOneInput() 212 errs() << *argv[0] << ": -mtriple must be specified\n"; in LLVMFuzzerInitialize() 221 errs() << *argv[0] << ": " << Error; in LLVMFuzzerInitialize() 237 errs() << *argv[0] << ": at least one pass should be specified\n"; in LLVMFuzzerInitialize() [all …]
|
| /openbsd/src/gnu/llvm/llvm/tools/bugpoint/ |
| 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() << "\nAbout to run:\t"; in runPasses() [all …]
|
| /openbsd/src/gnu/llvm/clang/tools/clang-format/ |
| D | ClangFormat.cpp | 240 errs() << "error: cannot use -lines with -offset/-length\n"; in fillRanges() 247 errs() << "error: invalid <start line>:<end line> pair\n"; in fillRanges() 251 errs() << "error: start line should be at least 1\n"; in fillRanges() 255 errs() << "error: start line should not exceed end line\n"; in fillRanges() 273 errs() << "error: number of -offset and -length arguments must match.\n"; in fillRanges() 278 errs() << "error: offset " << Offsets[i] << " is outside the file\n"; in fillRanges() 286 errs() << "error: invalid length " << Lengths[i] in fillRanges() 360 Diag.print(nullptr, llvm::errs(), (ShowColors && !NoShowColors)); in emitReplacementWarnings() 396 errs() << "clang-format error:" << vec << "\n"; in HandleDiagnostic() 403 errs() << "error: cannot use -i when reading from stdin.\n"; in format() [all …]
|
| /openbsd/src/gnu/llvm/clang/tools/clang-refactor/ |
| D | TestSupport.cpp | 49 llvm::errs() << "error: -selection=test:" << Filename in foreachRange() 97 llvm::errs() << "failed to open" << File << "\n"; in printRewrittenSources() 103 llvm::errs() << toString(Result.takeError()); in printRewrittenSources() 222 llvm::errs() in handleAllResults() 227 llvm::errs() << "valid result"; in handleAllResults() 229 llvm::errs() << "error '" << ErrorMessage << "'"; in handleAllResults() 230 llvm::errs() << " does not match initial "; in handleAllResults() 232 llvm::errs() << "error '" << *CanonicalErrorMessage << "'\n"; in handleAllResults() 234 llvm::errs() << "valid result\n"; in handleAllResults() 236 llvm::errs() << " Expected to Produce:\n"; in handleAllResults() [all …]
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/ADT/ |
| D | GenericCycleImpl.h | 191 LLVM_DEBUG(errs() << "Entry block: " << Info.Context.print(EntryBlock) in run() 210 LLVM_DEBUG(errs() << "Found cycle for header: " in run() 221 LLVM_DEBUG(errs() << " block " << Info.Context.print(Block) << ": "); in run() 234 LLVM_DEBUG(errs() << "append as entry\n"); in run() 237 LLVM_DEBUG(errs() << "append as child\n"); in run() 250 LLVM_DEBUG(errs() << " block " << Info.Context.print(Block) << ": "); in run() 253 LLVM_DEBUG(errs() in run() 262 LLVM_DEBUG(errs() in run() 280 LLVM_DEBUG(errs() << "top-level cycle: " in run() 307 LLVM_DEBUG(errs() << "DFS visiting block: " << Info.Context.print(Block) in dfs() [all …]
|