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

  /art/runtime/
oat_file-inl.h 51 const void* code = EntryPointToCodePointer(GetQuickCode());
59 const void* code = EntryPointToCodePointer(GetQuickCode());
67 const void* code = EntryPointToCodePointer(GetQuickCode());
111 inline const void* OatFile::OatMethod::GetQuickCode() const {
oat_file.h 157 const void* GetQuickCode() const;
art_method.cc 668 const void* oat_entry_point = oat_method.GetQuickCode();
692 return oat_method.GetQuickCode();
    [all...]
oat_file.cc     [all...]
class_linker.cc     [all...]
  /art/compiler/
compiled_method-inl.h 28 inline ArrayRef<const uint8_t> CompiledCode::GetQuickCode() const {
compiled_method.h 52 ArrayRef<const uint8_t> GetQuickCode() const;
common_compiler_test.cc 58 if (compiled_method != nullptr && compiled_method->GetQuickCode().size() != 0u) {
59 ArrayRef<const uint8_t> code = compiled_method->GetQuickCode();
  /art/compiler/driver/
compiled_method_storage_test.cc 112 ASSERT_EQ(same_code, lhs->GetQuickCode().data() == rhs->GetQuickCode().data())
  /art/compiler/linker/
relative_patcher_test.h 116 const auto code = compiled_method->GetQuickCode();
147 ArrayRef<const uint8_t> code = compiled_method->GetQuickCode();
200 CHECK_EQ(compiled_methods_[idx]->GetQuickCode().size(), expected_code.size());
  /art/dex2oat/linker/
oat_writer_test.cc 67 EXPECT_TRUE(oat_method.GetQuickCode() == nullptr) << method->PrettyMethod() << " "
68 << oat_method.GetQuickCode();
73 const void* quick_oat_code = oat_method.GetQuickCode();
80 ArrayRef<const uint8_t> quick_code = compiled_method->GetQuickCode();
    [all...]
oat_writer.cc 834 return method != nullptr && !method->GetQuickCode().empty();
840 return method != nullptr && method->GetQuickCode().empty() && !method->GetVmapTable().empty();
    [all...]
image_writer.h 481 const uint8_t* GetQuickCode(ArtMethod* method,
image_writer.cc     [all...]
  /art/compiler/linker/arm/
relative_patcher_arm_base.cc 289 uint32_t max_code_size = compiled_method->GetQuickCode().size() + max_extra_space;
  /art/oatdump/
oatdump.cc 680 return oat_class.GetOatMethod(method_index).GetQuickCode();
    [all...]
  /art/compiler/linker/arm64/
relative_patcher_arm64.cc 123 ArrayRef<const uint8_t> code = compiled_method->GetQuickCode();
relative_patcher_arm64_test.cc 350 uint32_t method1_size = compiled_methods_[0]->GetQuickCode().size();
    [all...]

Completed in 577 milliseconds