Searched defs:spill_count (Results 1 - 3 of 3) sorted by relevance

/art/compiler/dex/quick/arm/
H A Dcall_arm.cc369 int spill_count = num_core_spills_ + num_fp_spills_; local
444 const int spill_size = spill_count * 4;
531 int spill_count = num_core_spills_ + num_fp_spills_; local
540 int adjust = frame_size_ - (spill_count * kArmPointerSize);
/art/compiler/dex/quick/arm64/
H A Dcall_arm64.cc326 const int spill_count = num_core_spills_ + num_fp_spills_; local
327 const int spill_size = (spill_count * kArm64PointerSize + 15) & ~0xf; // SP 16 byte alignment.
/art/compiler/dex/quick/mips/
H A Dcall_mips.cc250 int spill_count = num_core_spills_ + num_fp_spills_; local
314 const int frame_sub = frame_size_ - spill_count * ptr_size;
341 AddSlowPath(new(arena_)StackOverflowSlowPath(this, branch, spill_count * ptr_size));

Completed in 29 milliseconds