Home
last modified time | relevance | path

Searched refs:fr (Results 1 – 11 of 11) sorted by relevance

/art/runtime/arch/mips/
Dcontext_mips.cc43 void MipsContext::FillCalleeSaves(const StackVisitor& fr) { in FillCalleeSaves() argument
44 mirror::ArtMethod* method = fr.GetMethod(); in FillCalleeSaves()
53 gprs_[i] = fr.CalleeSaveAddress(spill_count - j, frame_info.FrameSizeInBytes()); in FillCalleeSaves()
63 fprs_[i] = fr.CalleeSaveAddress(spill_count + fp_spill_count - j, in FillCalleeSaves()
Dcontext_mips.h36 void FillCalleeSaves(const StackVisitor& fr) OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
/art/runtime/arch/arm/
Dcontext_arm.cc44 void ArmContext::FillCalleeSaves(const StackVisitor& fr) { in FillCalleeSaves() argument
45 mirror::ArtMethod* method = fr.GetMethod(); in FillCalleeSaves()
54 gprs_[i] = fr.CalleeSaveAddress(spill_count - j, frame_info.FrameSizeInBytes()); in FillCalleeSaves()
64 fprs_[i] = fr.CalleeSaveAddress(spill_count + fp_spill_count - j, in FillCalleeSaves()
Dcontext_arm.h37 void FillCalleeSaves(const StackVisitor& fr) OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
/art/runtime/arch/x86/
Dcontext_x86.cc39 void X86Context::FillCalleeSaves(const StackVisitor& fr) { in FillCalleeSaves() argument
40 mirror::ArtMethod* method = fr.GetMethod(); in FillCalleeSaves()
49 gprs_[i] = fr.CalleeSaveAddress(spill_count - j, frame_info.FrameSizeInBytes()); in FillCalleeSaves()
Dcontext_x86.h36 void FillCalleeSaves(const StackVisitor& fr) OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
/art/runtime/arch/x86_64/
Dcontext_x86_64.cc42 void X86_64Context::FillCalleeSaves(const StackVisitor& fr) { in FillCalleeSaves() argument
43 mirror::ArtMethod* method = fr.GetMethod(); in FillCalleeSaves()
52 gprs_[i] = fr.CalleeSaveAddress(spill_count - j, frame_info.FrameSizeInBytes()); in FillCalleeSaves()
63 fr.CalleeSaveAddress(spill_count + fp_spill_count - j, frame_info.FrameSizeInBytes())); in FillCalleeSaves()
Dcontext_x86_64.h36 void FillCalleeSaves(const StackVisitor& fr) OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
/art/runtime/arch/arm64/
Dcontext_arm64.cc47 void Arm64Context::FillCalleeSaves(const StackVisitor& fr) { in FillCalleeSaves() argument
48 mirror::ArtMethod* method = fr.GetMethod(); in FillCalleeSaves()
57 gprs_[i] = fr.CalleeSaveAddress(spill_count - j, frame_info.FrameSizeInBytes()); in FillCalleeSaves()
68 fprs_[i] = fr.CalleeSaveAddress(spill_count + fp_spill_count - j, in FillCalleeSaves()
Dcontext_arm64.h37 void FillCalleeSaves(const StackVisitor& fr) OVERRIDE;
/art/runtime/arch/
Dcontext.h43 virtual void FillCalleeSaves(const StackVisitor& fr)