HomeSort by relevance Sort by last modified time
    Searched refs:compiled_methods_ (Results 1 - 7 of 7) sorted by null

  /art/compiler/linker/
relative_patcher_test.h 57 compiled_methods_(),
74 compiled_methods_.emplace_back(new CompiledMethod(
86 for (auto& compiled_method : compiled_methods_) {
116 for (auto& compiled_method : compiled_methods_) {
166 CHECK_EQ(compiled_methods_[idx]->GetQuickCode()->size(), expected_code.size());
170 size_t offset = result.second - compiled_methods_[idx]->CodeDelta();
246 std::vector<std::unique_ptr<CompiledMethod>> compiled_methods_; member in class:art::linker::RelativePatcherTest
  /art/compiler/
oat_writer.h 215 DCHECK_LT(class_def_method_index, compiled_methods_.size());
216 return compiled_methods_[class_def_method_index];
224 std::vector<CompiledMethod*> compiled_methods_; member in class:art::OatWriter::OatClass
228 // CompiledMethod entry in OatClass::compiled_methods_ should be
251 // OatClass::compiled_methods_ contains null values (and
oat_writer.cc 298 compiled_methods_(),
300 compiled_methods_.reserve(256u);
305 compiled_methods_.clear();
311 // Fill in the compiled_methods_ array for methods that have a
318 compiled_methods_.push_back(compiled_method);
337 OatClass* oat_class = new OatClass(offset_, compiled_methods_,
346 std::vector<CompiledMethod*> compiled_methods_; member in class:art::OatWriter::InitOatClassesMethodVisitor
    [all...]
  /art/compiler/driver/
compiler_driver.cc 371 compiled_methods_(MethodTable::key_compare()),
452 for (auto& pair : compiled_methods_) {
    [all...]
compiler_driver.h 639 MethodTable compiled_methods_ GUARDED_BY(compiled_methods_lock_);
    [all...]
  /art/dex2oat/
dex2oat.cc 1891 std::unique_ptr<std::unordered_set<std::string>> compiled_methods_; member in class:art::FINAL
    [all...]
  /art/compiler/linker/arm64/
relative_patcher_arm64_test.cc 238 CHECK_EQ(compiled_method_refs_.size(), compiled_methods_.size());
239 uint32_t method1_size = compiled_methods_[0]->GetQuickCode()->size();

Completed in 96 milliseconds