Searched refs:linear_alloc (Results 1 – 12 of 12) sorted by relevance
/art/runtime/mirror/ |
D | dex_cache.cc | 43 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()
|
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.h | 193 LinearAlloc* linear_alloc,
|
/art/runtime/ |
D | cha.h | 129 void RemoveDependenciesForLinearAlloc(const LinearAlloc* linear_alloc)
|
D | cha.cc | 707 void ClassHierarchyAnalysis::RemoveDependenciesForLinearAlloc(const LinearAlloc* linear_alloc) { in RemoveDependenciesForLinearAlloc() argument 711 if (linear_alloc->ContainsUnsafe(it->first)) { in RemoveDependenciesForLinearAlloc()
|
D | stack.cc | 728 LinearAlloc* const linear_alloc = runtime->GetLinearAlloc(); in SanityCheckFrame() local 729 if (!linear_alloc->Contains(method)) { in SanityCheckFrame() 738 : linear_alloc; in SanityCheckFrame()
|
D | runtime.cc | 2266 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()
|
D | class_linker.h | 724 ImtConflictTable* CreateImtConflictTable(size_t count, LinearAlloc* linear_alloc); 728 LinearAlloc* linear_alloc, 924 LinearAlloc* linear_alloc)
|
D | class_linker.cc | 828 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 …]
|
D | runtime.h | 440 ArtMethod* CreateImtConflictMethod(LinearAlloc* linear_alloc)
|
D | Android.bp | 153 "linear_alloc.cc",
|
/art/runtime/arch/ |
D | stub_test.cc | 1774 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()
|