/external/llvm/lib/CodeGen/ |
D | MachineVerifier.cpp | 215 void report_context(const LiveInterval &LI) const; 216 void report_context(const LiveRange &LR, unsigned Reg, 218 void report_context(const LiveRange::Segment &S) const; 219 void report_context(const VNInfo &VNI) const; 220 void report_context(SlotIndex Pos) const; 469 void MachineVerifier::report_context(SlotIndex Pos) const { in report_context() function in MachineVerifier 473 void MachineVerifier::report_context(const LiveInterval &LI) const { in report_context() function in MachineVerifier 477 void MachineVerifier::report_context(const LiveRange &LR, unsigned Reg, in report_context() function in MachineVerifier 485 void MachineVerifier::report_context(const LiveRange::Segment &S) const { in report_context() function in MachineVerifier 489 void MachineVerifier::report_context(const VNInfo &VNI) const { in report_context() function in MachineVerifier [all …]
|
/external/llvm-project/llvm/lib/CodeGen/ |
D | MachineVerifier.cpp | 228 void report_context(const LiveInterval &LI) const; 229 void report_context(const LiveRange &LR, Register VRegUnit, 231 void report_context(const LiveRange::Segment &S) const; 232 void report_context(const VNInfo &VNI) const; 233 void report_context(SlotIndex Pos) const; 234 void report_context(MCPhysReg PhysReg) const; 504 void MachineVerifier::report_context(SlotIndex Pos) const { in report_context() function in MachineVerifier 508 void MachineVerifier::report_context(const LiveInterval &LI) const { in report_context() function in MachineVerifier 512 void MachineVerifier::report_context(const LiveRange &LR, Register VRegUnit, in report_context() function in MachineVerifier 520 void MachineVerifier::report_context(const LiveRange::Segment &S) const { in report_context() function in MachineVerifier [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | MachineVerifier.cpp | 250 void report_context(const LiveInterval &LI) const; 251 void report_context(const LiveRange &LR, unsigned VRegUnit, 253 void report_context(const LiveRange::Segment &S) const; 254 void report_context(const VNInfo &VNI) const; 255 void report_context(SlotIndex Pos) const; 256 void report_context(MCPhysReg PhysReg) const; 519 void MachineVerifier::report_context(SlotIndex Pos) const { in report_context() function in MachineVerifier 523 void MachineVerifier::report_context(const LiveInterval &LI) const { in report_context() function in MachineVerifier 527 void MachineVerifier::report_context(const LiveRange &LR, unsigned VRegUnit, in report_context() function in MachineVerifier 535 void MachineVerifier::report_context(const LiveRange::Segment &S) const { in report_context() function in MachineVerifier [all …]
|
/external/rust/crates/criterion/src/ |
D | routine.rs | 31 report_context: &ReportContext, in profile() 37 .profile(id, report_context, time.to_nanos() as f64); in profile() 39 let mut profile_path = report_context.output_directory.clone(); in profile() 79 criterion.report.terminated(id, report_context); in profile() 88 report_context: &ReportContext, in sample() 96 .warmup(id, report_context, wu.to_nanos() as f64); in sample() 141 .measurement_start(id, report_context, n, expected_ns, total_iters); in sample()
|
D | benchmark.rs | 318 let report_context = ReportContext { in run() localVariable 362 &report_context, in run() 379 .summarize(&report_context, &all_ids, c.measurement.formatter()); in run() 479 let report_context = ReportContext { in run() localVariable 532 &report_context, in run() 550 .summarize(&report_context, &all_ids, c.measurement.formatter()); in run() 565 report_context: &ReportContext, in execute_benchmark() 590 report_context, in execute_benchmark() 604 c.report.test_start(id, report_context); in execute_benchmark() 606 c.report.test_pass(id, report_context); in execute_benchmark() [all …]
|
D | benchmark_group.rs | 279 let report_context = ReportContext { in run_bench() localVariable 324 &report_context, in run_bench() 338 self.criterion.report.test_start(&id, &report_context); in run_bench() 340 self.criterion.report.test_pass(&id, &report_context); in run_bench() 349 &report_context, in run_bench() 383 let report_context = ReportContext { in drop() localVariable 389 &report_context, in drop()
|
D | lib.rs | 726 let report_context = ReportContext { in final_summary() localVariable 731 self.report.final_summary(&report_context); in final_summary()
|
/external/rust/crates/criterion/src/analysis/ |
D | mod.rs | 44 report_context: &ReportContext, in common() 48 criterion.report.benchmark_start(id, report_context); in common() 88 report_context, in common() 100 plot_config: (&report_context.plot_config).into(), in common() 112 criterion.report.analysis(id, report_context); in common() 235 report_context, in common()
|
/external/rust/crates/criterion/src/html/ |
D | mod.rs | 299 report_context: &ReportContext, in measurement_complete() 304 let mut report_dir = report_context.output_directory.clone(); in measurement_complete() 324 self.generate_plots(id, report_context, formatter, measurements) in measurement_complete() 390 let mut report_path = report_context.output_directory.clone(); in measurement_complete() 531 fn final_summary(&self, report_context: &ReportContext) { in final_summary() 532 let output_directory = &report_context.output_directory; in final_summary() 747 report_context: &ReportContext, in generate_summary() 753 context: report_context, in generate_summary() 760 let mut report_dir = report_context.output_directory.clone(); in generate_summary() 789 IndividualBenchmark::from_id(&report_context.output_directory, path_prefix, id) in generate_summary() [all …]
|