Home
last modified time | relevance | path

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

/art/runtime/arch/x86/
Dcontext_x86.cc37 void X86Context::FillCalleeSaves(const StackVisitor& fr) { in FillCalleeSaves() argument
38 ArtMethod* method = fr.GetMethod(); in FillCalleeSaves()
47 gprs_[core_reg] = fr.CalleeSaveAddress(spill_pos, frame_info.FrameSizeInBytes()); in FillCalleeSaves()
58 fr.CalleeSaveAddress(spill_pos + 1, frame_info.FrameSizeInBytes())); in FillCalleeSaves()
60 fr.CalleeSaveAddress(spill_pos, frame_info.FrameSizeInBytes())); in FillCalleeSaves()
Dcontext_x86.h37 void FillCalleeSaves(const StackVisitor& fr) OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
/art/runtime/arch/mips/
Dcontext_mips.cc38 void MipsContext::FillCalleeSaves(const StackVisitor& fr) { in FillCalleeSaves() argument
39 ArtMethod* method = fr.GetMethod(); in FillCalleeSaves()
45 gprs_[core_reg] = fr.CalleeSaveAddress(spill_pos, frame_info.FrameSizeInBytes()); in FillCalleeSaves()
52 fprs_[fp_reg] = fr.CalleeSaveAddress(spill_pos, frame_info.FrameSizeInBytes()); in FillCalleeSaves()
Dcontext_mips.h37 void FillCalleeSaves(const StackVisitor& fr) OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
/art/runtime/arch/arm/
Dcontext_arm.cc38 void ArmContext::FillCalleeSaves(const StackVisitor& fr) { in FillCalleeSaves() argument
39 ArtMethod* method = fr.GetMethod(); in FillCalleeSaves()
47 gprs_[core_reg] = fr.CalleeSaveAddress(spill_pos, frame_info.FrameSizeInBytes()); in FillCalleeSaves()
54 fprs_[fp_reg] = fr.CalleeSaveAddress(spill_pos, frame_info.FrameSizeInBytes()); in FillCalleeSaves()
Dcontext_arm.h38 void FillCalleeSaves(const StackVisitor& fr) OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
/art/runtime/arch/x86_64/
Dcontext_x86_64.cc37 void X86_64Context::FillCalleeSaves(const StackVisitor& fr) { in FillCalleeSaves() argument
38 ArtMethod* method = fr.GetMethod(); in FillCalleeSaves()
47 gprs_[core_reg] = fr.CalleeSaveAddress(spill_pos, frame_info.FrameSizeInBytes()); in FillCalleeSaves()
57 fr.CalleeSaveAddress(spill_pos, frame_info.FrameSizeInBytes())); in FillCalleeSaves()
Dcontext_x86_64.h37 void FillCalleeSaves(const StackVisitor& fr) OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
/art/runtime/arch/mips64/
Dcontext_mips64.cc38 void Mips64Context::FillCalleeSaves(const StackVisitor& fr) { in FillCalleeSaves() argument
39 ArtMethod* method = fr.GetMethod(); in FillCalleeSaves()
45 gprs_[core_reg] = fr.CalleeSaveAddress(spill_pos, frame_info.FrameSizeInBytes()); in FillCalleeSaves()
52 fprs_[fp_reg] = fr.CalleeSaveAddress(spill_pos, frame_info.FrameSizeInBytes()); in FillCalleeSaves()
Dcontext_mips64.h37 void FillCalleeSaves(const StackVisitor& fr) OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
/art/runtime/arch/arm64/
Dcontext_arm64.cc40 void Arm64Context::FillCalleeSaves(const StackVisitor& fr) { in FillCalleeSaves() argument
41 ArtMethod* method = fr.GetMethod(); in FillCalleeSaves()
47 gprs_[core_reg] = fr.CalleeSaveAddress(spill_pos, frame_info.FrameSizeInBytes()); in FillCalleeSaves()
54 fprs_[fp_reg] = fr.CalleeSaveAddress(spill_pos, frame_info.FrameSizeInBytes()); in FillCalleeSaves()
Dcontext_arm64.h38 void FillCalleeSaves(const StackVisitor& fr) OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
/art/runtime/arch/
Dcontext.h44 virtual void FillCalleeSaves(const StackVisitor& fr)