Home
last modified time | relevance | path

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

/art/compiler/linker/
Drelative_patcher_test.h57 compiled_methods_(), in RelativePatcherTest()
74 compiled_methods_.emplace_back(new CompiledMethod( in AddCompiledMethod()
86 for (auto& compiled_method : compiled_methods_) { in Link()
116 for (auto& compiled_method : compiled_methods_) { in Link()
166 CHECK_EQ(compiled_methods_[idx]->GetQuickCode()->size(), expected_code.size()); in CheckLinkedMethod()
170 size_t offset = result.second - compiled_methods_[idx]->CodeDelta(); in CheckLinkedMethod()
246 std::vector<std::unique_ptr<CompiledMethod>> compiled_methods_; variable
/art/compiler/
Doat_writer.h215 DCHECK_LT(class_def_method_index, compiled_methods_.size()); in GetCompiledMethod()
216 return compiled_methods_[class_def_method_index]; in GetCompiledMethod()
224 std::vector<CompiledMethod*> compiled_methods_; variable
Doat_writer.cc298 compiled_methods_(), in InitOatClassesMethodVisitor()
300 compiled_methods_.reserve(256u); in InitOatClassesMethodVisitor()
305 compiled_methods_.clear(); in StartClass()
318 compiled_methods_.push_back(compiled_method); in VisitMethod()
337 OatClass* oat_class = new OatClass(offset_, compiled_methods_, in EndClass()
346 std::vector<CompiledMethod*> compiled_methods_; member in art::OatWriter::InitOatClassesMethodVisitor
1466 : compiled_methods_(compiled_methods) { in OatClass()
1503 CompiledMethod* compiled_method = compiled_methods_[i]; in OatClass()
/art/compiler/driver/
Dcompiler_driver.cc371 compiled_methods_(MethodTable::key_compare()), in CompilerDriver()
452 for (auto& pair : compiled_methods_) { in ~CompilerDriver()
2323 compiled_methods_.Put(method_ref, compiled_method); in CompileMethod()
2346 auto it = compiled_methods_.find(method_ref); in RemoveCompiledMethod()
2347 if (it != compiled_methods_.end()) { in RemoveCompiledMethod()
2349 compiled_methods_.erase(it); in RemoveCompiledMethod()
2395 MethodTable::const_iterator it = compiled_methods_.find(ref); in GetCompiledMethod()
2396 if (it == compiled_methods_.end()) { in GetCompiledMethod()
Dcompiler_driver.h639 MethodTable compiled_methods_ GUARDED_BY(compiled_methods_lock_);
/art/dex2oat/
Ddex2oat.cc1243 compiled_methods_.reset(ReadCommentedInputFromZip(compiled_methods_zip_filename_, in Setup()
1248 compiled_methods_.reset(ReadCommentedInputFromFile(compiled_methods_filename_, in Setup()
1251 if (compiled_methods_.get() == nullptr) { in Setup()
1257 compiled_methods_.reset(nullptr); // By default compile everything. in Setup()
1891 std::unique_ptr<std::unordered_set<std::string>> compiled_methods_; member in art::FINAL
/art/compiler/linker/arm64/
Drelative_patcher_arm64_test.cc238 CHECK_EQ(compiled_method_refs_.size(), compiled_methods_.size()); in TestNopsAdrpInsn2LdrHasThunk()
239 uint32_t method1_size = compiled_methods_[0]->GetQuickCode()->size(); in TestNopsAdrpInsn2LdrHasThunk()