Home
last modified time | relevance | path

Searched refs:InternalMmapVector (Results 1 – 25 of 61) sorted by relevance

123

/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_common_test.cpp118 InternalMmapVector<uptr> v; in TEST()
124 InternalMmapVector<uptr> v; in TEST()
146 TEST(SanitizerCommon, InternalMmapVector) { in TEST() argument
147 InternalMmapVector<uptr> vector; in TEST()
160 InternalMmapVector<uptr> empty_vector; in TEST()
166 InternalMmapVector<uptr> vector1; in TEST()
167 InternalMmapVector<uptr> vector2; in TEST()
189 InternalMmapVector<uptr> vector1; in TEST()
190 InternalMmapVector<uptr> vector2; in TEST()
191 InternalMmapVector<uptr> vector3; in TEST()
[all …]
H A Dsanitizer_procmaps_test.cpp43 InternalMmapVector<LoadedModule> modules; in TEST()
63 InternalMmapVector<LoadedModule> modules; in TEST()
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stoptheworld_win.cpp29 InternalMmapVector<HANDLE> threadHandles;
30 InternalMmapVector<DWORD> threadIds;
38 InternalMmapVector<uptr> *buffer,
57 uptr index, InternalMmapVector<uptr> *buffer, uptr *sp) const { in GetRegistersAndSP()
H A Dsanitizer_suppressions.h42 void GetMatched(InternalMmapVector<Suppression *> *matched);
49 InternalMmapVector<Suppression> suppressions_;
H A Dsanitizer_common.h611 class InternalMmapVector : public InternalMmapVectorNoCtor<T> {
613 InternalMmapVector() { InternalMmapVectorNoCtor<T>::Initialize(0); } in InternalMmapVector() function
614 explicit InternalMmapVector(uptr cnt) { in InternalMmapVector() function
618 ~InternalMmapVector() { InternalMmapVectorNoCtor<T>::Destroy(); } in ~InternalMmapVector()
620 InternalMmapVector(const InternalMmapVector &) = delete;
621 InternalMmapVector &operator=(const InternalMmapVector &) = delete;
622 InternalMmapVector(InternalMmapVector &&) = delete;
623 InternalMmapVector &operator=(InternalMmapVector &&) = delete;
640 InternalMmapVector<char> buffer_;
H A Dsanitizer_lzw.h35 InternalMmapVector<T> dict_len1; in LzwEncode()
91 InternalMmapVector<T> dict_len1(*begin); in LzwDecode()
105 InternalMmapVector<detail::DenseMapPair<ItOut /* begin. */, ItOut /* end */>> in LzwDecode()
H A Dsanitizer_suppressions.cpp37 InternalMmapVector<char> exec(kMaxPathLength); in GetPathAssumingFileIsRelativeToExec()
72 InternalMmapVector<char> new_file_path(kMaxPathLength); in ParseFromFile()
175 InternalMmapVector<Suppression *> *matched) { in GetMatched()
H A Dsanitizer_stoptheworld_mac.cpp41 InternalMmapVector<uptr> *buffer,
45 InternalMmapVector<SuspendedThreadInfo> threads_;
145 uptr index, InternalMmapVector<uptr> *buffer, uptr *sp) const { in GetRegistersAndSP()
H A Dsanitizer_stoptheworld_netbsd_libcdep.cpp61 InternalMmapVector<uptr> *buffer,
65 InternalMmapVector<tid_t> thread_ids_;
199 InternalMmapVector<char> handler_stack_memory(kHandlerStackSize); in TracerThread()
338 uptr index, InternalMmapVector<uptr> *buffer, uptr *sp) const { in GetRegistersAndSP()
H A Dsanitizer_symbolizer_internal.h96 InternalMmapVector<char> &GetBuff() { return buffer_; } in GetBuff()
117 InternalMmapVector<char> buffer_;
H A Dsanitizer_stoptheworld_linux_libcdep.cpp98 InternalMmapVector<uptr> *buffer,
102 InternalMmapVector<tid_t> thread_ids_;
212 InternalMmapVector<tid_t> threads; in SuspendAllThreads()
298 InternalMmapVector<char> handler_stack_memory(kHandlerStackSize); in TracerThread()
556 uptr index, InternalMmapVector<uptr> *buffer, uptr *sp) const { in GetRegistersAndSP()
H A Dsanitizer_symbolizer_report.cpp105 InternalMmapVector<BufferedStackTrace> stack_buffer(1); in ReportMmapWriteExec()
187 InternalMmapVector<BufferedStackTrace> stack_buffer(1); in ReportStackOverflowImpl()
226 InternalMmapVector<BufferedStackTrace> stack_buffer(1); in ReportDeadlySignalImpl()
H A Dsanitizer_symbolizer.h107 InternalMmapVector<LocalInfo> locals;
173 InternalMmapVector<const char*> storage_;
H A Dsanitizer_linux.h105 Result ListThreads(InternalMmapVector<tid_t> *threads);
112 InternalMmapVector<char> buffer_;
H A Dsanitizer_fuchsia.h29 InternalMmapVector<zx_info_maps_t> data;
H A Dsanitizer_stoptheworld.h36 uptr index, InternalMmapVector<uptr> *buffer, uptr *sp) const { in GetRegistersAndSP()
H A Dsanitizer_win.cpp510 InternalMmapVector<ModuleInfo> module_infos(num_modules); in DumpProcessMap()
671 InternalMmapVector<char> buf(4 + sizeof(IMAGE_FILE_HEADER) + in init()
673 InternalMmapVector<wchar_t> modname_utf16(kMaxPathLength); in init()
674 InternalMmapVector<char> module_name(kMaxPathLength); in init()
1080 InternalMmapVector<wchar_t> binname_utf16(kMaxPathLength); in ReadBinaryName()
1173 InternalMmapVector<wchar_t> filename; in LogFullErrorReport()
H A Dsanitizer_linux_libcdep.cpp397 static_cast<InternalMmapVector<TlsBlock> *>(data)->push_back( in CollectStaticTlsBlocks()
407 InternalMmapVector<TlsBlock> ranges; in GetStaticTlsBoundary()
678 InternalMmapVector<char> module_name(kMaxPathLength); in dl_iterate_phdr_cb()
795 InternalMmapVector<u8> buffer(4096); in GetNumberOfCPUs()
/llvm-project-15.0.7/compiler-rt/lib/lsan/
H A Dlsan_common.h92 using LeakedChunks = InternalMmapVector<LeakedChunk>;
125 InternalMmapVector<Leak> leaks_;
126 InternalMmapVector<LeakedObject> leaked_objects_;
129 typedef InternalMmapVector<uptr> Frontier;
255 void GetAllThreadAllocatorCachesLocked(InternalMmapVector<uptr> *caches);
H A Dlsan_common.cpp73 InternalMmapVector<u32> suppressed_stacks;
88 const InternalMmapVector<u32> &GetSortedSuppressedStacks() { in GetSortedSuppressedStacks()
346 InternalMmapVector<uptr> ptrs; in ProcessThreadRegistry()
369 InternalMmapVector<uptr> registers; in ProcessThreads()
549 const InternalMmapVector<u32> &suppressed = in IgnoredSuppressedCb()
550 *static_cast<const InternalMmapVector<u32> *>(arg); in IgnoredSuppressedCb()
576 const InternalMmapVector<u32> &suppressed_stacks = in ClassifyAllChunks()
624 InternalMmapVector<Suppression *> matched; in PrintMatchedSuppressions()
641 const InternalMmapVector<tid_t> &suspended_threads = in ReportIfNotSuspended()
642 *(const InternalMmapVector<tid_t> *)arg; in ReportIfNotSuspended()
[all …]
H A Dlsan_fuchsia.cpp70 void GetAllThreadAllocatorCachesLocked(InternalMmapVector<uptr> *caches) { in GetAllThreadAllocatorCachesLocked()
/llvm-project-15.0.7/compiler-rt/lib/hwasan/
H A Dhwasan_thread_list.h194 InternalMmapVector<Thread *> free_list_;
196 InternalMmapVector<Thread *> live_list_;
/llvm-project-15.0.7/compiler-rt/lib/stats/
H A Dstats.cpp44 InternalMmapVector<char> path(kMaxPathLength); in OpenStatsFile()
/llvm-project-15.0.7/compiler-rt/lib/asan/
H A Dasan_memory_profile.cpp83 InternalMmapVector<AllocationSite> allocations_;
H A Dasan_report.h46 InternalMmapVector<StackVarDescr> *vars);

123