Bug 965236 - ARM simulator: Add support for the udiv instruction. r=nbp

This commit is contained in:
Douglas Crosher 2014-02-04 19:51:40 +11:00
Родитель 89d70ec556
Коммит d1b25f0455
1 изменённых файлов: 27 добавлений и 17 удалений

Просмотреть файл

@ -2931,9 +2931,9 @@ Simulator::decodeType3(SimInstruction *instr)
break;
}
case db_x: { // sudiv
if (instr->bit(22) == 0x0 && instr->bit(20) == 0x1 &&
instr->bits(15,12) == 0x0f && instr->bits(7, 4) == 0x1) {
if (!instr->hasW()) {
if (instr->bits(5, 4) == 0x1) {
if ((instr->bit(22) == 0x0) && (instr->bit(20) == 0x1)) {
// sdiv (in V8 notation matching ARM ISA format) rn = rm/rs
int rm = instr->rmValue();
int32_t rm_val = get_register(rm);
@ -2947,7 +2947,17 @@ Simulator::decodeType3(SimInstruction *instr)
ret_val = rm_val / rs_val;
set_register(rn, ret_val);
return;
}
} else {
// udiv (in V8 notation matching ARM ISA format) rn = rm/rs
int rm = instr->rmValue();
uint32_t rm_val = get_register(rm);
int rs = instr->rsValue();
uint32_t rs_val = get_register(rs);
uint32_t ret_val = 0;
MOZ_ASSERT(rs_val != 0);
ret_val = rm_val / rs_val;
set_register(rn, ret_val);
return;
}
}