Searched refs:linear_alloc (Results 1 – 9 of 9) sorted by relevance
/art/runtime/ |
D | cha.h | 129 void RemoveDependenciesForLinearAlloc(const LinearAlloc* linear_alloc)
|
D | cha.cc | 695 void ClassHierarchyAnalysis::RemoveDependenciesForLinearAlloc(const LinearAlloc* linear_alloc) { in RemoveDependenciesForLinearAlloc() argument 699 if (linear_alloc->ContainsUnsafe(it->first)) { in RemoveDependenciesForLinearAlloc()
|
D | stack.cc | 665 LinearAlloc* const linear_alloc = runtime->GetLinearAlloc(); in ValidateFrame() local 666 if (!linear_alloc->Contains(method)) { in ValidateFrame() 675 : linear_alloc; in ValidateFrame()
|
D | runtime.cc | 2526 static ArtMethod* CreateRuntimeMethod(ClassLinker* class_linker, LinearAlloc* linear_alloc) in CreateRuntimeMethod() argument 2533 linear_alloc, in CreateRuntimeMethod() 2542 ArtMethod* Runtime::CreateImtConflictMethod(LinearAlloc* linear_alloc) { in CreateImtConflictMethod() argument 2544 ArtMethod* method = CreateRuntimeMethod(class_linker, linear_alloc); in CreateImtConflictMethod() 2553 method->SetImtConflictTable(class_linker->CreateImtConflictTable(/*count=*/0u, linear_alloc), in CreateImtConflictMethod()
|
D | class_linker.cc | 784 LinearAlloc* linear_alloc = runtime->GetLinearAlloc(); in InitWithoutImage() local 787 runtime->SetImtConflictMethod(runtime->CreateImtConflictMethod(linear_alloc)); in InitWithoutImage() 788 runtime->SetImtUnimplementedMethod(runtime->CreateImtConflictMethod(linear_alloc)); in InitWithoutImage() 3952 LinearAlloc* const linear_alloc = GetOrCreateAllocatorForClassLoader(class_loader); in RegisterDexFile() local 3953 DCHECK(linear_alloc != nullptr); in RegisterDexFile() 6178 LinearAlloc* linear_alloc = GetAllocatorForClassLoader(klass->GetClassLoader()); in AddMethodToConflictTable() local 6182 ? runtime->CreateImtConflictMethod(linear_alloc) in AddMethodToConflictTable() 6187 void* data = linear_alloc->Alloc( in AddMethodToConflictTable() 6300 LinearAlloc* linear_alloc, in CreateImtConflictTable() argument 6302 void* data = linear_alloc->Alloc(Thread::Current(), in CreateImtConflictTable() [all …]
|
D | class_linker.h | 724 ImtConflictTable* CreateImtConflictTable(size_t count, LinearAlloc* linear_alloc); 728 LinearAlloc* linear_alloc,
|
D | runtime.h | 477 ArtMethod* CreateImtConflictMethod(LinearAlloc* linear_alloc)
|
D | Android.bp | 197 "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()
|