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

  /art/runtime/
vmap_table.h 80 uint32_t ComputeRegister(uint32_t spill_mask, uint32_t vmap_offset, VRegKind kind) const {
97 CHECK_LT(vmap_offset - matches, static_cast<uint32_t>(__builtin_popcount(spill_mask)));
100 DCHECK_NE(spill_mask, 0u);
101 matches += spill_mask & 1; // Add 1 if the low bit is set
102 spill_mask >>= 1;
stack.cc 144 uint32_t spill_mask = is_float ? m->GetFpSpillMask() local
146 return GetGPR(vmap_table.ComputeRegister(spill_mask, vmap_offset, kind));
169 uint32_t spill_mask = is_float ? m->GetFpSpillMask() : m->GetCoreSpillMask(); local
170 const uint32_t reg = vmap_table.ComputeRegister(spill_mask, vmap_offset, kReferenceVReg);
  /art/oatdump/
oatdump.cc 370 void DumpSpillMask(std::ostream& os, uint32_t spill_mask, bool is_float) {
371 if (spill_mask == 0) {
376 if ((spill_mask & (1 << i)) != 0) {
382 spill_mask ^= 1 << i; // clear bit
383 if (spill_mask != 0) {
399 uint32_t spill_mask = oat_method.GetCoreSpillMask(); local
402 uint32_t cpu_reg = vmap_table.ComputeRegister(spill_mask, i,
413 spill_mask = oat_method.GetFpSpillMask();
428 uint32_t spill_mask = is_float ? oat_method.GetFpSpillMask() local
430 os << (is_float ? "fr" : "r") << vmap_table.ComputeRegister(spill_mask, vmap_offset, kind)
    [all...]
  /external/chromium_org/v8/src/arm/
code-stubs-arm.cc 6261 const int spill_mask = local
6330 const int spill_mask = local
    [all...]
  /external/chromium_org/v8/src/mips/
code-stubs-mips.cc 6673 const int spill_mask = local
6745 const int spill_mask = local
    [all...]
  /external/v8/src/arm/
code-stubs-arm.cc 6896 const int spill_mask = local
6966 const int spill_mask = local
    [all...]
  /external/v8/src/mips/
code-stubs-mips.cc 7158 const int spill_mask = local
7231 const int spill_mask = local
    [all...]

Completed in 5771 milliseconds