Lines Matching refs:compiled_method
627 CompiledMethod* compiled_method = in VisitMethod() local
629 compiled_methods_.push_back(compiled_method); in VisitMethod()
630 if (compiled_method != nullptr) { in VisitMethod()
681 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); in VisitMethod() local
683 if (compiled_method != nullptr) { in VisitMethod()
687 ArrayRef<const uint8_t> quick_code = compiled_method->GetQuickCode(); in VisitMethod()
689 uint32_t thumb_offset = compiled_method->CodeDelta(); in VisitMethod()
700 quick_code_offset = NewQuickCodeOffset(compiled_method, it, thumb_offset); in VisitMethod()
705 compiled_method, in VisitMethod()
706 [this, &deduped, compiled_method, &it, thumb_offset]() { in VisitMethod()
708 return NewQuickCodeOffset(compiled_method, it, thumb_offset); in VisitMethod()
738 uint32_t frame_size_in_bytes = compiled_method->GetFrameSizeInBytes(); in VisitMethod()
739 uint32_t core_spill_mask = compiled_method->GetCoreSpillMask(); in VisitMethod()
740 uint32_t fp_spill_mask = compiled_method->GetFpSpillMask(); in VisitMethod()
752 if (!compiled_method->GetPatches().empty()) { in VisitMethod()
754 for (const LinkerPatch& patch : compiled_method->GetPatches()) { in VisitMethod()
774 info.isa = compiled_method->GetInstructionSet(); in VisitMethod()
781 info.frame_size_in_bytes = compiled_method->GetFrameSizeInBytes(); in VisitMethod()
782 info.code_info = has_code_info ? compiled_method->GetVmapTable().data() : nullptr; in VisitMethod()
783 info.cfi = compiled_method->GetCFIInfo(); in VisitMethod()
814 uint32_t NewQuickCodeOffset(CompiledMethod* compiled_method, in NewQuickCodeOffset() argument
818 offset_, compiled_method, MethodReference(dex_file_, it.GetMemberIndex())); in NewQuickCodeOffset()
819 offset_ = compiled_method->AlignCode(offset_); in NewQuickCodeOffset()
821 GetInstructionSetAlignment(compiled_method->GetInstructionSet())); in NewQuickCodeOffset()
842 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); in VisitMethod() local
844 if (compiled_method != nullptr) { in VisitMethod()
848 ArrayRef<const uint8_t> map = compiled_method->GetVmapTable(); in VisitMethod()
892 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); in VisitMethod() local
895 if (compiled_method != nullptr) { in VisitMethod()
934 compiled_method != nullptr && in VisitMethod()
935 compiled_method->GetQuickCode().size() != 0) { in VisitMethod()
994 const CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); in VisitMethod() local
998 if (compiled_method != nullptr) { // ie. not an abstract method in VisitMethod()
1002 ArrayRef<const uint8_t> quick_code = compiled_method->GetQuickCode(); in VisitMethod()
1013 uint32_t aligned_offset = compiled_method->AlignCode(offset_); in VisitMethod()
1024 GetInstructionSetAlignment(compiled_method->GetInstructionSet())); in VisitMethod()
1026 offset_ + sizeof(OatQuickMethodHeader) + compiled_method->CodeDelta()) in VisitMethod()
1038 if (!compiled_method->GetPatches().empty()) { in VisitMethod()
1041 for (const LinkerPatch& patch : compiled_method->GetPatches()) { in VisitMethod()
1282 const CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); in VisitMethod() local
1284 if (compiled_method != nullptr) { // ie. not an abstract method in VisitMethod()
1292 DCHECK((compiled_method->GetVmapTable().size() == 0u && map_offset == 0u) || in VisitMethod()
1293 (compiled_method->GetVmapTable().size() != 0u && map_offset != 0u)) in VisitMethod()
1294 << compiled_method->GetVmapTable().size() << " " << map_offset << " " in VisitMethod()
1299 map_offset = (code_offset - compiled_method->CodeDelta()) - map_offset; in VisitMethod()
1303 ArrayRef<const uint8_t> map = compiled_method->GetVmapTable(); in VisitMethod()
2395 CompiledMethod* compiled_method = compiled_methods_[i]; in OatClass() local
2396 if (compiled_method == nullptr) { in OatClass()