Lines Matching refs:storage
24 CompiledCode::CompiledCode(CompiledMethodStorage* storage, in CompiledCode() argument
27 : storage_(storage), in CompiledCode()
28 quick_code_(storage->DeduplicateCode(quick_code)), in CompiledCode()
97 CompiledMethod::CompiledMethod(CompiledMethodStorage* storage, in CompiledMethod() argument
103 : CompiledCode(storage, instruction_set, quick_code), in CompiledMethod()
104 vmap_table_(storage->DeduplicateVMapTable(vmap_table)), in CompiledMethod()
105 cfi_info_(storage->DeduplicateCFIInfo(cfi_info)), in CompiledMethod()
106 patches_(storage->DeduplicateLinkerPatches(patches)) { in CompiledMethod()
110 CompiledMethodStorage* storage, in SwapAllocCompiledMethod() argument
116 SwapAllocator<CompiledMethod> alloc(storage->GetSwapSpaceAllocator()); in SwapAllocCompiledMethod()
119 storage, in SwapAllocCompiledMethod()
127 void CompiledMethod::ReleaseSwapAllocatedCompiledMethod(CompiledMethodStorage* storage, in ReleaseSwapAllocatedCompiledMethod() argument
129 SwapAllocator<CompiledMethod> alloc(storage->GetSwapSpaceAllocator()); in ReleaseSwapAllocatedCompiledMethod()
135 CompiledMethodStorage* storage = GetStorage(); in ~CompiledMethod() local
136 storage->ReleaseLinkerPatches(patches_); in ~CompiledMethod()
137 storage->ReleaseCFIInfo(cfi_info_); in ~CompiledMethod()
138 storage->ReleaseVMapTable(vmap_table_); in ~CompiledMethod()