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

  /art/compiler/
oat_test.cc 76 const SwapVector<uint8_t>* portable_code = compiled_method->GetPortableCode(); local
77 EXPECT_TRUE(portable_code != nullptr);
78 size_t code_size = portable_code->size() * sizeof(portable_code[0]);
79 EXPECT_EQ(0, memcmp(quick_oat_code, &portable_code[0], code_size))
81 CHECK_EQ(0, memcmp(quick_oat_code, &portable_code[0], code_size));
compiled_method.cc 45 const ArrayRef<const uint8_t>* portable_code) {
46 if (portable_code != nullptr) {
47 CHECK(!portable_code->empty());
48 portable_code_ = compiler_driver_->DeduplicateCode(*portable_code);
compiled_method.h 60 const ArrayRef<const uint8_t>* portable_code);
image_writer.cc 1184 const byte* portable_code = GetOatAddress(orig->GetPortableOatCodeOffset()); local
    [all...]
oat_writer.cc 345 const SwapVector<uint8_t>* portable_code = compiled_method->GetPortableCode(); local
347 if (portable_code != nullptr) {
    [all...]
  /art/runtime/
instrumentation.cc 86 const void* portable_code, bool have_portable_code)
89 method->SetEntryPointFromPortableCompiledCode(portable_code);
108 DCHECK(portable_code == GetPortableToInterpreterBridge());
112 DCHECK(portable_code == class_linker->GetPortableResolutionTrampoline());
680 const void* portable_code, bool have_portable_code) {
685 new_portable_code = portable_code;
693 new_portable_code = portable_code;
703 DCHECK((portable_code == class_linker->GetPortableResolutionTrampoline()) ||
704 (portable_code == GetPortableToInterpreterBridge()));
706 new_portable_code = portable_code;
846 const void* portable_code = class_linker->GetPortableOatCodeFor(method, &have_portable_code); local
848 const void* portable_code = nullptr; local
    [all...]
instrumentation.h 197 const void* portable_code, bool have_portable_code)
class_linker.cc 2582 const void* portable_code = nullptr; local
    [all...]
  /art/oatdump/
oatdump.cc 761 const void* portable_code = oat_method.GetPortableCode(); local
762 CHECK(portable_code != nullptr);
923 const void* portable_code = oat_method.GetPortableCode(); local
    [all...]

Completed in 291 milliseconds