Lines Matching refs:ArtMethod

747       ArtMethod* method = arr->GetElementPtrSize<ArtMethod*>(i, target_ptr_size_);  in AddMethodPointerArray()
889 bool ImageWriter::WillMethodBeDirty(ArtMethod* m) const { in WillMethodBeDirty()
1297 ArtMethod* method = pair.object; in PreloadDexCache()
1649 const size_t method_alignment = ArtMethod::Alignment(target_ptr_size_); in RecordNativeRelocations()
1650 const size_t method_size = ArtMethod::Size(target_ptr_size_); in RecordNativeRelocations()
1651 const size_t header_size = LengthPrefixedArray<ArtMethod>::ComputeSize(0, in RecordNativeRelocations()
1654 LengthPrefixedArray<ArtMethod>* array = as_klass->GetMethodsPtr(); in RecordNativeRelocations()
1680 ArtMethod* imt_method = imt->Get(i, target_ptr_size_); in RecordNativeRelocations()
1747 void ImageWriter::AssignMethodOffset(ArtMethod* method, in AssignMethodOffset()
1752 << ArtMethod::PrettyMethod(method); in AssignMethodOffset()
1760 image_info.IncrementBinSlotSize(bin_type, ArtMethod::Size(target_ptr_size_)); in AssignMethodOffset()
2193 bin_offset = RoundUp(bin_offset, ArtMethod::Alignment(image_writer_->target_ptr_size_)); in FinalizeBinSlotOffsets()
2712 ArtMethod* ImageWriter::GetImageMethodAddress(ArtMethod* method) { in GetImageMethodAddress()
2716 return reinterpret_cast<ArtMethod*>(image_info.image_begin_ + relocation.offset); in GetImageMethodAddress()
2771 ArtMethod* method = orig->Get(i, target_ptr_size_); in CopyAndFixupImTable()
2781 ArtMethod* interface_method = orig->GetInterfaceMethod(i, target_ptr_size_); in CopyAndFixupImtConflictTable()
2782 ArtMethod* implementation_method = orig->GetImplementationMethod(i, target_ptr_size_); in CopyAndFixupImtConflictTable()
2816 CopyAndFixupMethod(reinterpret_cast<ArtMethod*>(pair.first), in CopyAndFixupNativeData()
2817 reinterpret_cast<ArtMethod*>(dest), in CopyAndFixupNativeData()
2829 size_t size = ArtMethod::Size(target_ptr_size_); in CopyAndFixupNativeData()
2830 size_t alignment = ArtMethod::Alignment(target_ptr_size_); in CopyAndFixupNativeData()
2831 memcpy(dest, pair.first, LengthPrefixedArray<ArtMethod>::ComputeSize(0, size, alignment)); in CopyAndFixupNativeData()
2834 reinterpret_cast<LengthPrefixedArray<ArtMethod>*>(dest)->ClearPadding(size, alignment); in CopyAndFixupNativeData()
2864 ArtMethod* method = image_methods_[i]; in CopyAndFixupNativeData()
2940 auto* method = reinterpret_cast<ArtMethod*>(elem); in FixupPointerArray()
3099 std::string PrettyPrint(ArtMethod* method) REQUIRES_SHARED(Locks::mutator_lock_) { in PrettyPrint()
3100 return ArtMethod::PrettyMethod(method); in PrettyPrint()
3204 ArtMethod* src_method = src->GetArtMethod(); in FixupObject()
3364 const uint8_t* ImageWriter::GetQuickCode(ArtMethod* method, const ImageInfo& image_info) { in GetQuickCode()
3403 void ImageWriter::CopyAndFixupMethod(ArtMethod* orig, in CopyAndFixupMethod()
3404 ArtMethod* copy, in CopyAndFixupMethod()
3416 memcpy(copy, orig, ArtMethod::Size(target_ptr_size_)); in CopyAndFixupMethod()
3432 CopyAndFixupPointer(copy, ArtMethod::DataOffset(target_ptr_size_), orig_table); in CopyAndFixupMethod()