![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /proc/thread-self/root/usr/include/llvm-6.0/llvm/ExecutionEngine/Orc/ |
Upload File : |
//===- SymbolStringPool.h - Multi-threaded pool for JIT symbols -*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // Contains a multi-threaded string pool suitable for use with ORC. // //===----------------------------------------------------------------------===// #ifndef LLVM_EXECUTIONENGINE_ORC_SYMBOLSTRINGPOOL_H #define LLVM_EXECUTIONENGINE_ORC_SYMBOLSTRINGPOOL_H #include "llvm/ADT/StringMap.h" #include <atomic> #include <mutex> namespace llvm { namespace orc { class SymbolStringPtr; /// @brief String pool for symbol names used by the JIT. class SymbolStringPool { friend class SymbolStringPtr; public: /// @brief Create a symbol string pointer from the given string. SymbolStringPtr intern(StringRef S); /// @brief Remove from the pool any entries that are no longer referenced. void clearDeadEntries(); /// @brief Returns true if the pool is empty. bool empty() const; private: using RefCountType = std::atomic<uint64_t>; using PoolMap = StringMap<RefCountType>; using PoolMapEntry = StringMapEntry<RefCountType>; mutable std::mutex PoolMutex; PoolMap Pool; }; /// @brief Pointer to a pooled string representing a symbol name. class SymbolStringPtr { friend class SymbolStringPool; public: SymbolStringPtr() = default; SymbolStringPtr(const SymbolStringPtr &Other) : S(Other.S) { if (S) ++S->getValue(); } SymbolStringPtr& operator=(const SymbolStringPtr &Other) { if (S) --S->getValue(); S = Other.S; if (S) ++S->getValue(); return *this; } SymbolStringPtr(SymbolStringPtr &&Other) : S(nullptr) { std::swap(S, Other.S); } SymbolStringPtr& operator=(SymbolStringPtr &&Other) { if (S) --S->getValue(); S = nullptr; std::swap(S, Other.S); return *this; } ~SymbolStringPtr() { if (S) --S->getValue(); } bool operator==(const SymbolStringPtr &Other) const { return S == Other.S; } bool operator!=(const SymbolStringPtr &Other) const { return !(*this == Other); } bool operator<(const SymbolStringPtr &Other) const { return S->getValue() < Other.S->getValue(); } private: SymbolStringPtr(SymbolStringPool::PoolMapEntry *S) : S(S) { if (S) ++S->getValue(); } SymbolStringPool::PoolMapEntry *S = nullptr; }; inline SymbolStringPtr SymbolStringPool::intern(StringRef S) { std::lock_guard<std::mutex> Lock(PoolMutex); auto I = Pool.find(S); if (I != Pool.end()) return SymbolStringPtr(&*I); bool Added; std::tie(I, Added) = Pool.try_emplace(S, 0); assert(Added && "Insert should always succeed here"); return SymbolStringPtr(&*I); } inline void SymbolStringPool::clearDeadEntries() { std::lock_guard<std::mutex> Lock(PoolMutex); for (auto I = Pool.begin(), E = Pool.end(); I != E;) { auto Tmp = std::next(I); if (I->second == 0) Pool.erase(I); I = Tmp; } } inline bool SymbolStringPool::empty() const { std::lock_guard<std::mutex> Lock(PoolMutex); return Pool.empty(); } } // end namespace orc } // end namespace llvm #endif // LLVM_EXECUTIONENGINE_ORC_SYMBOLSTRINGPOOL_H