Home
last modified time | relevance | path

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

/art/runtime/mirror/
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.cc42 LinearAlloc* linear_alloc, in InitializeDexCache() argument
60 ? reinterpret_cast<uint8_t*>(linear_alloc->AllocAlign16(self, layout.Size())) in InitializeDexCache()
61 : reinterpret_cast<uint8_t*>(linear_alloc->Alloc(self, layout.Size())); in InitializeDexCache()
Ddex_cache.h199 LinearAlloc* linear_alloc,
/art/runtime/
Dcha.h117 void RemoveDependenciesForLinearAlloc(const LinearAlloc* linear_alloc)
Dcha.cc572 void ClassHierarchyAnalysis::RemoveDependenciesForLinearAlloc(const LinearAlloc* linear_alloc) { in RemoveDependenciesForLinearAlloc() argument
576 if (linear_alloc->ContainsUnsafe(it->first)) { in RemoveDependenciesForLinearAlloc()
Dstack.cc647 LinearAlloc* const linear_alloc = runtime->GetLinearAlloc(); in SanityCheckFrame() local
648 if (!linear_alloc->Contains(method)) { in SanityCheckFrame()
656 : linear_alloc; in SanityCheckFrame()
Druntime.cc1905 static ArtMethod* CreateRuntimeMethod(ClassLinker* class_linker, LinearAlloc* linear_alloc) { in CreateRuntimeMethod() argument
1911 linear_alloc, in CreateRuntimeMethod()
1920 ArtMethod* Runtime::CreateImtConflictMethod(LinearAlloc* linear_alloc) { in CreateImtConflictMethod() argument
1922 ArtMethod* method = CreateRuntimeMethod(class_linker, linear_alloc); in CreateImtConflictMethod()
1931 method->SetImtConflictTable(class_linker->CreateImtConflictTable(/*count*/0u, linear_alloc), in CreateImtConflictMethod()
Dclass_linker.h633 ImtConflictTable* CreateImtConflictTable(size_t count, LinearAlloc* linear_alloc);
637 LinearAlloc* linear_alloc,
786 LinearAlloc* linear_alloc)
Dclass_linker.cc559 LinearAlloc* linear_alloc = runtime->GetLinearAlloc(); in InitWithoutImage() local
562 runtime->SetImtConflictMethod(runtime->CreateImtConflictMethod(linear_alloc)); in InitWithoutImage()
563 runtime->SetImtUnimplementedMethod(runtime->CreateImtConflictMethod(linear_alloc)); in InitWithoutImage()
2366 LinearAlloc* linear_alloc) { in AllocAndInitializeDexCache() argument
2376 linear_alloc, in AllocAndInitializeDexCache()
3637 LinearAlloc* const linear_alloc = GetOrCreateAllocatorForClassLoader(class_loader); in RegisterDexFile() local
3638 DCHECK(linear_alloc != nullptr); in RegisterDexFile()
3666 linear_alloc, in RegisterDexFile()
6248 LinearAlloc* linear_alloc = GetAllocatorForClassLoader(klass->GetClassLoader()); in AddMethodToConflictTable() local
6253 ? runtime->CreateImtConflictMethod(linear_alloc) in AddMethodToConflictTable()
[all …]
Druntime.h373 ArtMethod* CreateImtConflictMethod(LinearAlloc* linear_alloc)
DAndroid.bp132 "linear_alloc.cc",
/art/runtime/arch/
Dstub_test.cc1898 LinearAlloc* linear_alloc = Runtime::Current()->GetLinearAlloc(); in TEST_F() local
1899 ArtMethod* conflict_method = Runtime::Current()->CreateImtConflictMethod(linear_alloc); in TEST_F()
1901 Runtime::Current()->GetClassLinker()->CreateImtConflictTable(/*count*/0u, linear_alloc); in TEST_F()
1902 void* data = linear_alloc->Alloc( in TEST_F()