Home
last modified time | relevance | path

Searched refs:slots (Results 1 – 4 of 4) sorted by relevance

/art/runtime/arch/mips/
Dquick_entrypoints_mips.S86 addiu $sp, $sp, -ARG_SLOT_SIZE # reserve argument slots on the stack
134 addiu $sp, $sp, -ARG_SLOT_SIZE # reserve argument slots on the stack
139 addiu $sp, $sp, ARG_SLOT_SIZE # remove argument slots on the stack
226 addiu $sp, $sp, -ARG_SLOT_SIZE # reserve argument slots on the stack
243 addiu $sp, $sp, -ARG_SLOT_SIZE # reserve argument slots on the stack
248 addiu $sp, $sp, ARG_SLOT_SIZE # remove argument slots on the stack
468 addiu $t0, $sp, ARG_SLOT_SIZE # save $sp (remove arg slots)
523 addiu $sp, $sp, -16 # make space for argument slots for memcpy
1088 addiu $a3, $sp, ARG_SLOT_SIZE # pass $sp (remove arg slots)
1119 addiu $a3, $sp, ARG_SLOT_SIZE # pass $sp (remove arg slots)
[all …]
/art/compiler/dex/quick/mips/
DREADME.mips39 Branch delay slots
41 Little to no attempt was made to fill branch delay slots. Branch
/art/runtime/gc/allocator/
Drosalloc.cc1126 size_t slots = 0; in InspectAllSlots() local
1128 for (size_t v = 0; v < num_vec; v++, slots += 32) { in InspectAllSlots()
1129 DCHECK_GE(num_slots, slots); in InspectAllSlots()
1136 size_t end = std::min(num_slots - slots, static_cast<size_t>(32)); in InspectAllSlots()
1139 uint8_t* slot_addr = slot_base + (slots + i) * bracket_size; in InspectAllSlots()
2100 size_t slots = 0; in Verify() local
2104 for (size_t v = 0; v < num_vec; v++, slots += 32) { in Verify()
2105 DCHECK_GE(num_slots, slots) << "Out of bounds"; in Verify()
2108 size_t end = std::min(num_slots - slots, static_cast<size_t>(32)); in Verify()
2115 uint8_t* slot_addr = slot_base + (slots + i) * bracket_size; in Verify()
/art/compiler/optimizing/
Dnodes.h219 void UpdateTemporariesVRegSlots(size_t slots) { in UpdateTemporariesVRegSlots() argument
220 temporaries_vreg_slots_ = std::max(slots, temporaries_vreg_slots_); in UpdateTemporariesVRegSlots()