Home
last modified time | relevance | path

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

/art/compiler/linker/
Drelative_patcher_test.h71 compiled_methods_(), in RelativePatcherTest()
88 compiled_methods_.emplace_back(new CompiledMethod( in AddCompiledMethod()
106 for (auto& compiled_method : compiled_methods_) { in Link()
136 for (auto& compiled_method : compiled_methods_) { in Link()
195 CHECK_EQ(compiled_methods_[idx]->GetQuickCode().size(), expected_code.size()); in CheckLinkedMethod()
199 size_t offset = result.second - compiled_methods_[idx]->CodeDelta(); in CheckLinkedMethod()
276 std::vector<std::unique_ptr<CompiledMethod>> compiled_methods_; variable
/art/compiler/
Doat_writer.cc161 return compiled_methods_[class_def_method_index]; in GetCompiledMethod()
169 dchecked_vector<CompiledMethod*> compiled_methods_; member in art::OatWriter::OatClass
603 compiled_methods_(), in InitOatClassesMethodVisitor()
610 compiled_methods_.reserve(256u); in InitOatClassesMethodVisitor()
615 compiled_methods_.clear(); in StartClass()
629 compiled_methods_.push_back(compiled_method); in VisitMethod()
649 compiled_methods_, in EndClass()
657 dchecked_vector<CompiledMethod*> compiled_methods_; member in art::OatWriter::InitOatClassesMethodVisitor
2358 : compiled_methods_(compiled_methods) { in OatClass()
2395 CompiledMethod* compiled_method = compiled_methods_[i]; in OatClass()
/art/compiler/driver/
Dcompiler_driver.cc384 compiled_methods_(MethodTable::key_compare()), in CompilerDriver()
427 for (auto& pair : compiled_methods_) { in ~CompilerDriver()
2724 compiled_methods_.Put(method_ref, compiled_method); in AddCompiledMethod()
2735 auto it = compiled_methods_.find(method_ref); in RemoveCompiledMethod()
2736 if (it != compiled_methods_.end()) { in RemoveCompiledMethod()
2738 compiled_methods_.erase(it); in RemoveCompiledMethod()
2785 MethodTable::const_iterator it = compiled_methods_.find(ref); in GetCompiledMethod()
2786 if (it == compiled_methods_.end()) { in GetCompiledMethod()
Dcompiler_driver.h658 MethodTable compiled_methods_ GUARDED_BY(compiled_methods_lock_);
/art/dex2oat/
Ddex2oat.cc2066 compiled_methods_.reset(ReadCommentedInputFromZip(compiled_methods_zip_filename_, in PrepareCompiledMethods()
2071 compiled_methods_.reset(ReadCommentedInputFromFile(compiled_methods_filename_, in PrepareCompiledMethods()
2074 if (compiled_methods_.get() == nullptr) { in PrepareCompiledMethods()
2080 compiled_methods_.reset(nullptr); // By default compile everything. in PrepareCompiledMethods()
2462 std::unique_ptr<std::unordered_set<std::string>> compiled_methods_; member in art::FINAL
/art/compiler/linker/arm64/
Drelative_patcher_arm64_test.cc305 CHECK_EQ(compiled_method_refs_.size(), compiled_methods_.size()); in TestNopsAdrpInsn2AndUseHasThunk()
306 uint32_t method1_size = compiled_methods_[0]->GetQuickCode().size(); in TestNopsAdrpInsn2AndUseHasThunk()