Searched refs:compiled_method (Results 1 – 7 of 7) sorted by relevance
/art/compiler/ |
D | oat_writer.cc | 141 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 …]
|
D | common_compiler_test.cc | 166 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 …]
|
D | oat_test.cc | 42 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()
|
D | elf_writer_mclinker.cc | 248 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()
|
D | Android.mk | 22 compiled_method.cc \
|
/art/compiler/sea_ir/ |
D | frontend.cc | 57 CompiledMethod* compiled_method = in CompileMethodWithSeaIr() local 61 return compiled_method; in CompileMethodWithSeaIr()
|
/art/compiler/driver/ |
D | compiler_driver.cc | 2004 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()
|