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

  /art/compiler/
compiled_method-inl.h 28 inline ArrayRef<const uint8_t> CompiledCode::GetQuickCode() const {
compiled_method.h 51 ArrayRef<const uint8_t> GetQuickCode() const;
common_compiler_test.cc 53 if (compiled_method != nullptr && compiled_method->GetQuickCode().size() != 0u) {
54 ArrayRef<const uint8_t> code = compiled_method->GetQuickCode();
  /art/runtime/
oat_file-inl.h 53 const void* code = EntryPointToCodePointer(GetQuickCode());
61 const void* code = EntryPointToCodePointer(GetQuickCode());
69 const void* code = EntryPointToCodePointer(GetQuickCode());
113 inline const void* OatFile::OatMethod::GetQuickCode() const {
oat_file.h 161 const void* GetQuickCode() const;
art_method.cc 642 const void* oat_entry_point = oat_method.GetQuickCode();
666 return oat_method.GetQuickCode();
    [all...]
oat_file.cc     [all...]
class_linker.cc     [all...]
  /art/compiler/driver/
compiled_method_storage_test.cc 86 ASSERT_EQ(same_code, lhs->GetQuickCode().data() == rhs->GetQuickCode().data())
  /art/dex2oat/linker/
relative_patcher_test.h 137 const auto code = compiled_method->GetQuickCode();
168 ArrayRef<const uint8_t> code = compiled_method->GetQuickCode();
221 CHECK_EQ(compiled_methods_[idx]->GetQuickCode().size(), expected_code.size());
oat_writer_test.cc 69 EXPECT_TRUE(oat_method.GetQuickCode() == nullptr) << method->PrettyMethod() << " "
70 << oat_method.GetQuickCode();
75 const void* quick_oat_code = oat_method.GetQuickCode();
79 ArrayRef<const uint8_t> quick_code = compiled_method->GetQuickCode();
    [all...]
oat_writer.cc 857 return method != nullptr && !method->GetQuickCode().empty();
863 return method != nullptr && method->GetQuickCode().empty() && !method->GetVmapTable().empty();
    [all...]
image_writer.h 556 const uint8_t* GetQuickCode(ArtMethod* method,
    [all...]
image_writer.cc     [all...]
  /art/dex2oat/linker/arm/
relative_patcher_arm_base.cc 296 uint32_t max_code_size = compiled_method->GetQuickCode().size() + max_extra_space;
  /art/dex2oat/linker/arm64/
relative_patcher_arm64.cc 124 ArrayRef<const uint8_t> code = compiled_method->GetQuickCode();
relative_patcher_arm64_test.cc 391 uint32_t method1_size = compiled_methods_[0]->GetQuickCode().size();
    [all...]
  /art/oatdump/
oatdump.cc 739 return oat_class.GetOatMethod(oat_method_index).GetQuickCode();
    [all...]

Completed in 132 milliseconds