Home
last modified time | relevance | path

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

/art/compiler/
Doat_writer.cc141 static const std::vector<uint8_t>* GetData(const CompiledMethod* compiled_method) ALWAYS_INLINE { in GetData()
142 return &compiled_method->GetGcMap(); in GetData()
160 static const std::vector<uint8_t>* GetData(const CompiledMethod* compiled_method) ALWAYS_INLINE { in GetData()
161 return &compiled_method->GetMappingTable(); in GetData()
182 static const std::vector<uint8_t>* GetData(const CompiledMethod* compiled_method) ALWAYS_INLINE { in GetData()
183 return &compiled_method->GetVmapTable(); in GetData()
294 CompiledMethod* compiled_method = in VisitMethod() local
296 compiled_methods_.push_back(compiled_method); in VisitMethod()
297 if (compiled_method != nullptr) { in VisitMethod()
336 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); in VisitMethod() local
[all …]
Dcommon_compiler_test.cc166 const CompiledMethod* compiled_method = nullptr; in MakeExecutable() local
170 compiled_method = in MakeExecutable()
174 if (compiled_method != nullptr) { in MakeExecutable()
175 const std::vector<uint8_t>* code = compiled_method->GetQuickCode(); in MakeExecutable()
180 const std::vector<uint8_t>& vmap_table = compiled_method->GetVmapTable(); in MakeExecutable()
183 const std::vector<uint8_t>& mapping_table = compiled_method->GetMappingTable(); in MakeExecutable()
187 compiled_method->GetFrameSizeInBytes(), in MakeExecutable()
188 compiled_method->GetCoreSpillMask(), in MakeExecutable()
189 compiled_method->GetFpSpillMask(), code_size); in MakeExecutable()
194 size_t code_offset = compiled_method->AlignCode(size - code_size); in MakeExecutable()
[all …]
Doat_test.cc42 const CompiledMethod* compiled_method = in CheckMethod() local
46 if (compiled_method == NULL) { in CheckMethod()
57 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), compiled_method->GetFrameSizeInBytes()); in CheckMethod()
58 EXPECT_EQ(oat_method.GetCoreSpillMask(), compiled_method->GetCoreSpillMask()); in CheckMethod()
59 EXPECT_EQ(oat_method.GetFpSpillMask(), compiled_method->GetFpSpillMask()); in CheckMethod()
62 const std::vector<uint8_t>* quick_code = compiled_method->GetQuickCode(); in CheckMethod()
76 const std::vector<uint8_t>* portable_code = compiled_method->GetPortableCode(); in CheckMethod()
Delf_writer_mclinker.cc248 const CompiledMethod* compiled_method = in AddMethodInputs() local
250 if (compiled_method != NULL) { in AddMethodInputs()
251 AddCompiledCodeInput(*compiled_method); in AddMethodInputs()
371 const CompiledMethod* compiled_method = in FixupOatMethodOffsets() local
373 if (compiled_method != NULL) { in FixupOatMethodOffsets()
374 uint32_t offset = FixupCompiledCodeOffset(*elf_file.get(), oatdata_address, *compiled_method); in FixupOatMethodOffsets()
DAndroid.mk22 compiled_method.cc \
/art/compiler/sea_ir/
Dfrontend.cc57 CompiledMethod* compiled_method = in CompileMethodWithSeaIr() local
61 return compiled_method; in CompileMethodWithSeaIr()
/art/compiler/driver/
Dcompiler_driver.cc2004 CompiledMethod* compiled_method = nullptr; in CompileMethod() local
2013 compiled_method = compiler_->JniCompile(access_flags, method_idx, dex_file); in CompileMethod()
2014 CHECK(compiled_method != nullptr); in CompileMethod()
2022 compiled_method = compiler_->Compile(code_item, access_flags, invoke_type, class_def_idx, in CompileMethod()
2025 if (compiled_method == nullptr && dex_to_dex_compilation_level != kDontDexToDexCompile) { in CompileMethod()
2042 if (compiled_method != nullptr) { in CompileMethod()
2047 compiled_methods_.Put(ref, compiled_method); in CompileMethod()