HomeSort by relevance Sort by last modified time
    Searched refs:spill_pos (Results 1 - 7 of 7) sorted by null

  /art/runtime/arch/x86/
context_x86.cc 41 int spill_pos = 0; local
48 gprs_[core_reg] = CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes());
49 ++spill_pos;
51 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()) - 1);
59 CalleeSaveAddress(frame, spill_pos + 1, frame_info.FrameSizeInBytes()));
61 CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes()));
62 spill_pos += 2;
64 DCHECK_EQ(spill_pos,
  /art/runtime/arch/arm/
context_arm.cc 42 int spill_pos = 0; local
48 gprs_[core_reg] = CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes());
49 ++spill_pos;
51 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()));
55 fprs_[fp_reg] = CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes());
56 ++spill_pos;
58 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()) + POPCOUNT(frame_info.FpSpillMask()));
  /art/runtime/arch/arm64/
context_arm64.cc 50 int spill_pos = 0; local
54 gprs_[core_reg] = CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes());
55 ++spill_pos;
57 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()));
61 fprs_[fp_reg] = CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes());
62 ++spill_pos;
64 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()) + POPCOUNT(frame_info.FpSpillMask()));
  /art/runtime/arch/mips/
context_mips.cc 41 int spill_pos = 0; local
53 gprs_[core_reg] = CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes());
55 ++spill_pos;
57 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()));
61 fprs_[fp_reg] = CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes());
62 ++spill_pos;
64 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()) + POPCOUNT(frame_info.FpSpillMask()));
  /art/runtime/arch/mips64/
context_mips64.cc 41 int spill_pos = 0; local
45 gprs_[core_reg] = CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes());
46 ++spill_pos;
48 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()));
52 fprs_[fp_reg] = CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes());
53 ++spill_pos;
55 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()) + POPCOUNT(frame_info.FpSpillMask()));
  /art/runtime/arch/x86_64/
context_x86_64.cc 40 int spill_pos = 0; local
47 gprs_[core_reg] = CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes());
48 ++spill_pos;
50 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()) - 1);
57 CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes()));
58 ++spill_pos;
60 DCHECK_EQ(spill_pos,
  /external/v8/src/compiler/
register-allocator.cc 3302 LifetimePosition spill_pos = FindOptimalSpillingPos(range, split_pos); local
    [all...]

Completed in 421 milliseconds