Home
last modified time | relevance | path

Searched refs:report (Results 1 – 25 of 775) sorted by relevance

12345678910>>...31

/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DMachineVerifier.cpp233 void report(const char *msg, const MachineFunction *MF);
234 void report(const char *msg, const MachineBasicBlock *MBB);
235 void report(const char *msg, const MachineInstr *MI);
236 void report(const char *msg, const MachineOperand *MO, unsigned MONum,
238 void report(const Twine &Msg, const MachineInstr *MI);
371 report("Function has NoVRegs property but there are VReg operands", &MF); in verifyProperties()
427 report("Bad instruction parent pointer", &MBB); in verify()
434 report("Missing BundledPred flag, " in verify()
438 report("BundledPred flag is set, " in verify()
449 report("No bundle header", &MI); in verify()
[all …]
/openbsd-src/gnu/llvm/libcxx/utils/libcxx/sym_check/
H A Ddiff.py62 report = ''
64 report += 'Symbol added: %s\n' % maybe_demangle(sym['name'])
66 report += ' %s\n\n' % sym
68 report += '\n'
70 report += 'SYMBOL REMOVED: %s\n' % maybe_demangle(sym['name'])
72 report += ' %s\n\n' % sym
74 report += '\n'
80 report += ('SYMBOL CHANGED: %s%s%s\n\n' %
89 report += 'Summary\n'
90 report += ' Added: %d\n' % len(added_syms)
[all …]
H A Dmatch.py17 report = ''
20 report += 'Matching regex "%s":\n' % regex_str
23 report += ' No matches found\n\n'
28 report += ' MATCHES: %s\n' % m['name']
29 report += '\n'
30 return found_count, report
/openbsd-src/gnu/llvm/llvm/docs/CommandGuide/
H A Dllvm-opt-report.rst1 llvm-opt-report - generate optimization report from YAML
4 .. program:: llvm-opt-report
9 :program:`llvm-opt-report` [*options*] [input]
14 :program:`llvm-opt-report` is a tool to generate an optimization report from YAML optimization reco…
16 You need to create an input YAML optimization record file before running :program:`llvm-opt-report`.
22 Then, you create a report using the :program:`llvm-opt-report` command with the YAML optimization r…
26 $ llvm-opt-report foo.opt.yaml -o foo.lst
28 foo.lst is the generated optimization report.
66 If ``input`` is "``-``" or omitted, :program:`llvm-opt-report` reads from standard
69 If the :option:`-o` option is omitted, then :program:`llvm-opt-report` will send its output
[all …]
/openbsd-src/gnu/llvm/compiler-rt/lib/tsan/rtl/
H A Dtsan_debugging.cpp72 int __tsan_get_report_data(void *report, const char **description, int *count, in __tsan_get_report_data() argument
77 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_data()
91 int __tsan_get_report_tag(void *report, uptr *tag) { in __tsan_get_report_tag() argument
92 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_tag()
98 int __tsan_get_report_stack(void *report, uptr idx, void **trace, in __tsan_get_report_stack() argument
100 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_stack()
108 int __tsan_get_report_mop(void *report, uptr idx, int *tid, void **addr, in __tsan_get_report_mop() argument
111 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_mop()
124 int __tsan_get_report_loc(void *report, uptr idx, const char **type, in __tsan_get_report_loc() argument
128 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_loc()
[all …]
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_report.cpp46 ScopedAllocatorErrorReport report("calloc-overflow", stack); in ReportCallocOverflow() local
57 ScopedAllocatorErrorReport report("reallocarray-overflow", stack); in ReportReallocArrayOverflow() local
68 ScopedAllocatorErrorReport report("pvalloc-overflow", stack); in ReportPvallocOverflow() local
79 ScopedAllocatorErrorReport report("invalid-allocation-alignment", stack); in ReportInvalidAllocationAlignment() local
89 ScopedAllocatorErrorReport report("invalid-aligned-alloc-alignment", stack); in ReportInvalidAlignedAllocAlignment() local
107 ScopedAllocatorErrorReport report("invalid-posix-memalign-alignment", in ReportInvalidPosixMemalignAlignment() local
121 ScopedAllocatorErrorReport report("allocation-size-too-big", stack); in ReportAllocationSizeTooBig() local
130 ScopedAllocatorErrorReport report("out-of-memory", stack); in ReportOutOfMemory() local
138 ScopedAllocatorErrorReport report("rss-limit-exceeded", stack); in ReportRssLimitExceeded() local
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/API/
H A DBreakage.t35 ok(!$CLASS->report, "Nothing to report");
36 ok(!$CLASS->report(1), "Still nothing to report");
53 my @report = $CLASS->report;
55 $_ =~ s{\S+/Breakage\.pm}{Breakage.pm}g for @report;
58 [sort @report],
66 "Got expected report items"
76 ok(!$CLASS->report, "Nothin
[all...]
/openbsd-src/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DInstrumentationRuntimeTSan.cpp492 InstrumentationRuntimeTSan::FormatDescription(StructuredData::ObjectSP report) { in FormatDescription() argument
493 std::string description = std::string(report->GetAsDictionary() in FormatDescription()
614 InstrumentationRuntimeTSan::GenerateSummary(StructuredData::ObjectSP report) { in GenerateSummary() argument
617 std::string summary = std::string(report->GetAsDictionary() in GenerateSummary()
622 report->GetObjectForDotSeparatedPath("issue_type")->GetStringValue() == in GenerateSummary()
626 if (report->GetAsDictionary() in GenerateSummary()
630 pc = GetFirstNonInternalFramePc(report->GetAsDictionary() in GenerateSummary()
638 if (report->GetAsDictionary() in GenerateSummary()
642 pc = GetFirstNonInternalFramePc(report->GetAsDictionary() in GenerateSummary()
654 if (report->GetAsDictionary() in GenerateSummary()
[all …]
H A DInstrumentationRuntimeTSan.h60 std::string FormatDescription(StructuredData::ObjectSP report);
62 std::string GenerateSummary(StructuredData::ObjectSP report);
64 lldb::addr_t GetMainRacyAddress(StructuredData::ObjectSP report);
66 std::string GetLocationDescription(StructuredData::ObjectSP report,
/openbsd-src/sys/dev/usb/
H A Dupd.c94 size_t size; /* Size of the report */
102 int attached; /* Is there a matching report */
105 SLIST_ENTRY(upd_sensor) rep_next; /* next in the report list */
230 struct upd_report *report; in upd_attach_sensor_tree()
264 report = &sc->sc_reports[item.report_ID]; in upd_attach_sensor_tree()
265 if (SLIST_EMPTY(&report->sensors)) in upd_attach_sensor_tree()
266 report->size = hid_report_size(desc, in upd_attach_sensor_tree()
268 SLIST_INSERT_HEAD(&report->sensors, sensor, rep_next); in upd_attach_sensor_tree()
311 struct upd_report *report; in upd_request_children()
316 report in upd_request_children()
228 struct upd_report *report; upd_attach_sensor_tree() local
309 struct upd_report *report; upd_request_children() local
373 struct upd_report *report = &sc->sc_reports[repid]; upd_update_report_cb() local
[all...]
/openbsd-src/gnu/llvm/libcxx/src/filesystem/
H A Doperations.cpp549 err.report(m_ec, "failed to determine attributes for the specified path"); in create_file_status()
715 return err.report(capture_errno()); in __canonical()
725 return err.report(capture_errno()); in __canonical()
745 return err.report(m_ec1); in __copy()
752 return err.report(m_ec1); in __copy()
757 return err.report(errc::function_not_supported); in __copy()
769 return err.report(errc::file_exists); in __copy()
786 return err.report(errc::is_a_directory); in __copy()
805 return err.report(m_ec2); in __copy()
906 return err.report(m_ec); in __copy_file()
[all …]
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DObjCAtSyncChecker.cpp49 auto report = std::make_unique<PathSensitiveBugReport>( in checkPreStmt() local
51 bugreporter::trackExpressionValue(N, Ex, *report); in checkPreStmt()
52 C.emitReport(std::move(report)); in checkPreStmt()
73 auto report = std::make_unique<PathSensitiveBugReport>( in checkPreStmt() local
75 bugreporter::trackExpressionValue(N, Ex, *report); in checkPreStmt()
77 C.emitReport(std::move(report)); in checkPreStmt()
H A DTaintTesterChecker.cpp42 auto report = std::make_unique<PathSensitiveBugReport>(*BT, "tainted", N); in checkPostStmt() local
43 report->addRange(E->getSourceRange()); in checkPostStmt()
44 C.emitReport(std::move(report)); in checkPostStmt()
/openbsd-src/usr.bin/usbhidctl/
H A Dusbhid.c387 allocreport(struct Sreport *report, report_desc_t rd, int repindex) in allocreport() argument
394 report->size = reptsize; in allocreport()
396 if (report->size > 0) { in allocreport()
397 report->buffer = malloc(sizeof(*report->buffer)); in allocreport()
398 if (report->buffer == NULL) in allocreport()
401 report->buffer = NULL; in allocreport()
403 report->status = srs_clean; in allocreport()
407 freereport(struct Sreport *report) in freereport() argument
409 free(report->buffer); in freereport()
410 report->status = srs_uninit; in freereport()
[all …]
/openbsd-src/gnu/llvm/clang/tools/scan-view/share/
H A DScanView.py103 def __init__(self, report, reporter, parameters, server): argument
105 self.report = report
117 self.status = self.reporter.fileReport(self.report, self.parameters)
261 def load_report(self, report): argument
262 path = os.path.join(self.server.root, 'report-%s.html'%report)
300 report = self.get_scalar_field('report')
333 if report != 'None':
355 report = self.get_scalar_field('report')
356 c = self.get_report_context(report)
363 report)
[all …]
H A DReporter.py112 def fileReport(self, report, parameters): argument
118 """%(report.title, report.description)
126 msg['Subject'] = 'BUG REPORT: %s'%(report.title)
133 for file in report.files:
153 def fileReport(self, report, parameters): argument
/openbsd-src/gnu/llvm/llvm/docs/
H A DReportingGuide.rst12 Conduct<CodeOfConduct>` violation, we encourage you to still report it. We
14 miss a report of an actual violation. There is no harm in reporting an incident
26 * For LLVM Developers' Meetings, please file a report with the on-site Code
34 * For meetups, please report the incident to the local meetup organizers first
35 and then email conduct@llvm.org with your report. Each meetup will have a
39 in-person report are also asked to email conduct@llvm.org with the
45 appropriate, please include this in your report and we will attempt to notify
64 those concerns in your report.
68 report and include as much information as you have.
70 When handling a report, we follow our :doc:`Response Guide <ResponseGuide>`.
[all …]
H A DTestSuiteMakefileGuide.rst129 Even better are the ``report`` and ``report.format`` targets (where
131 exact contents of the report are dependent on which ``TEST`` you are
133 the results are always stored in the ``report.<type>.format`` file (when
134 running with ``TEST=<type>``). The ``report`` also generate a file
135 called ``report.<type>.raw.out`` containing the output of the entire
142 "``gmake TEST=nightly report``" should work), it is really easy to run
153 Following this, you can set up a test and a report that collects these
156 your test) and a "``test-suite/TEST.XXX.report``" file that indicates
167 % make TEST=libcalls report
190 table. You can also use the "TEST=libcalls report.html" target to get
[all …]
H A DResponseGuide.rst27 Checklist>` is needed before sending the report to the Code of Conduct
30 .. _Receiving a report:
38 When receiving a report by email, the CoC Committee should acknowledge receipt
43 For in-person events that have a violation reported, the report should be sent
54 report indicates that an immediate response is required and other committee
83 2. :ref:`Acknowledge the report<Receiving a report>` within 24 hours.
85 3. :ref:`Discuss the incident report<Incident Response Assessment>`, gather
108 When a report is received, the committee will reply to the reporter to confirm
113 * Acknowledgement of the incident report
115 * Reminder of confidentiality policy regarding the report and parties involved
[all …]
/openbsd-src/gnu/llvm/clang/lib/ARCMigrate/
H A DFileRemapper.cpp68 return report("Error opening file: " + infoFile, Diag); in initFromFile()
77 return report("Invalid file data: '" + lines[idx+1] + "' not a number", in initFromFile()
85 return report("File does not exist: " + fromFilename, Diag); in initFromFile()
91 return report("File does not exist: " + toFilename, Diag); in initFromFile()
97 return report("File was modified: " + fromFilename, Diag); in initFromFile()
113 return report("Could not create directory: " + outputDir, Diag); in flushToDisk()
126 return report(EC.message(), Diag); in flushToFile()
149 return report("Could not create file: " + tempPath.str(), Diag); in flushToFile()
177 return report(StringRef("File does not exist: ") + origFE->getName(), in overwriteOriginal()
183 return report(EC.message(), Diag); in overwriteOriginal()
[all …]
/openbsd-src/gnu/llvm/clang/utils/analyzer/
H A DCmpRuns.py89 def __init__(self, data: Plist, report: "AnalysisReport",
93 self._report = report
255 report = AnalysisReport(self, data.pop('files'))
259 diagnostics = [AnalysisDiagnostic(d, report, h)
264 report.diagnostics.extend(diagnostics)
265 self.reports.append(report)
474 for report in results.reports:
475 for diagnostic in report.diagnostics:
518 report = f"{val_old:.3f} -> {val_new:.3f}"
525 report = Colors.GREEN + report + Colors.CLEAR
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/ASan/
H A DInstrumentationRuntimeASan.cpp192 InstrumentationRuntimeASan::FormatDescription(StructuredData::ObjectSP report) { in FormatDescription() argument
193 std::string description = std::string(report->GetAsDictionary() in FormatDescription()
253 StructuredData::ObjectSP report = instance->RetrieveReportData(); in NotifyBreakpointHit() local
255 if (report) { in NotifyBreakpointHit()
256 description = instance->FormatDescription(report); in NotifyBreakpointHit()
264 *thread_sp, description, report)); in NotifyBreakpointHit()
/openbsd-src/gnu/llvm/llvm/utils/lit/lit/formats/
H A Dbase.py110 report = """Command: %s\n""" % ' '.join(["'%s'" % a
113 report += """Temporary File: %s\n""" % tmp.name
114 report += "--\n%s--\n""" % open(tmp.name).read()
115 report += """Output:\n--\n%s--""" % diags
117 return lit.Test.FAIL, report
/openbsd-src/gnu/usr.bin/perl/Porting/
H A Dcheckansi.pl34 sub report subroutine
57 report("trailing whitespace after backslash", $line)
64 report(sprintf("logical source line too long (%d > %d)",
/openbsd-src/gnu/llvm/clang/lib/Analysis/plugins/SampleAnalyzer/
H A DMainCallChecker.cpp39 auto report = in checkPreStmt() local
41 report->addRange(Callee->getSourceRange()); in checkPreStmt()
42 C.emitReport(std::move(report)); in checkPreStmt()

12345678910>>...31