Home
last modified time | relevance | path

Searched refs:compiled_methods_ (Results 1 – 5 of 5) sorted by relevance

/art/dex2oat/linker/
Drelative_patcher_test.h50 compiled_methods_(), in RelativePatcherTest()
68 compiled_methods_.clear(); in TearDown()
73 compiled_methods_.clear(); in TearDown()
91 compiled_methods_.clear(); in Reset()
107 compiled_methods_.emplace_back(new CompiledMethod(
129 for (auto& compiled_method : compiled_methods_) { in Link()
158 for (auto& compiled_method : compiled_methods_) { in Link()
221 CHECK_EQ(compiled_methods_[idx]->GetQuickCode().size(), expected_code.size()); in CheckLinkedMethod()
225 size_t offset = result.second - compiled_methods_[idx]->CodeDelta(); in CheckLinkedMethod()
370 std::vector<std::unique_ptr<CompiledMethod>> compiled_methods_; variable
Doat_writer.cc250 return compiled_methods_[class_def_method_index]; in GetCompiledMethod()
254 dchecked_vector<CompiledMethod*> compiled_methods_; member in art::linker::OatWriter::OatClass
930 compiled_methods_(), in InitOatClassesMethodVisitor()
941 compiled_methods_.reserve(256u); in InitOatClassesMethodVisitor()
948 compiled_methods_.clear(); in StartClass()
962 compiled_methods_.push_back(compiled_method); in VisitMethod()
987 compiled_methods_.size(), in EndClass()
992 writer_->oat_classes_.emplace_back(compiled_methods_, in EndClass()
1001 dchecked_vector<CompiledMethod*> compiled_methods_; member in art::linker::OatWriter::InitOatClassesMethodVisitor
4138 : compiled_methods_(compiled_methods) { in OatClass()
[all …]
/art/dex2oat/driver/
Dcompiler_driver.h318 MethodTable compiled_methods_; variable
Dcompiler_driver.cc276 compiled_methods_.Visit([this](const DexFileReference& ref ATTRIBUTE_UNUSED, in ~CompilerDriver()
870 if (!compiled_methods_.HaveDexFile(dex_file)) { in PreCompile()
871 compiled_methods_.AddDexFile(dex_file); in PreCompile()
2701 MethodTable::InsertResult result = compiled_methods_.Insert(method_ref, in AddCompiledMethod()
2710 CHECK(compiled_methods_.Remove(method_ref, &ret)); in RemoveCompiledMethod()
2785 compiled_methods_.Get(ref, &compiled_method); in GetCompiledMethod()
/art/dex2oat/linker/arm64/
Drelative_patcher_arm64_test.cc390 CHECK_EQ(compiled_method_refs_.size(), compiled_methods_.size()); in TestNopsAdrpInsn2AndUseHasThunk()
391 uint32_t method1_size = compiled_methods_[0]->GetQuickCode().size(); in TestNopsAdrpInsn2AndUseHasThunk()