Searched refs:linear_alloc (Results 1 – 12 of 12) sorted by relevance
/art/runtime/mirror/ |
D | dex_cache_test.cc | 88 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()
|
D | dex_cache.cc | 42 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()
|
D | dex_cache.h | 199 LinearAlloc* linear_alloc,
|
/art/runtime/ |
D | cha.h | 117 void RemoveDependenciesForLinearAlloc(const LinearAlloc* linear_alloc)
|
D | cha.cc | 572 void ClassHierarchyAnalysis::RemoveDependenciesForLinearAlloc(const LinearAlloc* linear_alloc) { in RemoveDependenciesForLinearAlloc() argument 576 if (linear_alloc->ContainsUnsafe(it->first)) { in RemoveDependenciesForLinearAlloc()
|
D | stack.cc | 647 LinearAlloc* const linear_alloc = runtime->GetLinearAlloc(); in SanityCheckFrame() local 648 if (!linear_alloc->Contains(method)) { in SanityCheckFrame() 656 : linear_alloc; in SanityCheckFrame()
|
D | runtime.cc | 1905 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()
|
D | class_linker.h | 633 ImtConflictTable* CreateImtConflictTable(size_t count, LinearAlloc* linear_alloc); 637 LinearAlloc* linear_alloc, 786 LinearAlloc* linear_alloc)
|
D | class_linker.cc | 559 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 …]
|
D | runtime.h | 373 ArtMethod* CreateImtConflictMethod(LinearAlloc* linear_alloc)
|
D | Android.bp | 132 "linear_alloc.cc",
|
/art/runtime/arch/ |
D | stub_test.cc | 1898 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()
|