Home
last modified time | relevance | path

Searched refs:ThreadDataSections (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/compiler-rt/lib/orc/
H A Delfnix_platform.cpp153 std::map<const char *, size_t> ThreadDataSections; member in __anonebe0e5700111::ELFNixPlatformRuntimeState
266 auto I = ThreadDataSections.upper_bound(ThreadData); in getThreadDataSectionFor()
268 if (I == ThreadDataSections.begin()) in getThreadDataSectionFor()
318 auto I = ThreadDataSections.upper_bound(ThreadDataSection.data()); in registerThreadDataSection()
319 if (I != ThreadDataSections.begin()) { in registerThreadDataSection()
324 ThreadDataSections.insert( in registerThreadDataSection()
H A Dmacho_platform.cpp226 std::map<const char *, size_t> ThreadDataSections; member in __anon104e62320211::MachOPlatformRuntimeState
300 auto I = ThreadDataSections.upper_bound(ThreadDataSection.data()); in registerThreadDataSection()
301 if (I != ThreadDataSections.begin()) { in registerThreadDataSection()
306 ThreadDataSections.insert( in registerThreadDataSection()
314 auto I = ThreadDataSections.find(ThreadDataSection.data()); in deregisterThreadDataSection()
315 if (I == ThreadDataSections.end()) in deregisterThreadDataSection()
318 ThreadDataSections.erase(I); in deregisterThreadDataSection()
529 auto I = ThreadDataSections.upper_bound(ThreadData); in getThreadDataSectionFor()
531 if (I == ThreadDataSections.begin()) in getThreadDataSectionFor()