Home
last modified time | relevance | path

Searched refs:SwapAllocator (Results 1 – 6 of 6) sorted by relevance

/art/compiler/utils/
Dswap_space.h100 template <typename T> class SwapAllocator; variable
103 class SwapAllocator<void> {
111 typedef SwapAllocator<U> other;
114 explicit SwapAllocator(SwapSpace* swap_space) : swap_space_(swap_space) {} in SwapAllocator() function
117 SwapAllocator(const SwapAllocator<U>& other) : swap_space_(other.swap_space_) {} in SwapAllocator() function
119 SwapAllocator(const SwapAllocator& other) = default;
120 SwapAllocator& operator=(const SwapAllocator& other) = default;
121 ~SwapAllocator() = default;
127 friend class SwapAllocator; variable
130 friend bool operator==(const SwapAllocator<U>& lhs, const SwapAllocator<U>& rhs);
[all …]
Dswap_space_test.cc40 SwapAllocator<void> alloc(use_file ? &pool : nullptr); in SwapTest()
/art/compiler/driver/
Dcompiled_method_storage.h48 SwapAllocator<void> GetSwapSpaceAllocator() { in GetSwapSpaceAllocator()
49 return SwapAllocator<void>(swap_space_.get()); in GetSwapSpaceAllocator()
Dcompiled_method_storage.cc36 SwapAllocator<uint8_t> allocator(swap_space); in CopyArray()
45 SwapAllocator<uint8_t> allocator(swap_space); in ReleaseArray()
Dcompiler_driver.h67 using SwapSrcMap = SrcMap<SwapAllocator<SrcMapElem>>;
/art/compiler/
Dcompiled_method.cc133 SwapAllocator<CompiledMethod> alloc(driver->GetCompiledMethodStorage()->GetSwapSpaceAllocator()); in SwapAllocCompiledMethod()
149 SwapAllocator<CompiledMethod> alloc(driver->GetCompiledMethodStorage()->GetSwapSpaceAllocator()); in ReleaseSwapAllocatedCompiledMethod()