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 SwapVector<uint8_t>* GetData(const CompiledMethod* compiled_method) ALWAYS_INLINE { in GetData()
142 return &compiled_method->GetGcMap(); in GetData()
163 static const SwapVector<uint8_t>* GetData(const CompiledMethod* compiled_method) ALWAYS_INLINE { in GetData()
164 return &compiled_method->GetMappingTable(); in GetData()
185 static const SwapVector<uint8_t>* GetData(const CompiledMethod* compiled_method) ALWAYS_INLINE { in GetData()
186 return &compiled_method->GetVmapTable(); in GetData()
297 CompiledMethod* compiled_method = in VisitMethod() local
299 compiled_methods_.push_back(compiled_method); in VisitMethod()
300 if (compiled_method != nullptr) { in VisitMethod()
339 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); in VisitMethod() local
[all …]
Dcommon_compiler_test.cc156 const CompiledMethod* compiled_method = nullptr; in MakeExecutable() local
160 compiled_method = in MakeExecutable()
164 if (compiled_method != nullptr) { in MakeExecutable()
165 const SwapVector<uint8_t>* code = compiled_method->GetQuickCode(); in MakeExecutable()
170 const SwapVector<uint8_t>& vmap_table = compiled_method->GetVmapTable(); in MakeExecutable()
173 const SwapVector<uint8_t>& mapping_table = compiled_method->GetMappingTable(); in MakeExecutable()
176 const SwapVector<uint8_t>& gc_map = compiled_method->GetGcMap(); in MakeExecutable()
180 compiled_method->GetFrameSizeInBytes(), in MakeExecutable()
181 compiled_method->GetCoreSpillMask(), in MakeExecutable()
182 compiled_method->GetFpSpillMask(), 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 SwapVector<uint8_t>* quick_code = compiled_method->GetQuickCode(); in CheckMethod()
76 const SwapVector<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.cc2099 CompiledMethod* compiled_method = nullptr; in CompileMethod() local
2109 compiled_method = compiler_->JniCompile(access_flags, method_idx, dex_file); in CompileMethod()
2110 CHECK(compiled_method != nullptr); in CompileMethod()
2122 compiled_method = compiler_->Compile(code_item, access_flags, invoke_type, class_def_idx, in CompileMethod()
2125 if (compiled_method == nullptr && dex_to_dex_compilation_level != kDontDexToDexCompile) { in CompileMethod()
2144 if (compiled_method != nullptr) { in CompileMethod()
2148 compiled_methods_.Put(method_ref, compiled_method); in CompileMethod()