/external/compiler-rt/lib/ubsan/ |
D | ubsan_handlers.cc | 67 ScopedReport R(Opts, Loc, ET); in handleTypeMismatchImpl() 118 ScopedReport R(Opts, Loc, ET); in handleIntegerOverflowImpl() 152 ScopedReport R(Opts, Loc, ET); in handleNegateOverflowImpl() 193 ScopedReport R(Opts, Loc, ET); in handleDivremOverflowImpl() 236 ScopedReport R(Opts, Loc, ET); in handleShiftOutOfBoundsImpl() 277 ScopedReport R(Opts, Loc, ET); in handleOutOfBoundsImpl() 298 ScopedReport R(Opts, Data->Loc, ErrorType::UnreachableCall); in handleBuiltinUnreachableImpl() 309 ScopedReport R(Opts, Data->Loc, ErrorType::MissingReturn); in handleMissingReturnImpl() 329 ScopedReport R(Opts, Loc, ET); in handleVLABoundNotPositive() 389 ScopedReport R(Opts, Loc, ET); in handleFloatCastOverflow() [all …]
|
D | ubsan_diag.h | 237 class ScopedReport { 243 ScopedReport(ReportOptions Opts, Location SummaryLoc, ErrorType Type); 244 ~ScopedReport();
|
D | ubsan_handlers_cxx.cc | 51 ScopedReport R(Opts, Loc, ET); in HandleDynamicTypeCacheMiss() 106 ScopedReport R(Opts, Loc, ET); in HandleCFIBadType()
|
D | ubsan_diag.cc | 365 ScopedReport::ScopedReport(ReportOptions Opts, Location SummaryLoc, in ScopedReport() function in ScopedReport 372 ScopedReport::~ScopedReport() { in ~ScopedReport()
|
/external/llvm-project/compiler-rt/lib/ubsan/ |
D | ubsan_handlers.cpp | 112 ScopedReport R(Opts, Loc, ET); in handleTypeMismatchImpl() 164 ScopedReport R(Opts, Loc, ET); in handleAlignmentAssumptionImpl() 225 ScopedReport R(Opts, Loc, ET); in handleIntegerOverflowImpl() 262 ScopedReport R(Opts, Loc, ET); in handleNegateOverflowImpl() 303 ScopedReport R(Opts, Loc, ET); in handleDivremOverflowImpl() 347 ScopedReport R(Opts, Loc, ET); in handleShiftOutOfBoundsImpl() 389 ScopedReport R(Opts, Loc, ET); in handleOutOfBoundsImpl() 411 ScopedReport R(Opts, Data->Loc, ET); in handleBuiltinUnreachableImpl() 424 ScopedReport R(Opts, Data->Loc, ET); in handleMissingReturnImpl() 444 ScopedReport R(Opts, Loc, ET); in handleVLABoundNotPositive() [all …]
|
D | ubsan_diag.cpp | 347 ScopedReport::CheckLocked(); in ~Diag() 382 ScopedReport::Initializer::Initializer() { InitAsStandaloneIfNecessary(); } in Initializer() 384 ScopedReport::ScopedReport(ReportOptions Opts, Location SummaryLoc, in ScopedReport() function in ScopedReport 388 ScopedReport::~ScopedReport() { in ~ScopedReport()
|
D | ubsan_handlers_cxx.cpp | 50 ScopedReport R(Opts, Loc, ET); in HandleDynamicTypeCacheMiss() 106 ScopedReport R(Opts, Loc, ET); in __ubsan_handle_cfi_bad_type() 174 ScopedReport R(Opts, CallLoc, ET); in handleFunctionTypeMismatch()
|
D | ubsan_diag.h | 240 class ScopedReport { 252 ScopedReport(ReportOptions Opts, Location SummaryLoc, ErrorType Type); 253 ~ScopedReport();
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_rtl_report.cc | 142 ScopedReport::ScopedReport(ReportType typ) { in ScopedReport() function in __tsan::ScopedReport 151 ScopedReport::~ScopedReport() { in ~ScopedReport() 157 void ScopedReport::AddStack(StackTrace stack, bool suppressable) { in AddStack() 163 void ScopedReport::AddMemoryAccess(uptr addr, Shadow s, StackTrace stack, in AddMemoryAccess() 184 void ScopedReport::AddUniqueTid(int unique_tid) { in AddUniqueTid() 188 void ScopedReport::AddThread(const ThreadContext *tctx, bool suppressable) { in AddThread() 251 void ScopedReport::AddThread(int unique_tid, bool suppressable) { in AddThread() 258 void ScopedReport::AddMutex(const SyncVar *s) { in AddMutex() 272 u64 ScopedReport::AddMutex(u64 id) { in AddMutex() 291 void ScopedReport::AddDeadMutex(u64 id) { in AddDeadMutex() [all …]
|
D | tsan_rtl.h | 556 class ScopedReport { 558 explicit ScopedReport(ReportType typ); 559 ~ScopedReport(); 583 ScopedReport(const ScopedReport&); 584 void operator = (const ScopedReport&); 631 bool OutputReport(ThreadState *thr, const ScopedReport &srep);
|
D | tsan_rtl_mutex.cc | 56 ScopedReport rep(typ); in ReportMutexMisuse() 114 ScopedReport rep(ReportTypeMutexDestroyLocked); in MutexDestroy() 476 ScopedReport rep(ReportTypeDeadlock); in ReportDeadlock()
|
D | tsan_mman.cc | 144 ScopedReport rep(ReportTypeSignalUnsafe); in SignalUnsafeCall()
|
D | tsan_rtl_thread.cc | 207 ScopedReport rep(ReportTypeThreadLeak); in ThreadFinalize()
|
D | tsan_interceptors.cc | 1819 ScopedReport rep(ReportTypeErrnoInSignal); in CallUserSignalHandler()
|
/external/llvm-project/compiler-rt/lib/hwasan/ |
D | hwasan_report.cpp | 37 class ScopedReport { class 39 ScopedReport(bool fatal = false) : error_message_(1), fatal(fatal) { in ScopedReport() function in __hwasan::ScopedReport 45 ~ScopedReport() { in ~ScopedReport() 89 InternalMmapVector<char> *ScopedReport::error_message_ptr_; 90 BlockingMutex ScopedReport::error_message_lock_; 91 void (*ScopedReport::error_report_callback_)(const char *); 95 ScopedReport::MaybeAppendToErrorMessage(buffer); in AppendToErrorMessageBuffer() 505 ScopedReport R(flags()->halt_on_error); in ReportInvalidFree() 533 ScopedReport R(flags()->halt_on_error); in ReportTailOverwritten() 591 ScopedReport R(fatal); in ReportTagMismatch() [all …]
|
/external/llvm-project/compiler-rt/lib/tsan/rtl/ |
D | tsan_rtl_report.cpp | 374 ScopedReport::ScopedReport(ReportType typ, uptr tag) in ScopedReport() function in __tsan::ScopedReport 377 ScopedReport::~ScopedReport() {} in ~ScopedReport() 499 bool OutputReport(ThreadState *thr, const ScopedReport &srep) { in OutputReport() 683 ScopedReport rep(typ, tag); in ReportRace()
|
D | tsan_rtl.h | 618 class ScopedReport : public ScopedReportBase { 620 explicit ScopedReport(ReportType typ, uptr tag = kExternalTagNone); 621 ~ScopedReport(); 694 bool OutputReport(ThreadState *thr, const ScopedReport &srep);
|
D | tsan_rtl_mutex.cpp | 55 ScopedReport rep(typ); in ReportMutexMisuse() 112 ScopedReport rep(ReportTypeMutexDestroyLocked); in MutexDestroy() 540 ScopedReport rep(ReportTypeDeadlock); in ReportDeadlock()
|
D | tsan_mman.cpp | 155 ScopedReport rep(ReportTypeSignalUnsafe); in SignalUnsafeCall()
|
D | tsan_rtl_thread.cpp | 220 ScopedReport rep(ReportTypeThreadLeak); in ThreadFinalize()
|
D | tsan_interceptors_posix.cpp | 1981 ScopedReport rep(ReportTypeErrnoInSignal); in CallUserSignalHandler()
|
/external/libabigail/tests/data/test-annotate/ |
D | test15-pr18892.so.abi | 34489 <!-- __tsan::ScopedReport* const --> 34523 <!-- const __tsan::ScopedReport* const --> 34664 <!-- __tsan::ScopedReport* --> 34666 <!-- const __tsan::ScopedReport* --> 34669 <!-- class __tsan::ScopedReport --> 34670 …<class-decl name='ScopedReport' size-in-bits='128' visibility='default' filepath='../../.././libsa… 34672 <!-- __tsan::Context* __tsan::ScopedReport::ctx_ --> 34676 <!-- __tsan::ReportDesc* __tsan::ScopedReport::rep_ --> 34680 <!-- __tsan::ScopedReport::ScopedReport(__tsan::ReportType) --> 34681 …<function-decl name='ScopedReport' filepath='../../.././libsanitizer/tsan/tsan_rtl.h' line='564' c… [all …]
|
/external/libabigail/tests/data/test-read-dwarf/ |
D | test15-pr18892.so.abi | 20661 …<class-decl name='ScopedReport' size-in-bits='128' visibility='default' filepath='../../.././libsa… 20669 …<function-decl name='ScopedReport' filepath='../../.././libsanitizer/tsan/tsan_rtl.h' line='564' c… 20676 …<function-decl name='~ScopedReport' filepath='../../.././libsanitizer/tsan/tsan_rtl.h' line='565' … 20683 …<function-decl name='ScopedReport' filepath='../../.././libsanitizer/tsan/tsan_rtl.h' line='584' c… 20690 …<function-decl name='ScopedReport' mangled-name='_ZN6__tsan12ScopedReportC2ENS_10ReportTypeE' file… 20697 …<function-decl name='~ScopedReport' mangled-name='_ZN6__tsan12ScopedReportD2Ev' filepath='../../..… 20821 …<class-decl name='ScopedReport' size-in-bits='128' visibility='default' filepath='../../.././libsa… 20829 …<function-decl name='ScopedReport' filepath='../../.././libsanitizer/tsan/tsan_rtl.h' line='564' c… 20836 …<function-decl name='~ScopedReport' filepath='../../.././libsanitizer/tsan/tsan_rtl.h' line='565' … 20843 …<function-decl name='ScopedReport' filepath='../../.././libsanitizer/tsan/tsan_rtl.h' line='584' c… [all …]
|