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

  /art/runtime/arch/x86/
context_x86.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);
58 CalleeSaveAddress(frame, spill_pos + 1, frame_info.FrameSizeInBytes()));
60 CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes()));
61 spill_pos += 2;
63 DCHECK_EQ(spill_pos,
  /art/runtime/arch/arm/
context_arm.cc 41 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()));
54 fprs_[fp_reg] = CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes());
55 ++spill_pos;
57 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()) + POPCOUNT(frame_info.FpSpillMask()));
  /art/runtime/arch/arm64/
context_arm64.cc 43 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()));
54 fprs_[fp_reg] = CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes());
55 ++spill_pos;
57 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()) + POPCOUNT(frame_info.FpSpillMask()));
  /art/runtime/arch/mips/
context_mips.cc 40 int spill_pos = 0; local
44 gprs_[core_reg] = CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes());
45 ++spill_pos;
47 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()));
51 fprs_[fp_reg] = CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes());
52 ++spill_pos;
54 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()) + POPCOUNT(frame_info.FpSpillMask()));
  /art/runtime/arch/mips64/
context_mips64.cc 40 int spill_pos = 0; local
44 gprs_[core_reg] = CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes());
45 ++spill_pos;
47 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()));
51 fprs_[fp_reg] = CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes());
52 ++spill_pos;
54 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()) + POPCOUNT(frame_info.FpSpillMask()));
  /art/runtime/arch/x86_64/
context_x86_64.cc 39 int spill_pos = 0; local
46 gprs_[core_reg] = CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes());
47 ++spill_pos;
49 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()) - 1);
56 CalleeSaveAddress(frame, spill_pos, frame_info.FrameSizeInBytes()));
57 ++spill_pos;
59 DCHECK_EQ(spill_pos,
  /external/v8/src/crankshaft/
lithium-allocator.cc 1969 LifetimePosition spill_pos = FindOptimalSpillingPos(range, split_pos); local
    [all...]
  /external/v8/src/compiler/
register-allocator.cc 3296 LifetimePosition spill_pos = FindOptimalSpillingPos(range, split_pos); local
    [all...]

Completed in 190 milliseconds