Home | History | Annotate | Download | only in test

Lines Matching refs:reg_count

13245 // where a reg_count field is provided.
13250 // * Push <reg_count> registers with size <reg_size>.
13252 // * Pop <reg_count> registers to restore the original contents.
13257 static void PushPopXRegSimpleHelper(int reg_count,
13269 if (reg_count == kPushPopXRegMaxRegCount) {
13270 reg_count = CountSetBits(allowed, kNumberOfRegisters);
13275 RegList list = PopulateRegisterArray(NULL, x, r, reg_size, reg_count,
13297 for (i = 0; i < reg_count; i++) {
13309 for (i = reg_count; i >= 4; i -= 4) {
13331 for (i = 0; i <= (reg_count-4); i += 4) {
13335 switch (reg_count - i) {
13339 default: VIXL_ASSERT(i == reg_count); break;
13362 for (int i = 0; i < reg_count; i++) {
13425 // where a reg_count field is provided.
13430 // * Push <reg_count> FP registers with size <reg_size>.
13432 // * Pop <reg_count> FP registers to restore the original contents.
13437 static void PushPopFPXRegSimpleHelper(int reg_count,
13449 if (reg_count == kPushPopFPXRegMaxRegCount) {
13450 reg_count = CountSetBits(allowed, kNumberOfFPRegisters);
13455 RegList list = PopulateFPRegisterArray(NULL, d, v, reg_size, reg_count,
13484 for (i = 0; i < reg_count; i++) {
13498 for (i = reg_count; i >= 4; i -= 4) {
13520 for (i = 0; i <= (reg_count-4); i += 4) {
13524 switch (reg_count - i) {
13528 default: VIXL_ASSERT(i == reg_count); break;
13551 for (int i = 0; i < reg_count; i++) {
13718 static void PushPopXRegWXOverlapHelper(int reg_count, int claim) {
13724 if (reg_count == kPushPopXRegMaxRegCount) {
13725 reg_count = CountSetBits(allowed, kNumberOfRegisters);
13730 RegList list = PopulateRegisterArray(w, x, NULL, 0, reg_count, allowed);
13733 // between W and X registers, so we need reg_count*1.5 W-sized slots.
13734 int const requested_w_slots = reg_count + reg_count / 2;
13764 for (int i = 0; i < reg_count; i++) {
13805 VIXL_ASSERT(i < reg_count);
13855 bool next_is_64 = !(reg_count & 1);
13856 for (int i = reg_count-1; i >= 0; i--) {
13880 for (int i = 0; i < reg_count; i++) {