Home
last modified time | relevance | path

Searched refs:linear_alloc (Results 1 – 12 of 12) sorted by relevance

/art/runtime/mirror/
Ddex_cache.cc43 LinearAlloc* linear_alloc, in InitializeDexCache() argument
58 ? reinterpret_cast<uint8_t*>(linear_alloc->AllocAlign16(self, layout.Size())) in InitializeDexCache()
59 : reinterpret_cast<uint8_t*>(linear_alloc->Alloc(self, layout.Size())); in InitializeDexCache()
221 LinearAlloc* linear_alloc = Runtime::Current()->GetLinearAlloc(); in AddPreResolvedStringsArray() local
225 linear_alloc->AllocArray<GcRoot<mirror::String>>(self, num_strings); in AddPreResolvedStringsArray()
Ddex_cache_test.cc88 LinearAlloc* const linear_alloc = klass->GetClassLoader()->GetAllocator(); in TEST_F() local
89 EXPECT_NE(linear_alloc, runtime_->GetLinearAlloc()); in TEST_F()
90 EXPECT_TRUE(linear_alloc->Contains(klass->GetDexCache()->GetResolvedMethods())); in TEST_F()
Ddex_cache.h193 LinearAlloc* linear_alloc,
/art/runtime/
Dcha.h129 void RemoveDependenciesForLinearAlloc(const LinearAlloc* linear_alloc)
Dcha.cc707 void ClassHierarchyAnalysis::RemoveDependenciesForLinearAlloc(const LinearAlloc* linear_alloc) { in RemoveDependenciesForLinearAlloc() argument
711 if (linear_alloc->ContainsUnsafe(it->first)) { in RemoveDependenciesForLinearAlloc()
Dstack.cc728 LinearAlloc* const linear_alloc = runtime->GetLinearAlloc(); in SanityCheckFrame() local
729 if (!linear_alloc->Contains(method)) { in SanityCheckFrame()
738 : linear_alloc; in SanityCheckFrame()
Druntime.cc2266 static ArtMethod* CreateRuntimeMethod(ClassLinker* class_linker, LinearAlloc* linear_alloc) in CreateRuntimeMethod() argument
2273 linear_alloc, in CreateRuntimeMethod()
2282 ArtMethod* Runtime::CreateImtConflictMethod(LinearAlloc* linear_alloc) { in CreateImtConflictMethod() argument
2284 ArtMethod* method = CreateRuntimeMethod(class_linker, linear_alloc); in CreateImtConflictMethod()
2293 method->SetImtConflictTable(class_linker->CreateImtConflictTable(/*count=*/0u, linear_alloc), in CreateImtConflictMethod()
Dclass_linker.h724 ImtConflictTable* CreateImtConflictTable(size_t count, LinearAlloc* linear_alloc);
728 LinearAlloc* linear_alloc,
924 LinearAlloc* linear_alloc)
Dclass_linker.cc828 LinearAlloc* linear_alloc = runtime->GetLinearAlloc(); in InitWithoutImage() local
831 runtime->SetImtConflictMethod(runtime->CreateImtConflictMethod(linear_alloc)); in InitWithoutImage()
832 runtime->SetImtUnimplementedMethod(runtime->CreateImtConflictMethod(linear_alloc)); in InitWithoutImage()
2535 LinearAlloc* linear_alloc) { in AllocAndInitializeDexCache() argument
2545 linear_alloc, in AllocAndInitializeDexCache()
4112 LinearAlloc* const linear_alloc = GetOrCreateAllocatorForClassLoader(class_loader); in RegisterDexFile() local
4113 DCHECK(linear_alloc != nullptr); in RegisterDexFile()
4145 linear_alloc, in RegisterDexFile()
6832 LinearAlloc* linear_alloc = GetAllocatorForClassLoader(klass->GetClassLoader()); in AddMethodToConflictTable() local
6837 ? runtime->CreateImtConflictMethod(linear_alloc) in AddMethodToConflictTable()
[all …]
Druntime.h440 ArtMethod* CreateImtConflictMethod(LinearAlloc* linear_alloc)
DAndroid.bp153 "linear_alloc.cc",
/art/runtime/arch/
Dstub_test.cc1774 LinearAlloc* linear_alloc = Runtime::Current()->GetLinearAlloc(); in TEST_F() local
1775 ArtMethod* conflict_method = Runtime::Current()->CreateImtConflictMethod(linear_alloc); in TEST_F()
1777 Runtime::Current()->GetClassLinker()->CreateImtConflictTable(/*count=*/0u, linear_alloc); in TEST_F()
1778 void* data = linear_alloc->Alloc( in TEST_F()