Searched refs:spill_count (Results 1 - 8 of 8) sorted by relevance

/art/runtime/arch/x86/
H A Dcontext_x86.cc42 size_t spill_count = POPCOUNT(frame_info.CoreSpillMask()); local
44 if (spill_count > 0) {
49 gprs_[i] = fr.CalleeSaveAddress(spill_count - j, frame_info.FrameSizeInBytes());
/art/runtime/arch/arm/
H A Dcontext_arm.cc47 size_t spill_count = POPCOUNT(frame_info.CoreSpillMask()); local
49 if (spill_count > 0) {
54 gprs_[i] = fr.CalleeSaveAddress(spill_count - j, frame_info.FrameSizeInBytes());
64 fprs_[i] = fr.CalleeSaveAddress(spill_count + fp_spill_count - j,
/art/runtime/arch/mips/
H A Dcontext_mips.cc46 size_t spill_count = POPCOUNT(frame_info.CoreSpillMask()); local
48 if (spill_count > 0) {
53 gprs_[i] = fr.CalleeSaveAddress(spill_count - j, frame_info.FrameSizeInBytes());
63 fprs_[i] = fr.CalleeSaveAddress(spill_count + fp_spill_count - j,
/art/runtime/arch/arm64/
H A Dcontext_arm64.cc50 size_t spill_count = POPCOUNT(frame_info.CoreSpillMask()); local
52 if (spill_count > 0) {
57 gprs_[i] = fr.CalleeSaveAddress(spill_count - j, frame_info.FrameSizeInBytes());
68 fprs_[i] = fr.CalleeSaveAddress(spill_count + fp_spill_count - j,
/art/runtime/arch/x86_64/
H A Dcontext_x86_64.cc45 size_t spill_count = POPCOUNT(frame_info.CoreSpillMask()); local
47 if (spill_count > 0) {
52 gprs_[i] = fr.CalleeSaveAddress(spill_count - j, frame_info.FrameSizeInBytes());
63 fr.CalleeSaveAddress(spill_count + fp_spill_count - j, frame_info.FrameSizeInBytes()));
/art/compiler/dex/quick/mips/
H A Dcall_mips.cc290 int spill_count = num_core_spills_ + num_fp_spills_; local
318 const int frame_sub = frame_size_ - spill_count * 4;
343 AddSlowPath(new(arena_)StackOverflowSlowPath(this, branch, spill_count * 4));
/art/compiler/dex/quick/arm/
H A Dcall_arm.cc341 int spill_count = num_core_spills_ + num_fp_spills_; local
400 const int spill_size = spill_count * 4;
472 int spill_count = num_core_spills_ + num_fp_spills_; local
481 OpRegImm(kOpAdd, rs_rARM_SP, frame_size_ - (spill_count * 4));
/art/compiler/dex/quick/arm64/
H A Dcall_arm64.cc340 const int spill_count = num_core_spills_ + num_fp_spills_; local
341 const int spill_size = (spill_count * kArm64PointerSize + 15) & ~0xf; // SP 16 byte alignment.

Completed in 191 milliseconds