Lines Matching refs:index

646             value_lo = thread->readIntReg(it->index);
650 value_lo = thread->readFloatReg(it->index * 4);
652 value_lo = thread->readFloatReg(it->index);
656 value_lo = thread->readFloatReg(it->index * 4) |
657 (uint64_t) thread->readFloatReg(it->index * 4 + 1) <<
660 value_lo = thread->readFloatReg(it->index * 2) |
661 (uint64_t) thread->readFloatReg(it->index * 2 + 1) <<
667 value_lo = thread->readFloatReg(it->index * 4) |
668 (uint64_t) thread->readFloatReg(it->index * 4 + 1) <<
670 value_hi = thread->readFloatReg(it->index * 4 + 2) |
671 (uint64_t) thread->readFloatReg(it->index * 4 + 3) <<
674 value_lo = thread->readFloatReg(it->index * 2) |
675 (uint64_t) thread->readFloatReg(it->index * 2 + 1) <<
677 value_hi = thread->readFloatReg(it->index * 2 + 2) |
678 (uint64_t) thread->readFloatReg(it->index * 2 + 3) <<
683 if (it->index == MISCREG_CPSR) {
685 CPSR cpsr = thread->readMiscRegNoEffect(it->index);
691 } else if (it->index == MISCREG_NZCV) {
698 value_lo = thread->readMiscRegNoEffect(it->index);
947 regRecord.index = INTREG_USR(base_index);
951 regRecord.index = INTREG_USR(base_index);
953 regRecord.index = INTREG_FIQ(base_index);
955 regRecord.index = INTREG_IRQ(base_index);
957 regRecord.index = INTREG_SVC(base_index);
959 regRecord.index = INTREG_MON(base_index);
961 regRecord.index = INTREG_ABT(base_index);
963 regRecord.index = INTREG_UND(base_index);
965 regRecord.index = INTREG_HYP(base_index);
971 regRecord.index = atoi(&buf[1]);
975 regRecord.index = atoi(&buf[1]);
979 regRecord.index = atoi(&buf[1]);
983 regRecord.index = atoi(&buf[1]);
987 regRecord.index = INTREG_SP0 + atoi(&buf[5]);
991 regRecord.index = miscRegMap[buf];
999 regRecord.index = miscRegMap[reg_name.c_str()];