HomeSort by relevance Sort by last modified time
    Searched defs:spill_mask (Results 1 - 5 of 5) sorted by null

  /art/runtime/
stack.cc 167 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask(); local
168 uint32_t reg = vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
222 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask(); local
223 uint32_t reg_lo = vmap_table.ComputeRegister(spill_mask, vmap_offset_lo, kind_lo);
224 uint32_t reg_hi = vmap_table.ComputeRegister(spill_mask, vmap_offset_hi, kind_hi);
268 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask(); local
269 const uint32_t reg = vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
333 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask(); local
334 uint32_t reg_lo = vmap_table.ComputeRegister(spill_mask, vmap_offset_lo, kind_lo);
335 uint32_t reg_hi = vmap_table.ComputeRegister(spill_mask, vmap_offset_hi, kind_hi)
    [all...]
  /art/oatdump/
oatdump.cc 650 void DumpSpillMask(std::ostream& os, uint32_t spill_mask, bool is_float) {
651 if (spill_mask == 0) {
656 if ((spill_mask & (1 << i)) != 0) {
662 spill_mask ^= 1 << i; // clear bit
663 if (spill_mask != 0) {
679 uint32_t spill_mask = oat_method.GetCoreSpillMask(); local
682 uint32_t cpu_reg = vmap_table.ComputeRegister(spill_mask, i,
693 spill_mask = oat_method.GetFpSpillMask();
708 uint32_t spill_mask = is_float ? oat_method.GetFpSpillMask() local
710 os << (is_float ? "fr" : "r") << vmap_table.ComputeRegister(spill_mask, vmap_offset, kind)
    [all...]
  /external/chromium_org/v8/src/arm/
code-stubs-arm.cc 3709 const int spill_mask = local
3778 const int spill_mask = local
    [all...]
  /external/chromium_org/v8/src/mips/
code-stubs-mips.cc 3910 const int spill_mask = local
3982 const int spill_mask = local
    [all...]
  /external/chromium_org/v8/src/mips64/
code-stubs-mips64.cc 3948 const int spill_mask = local
4020 const int spill_mask = local
    [all...]

Completed in 280 milliseconds