Home | History | Annotate | Download | only in aarch32

Lines Matching refs:inputs

144 // `Inputs` have various layouts across generated tests so they absolutely
161 struct Inputs {
180 const Inputs* inputs;
183 static const Inputs kCondition[] =
200 static const Inputs kRdIsRn[] = {{NoFlag, 0xffffff83, 0xffffff83, 0xffff8002},
401 static const Inputs kRdIsRm[] = {{NoFlag, 0x55555555, 0x7ffffffe, 0x55555555},
602 static const Inputs kRdIsNotRnIsNotRm[] =
804 static const Inputs kShiftTypes[] =
1375 // We record all inputs to the instructions as outputs. This way, we also check
1379 const Inputs* outputs;
1433 results[i]->outputs = new Inputs[kTests[i].input_size];
1436 size_t input_stride = sizeof(kTests[i].inputs[0]) * kTests[i].input_size;
1465 __ Mov(input_ptr, Operand::From(kTests[i].inputs));
1478 __ Ldr(nzcv_bits, MemOperand(input_ptr, offsetof(Inputs, apsr)));
1482 __ Ldr(rd, MemOperand(input_ptr, offsetof(Inputs, rd)));
1483 __ Ldr(rn, MemOperand(input_ptr, offsetof(Inputs, rn)));
1484 __ Ldr(rm, MemOperand(input_ptr, offsetof(Inputs, rm)));
1494 __ Str(nzcv_bits, MemOperand(result_ptr, offsetof(Inputs, apsr)));
1496 __ Str(rd, MemOperand(result_ptr, offsetof(Inputs, rd)));
1497 __ Str(rn, MemOperand(result_ptr, offsetof(Inputs, rn)));
1498 __ Str(rm, MemOperand(result_ptr, offsetof(Inputs, rm)));
1501 __ Add(result_ptr, result_ptr, Operand::From(sizeof(kTests[i].inputs[0])));
1503 __ Add(input_ptr, input_ptr, Operand::From(sizeof(kTests[i].inputs[0])));
1515 printf("const Inputs kOutputs_%s_%s[] = {\n",
1551 uint32_t apsr_input = kTests[i].inputs[j].apsr;
1552 uint32_t rd_input = kTests[i].inputs[j].rd;
1553 uint32_t rn_input = kTests[i].inputs[j].rn;
1554 uint32_t rm_input = kTests[i].inputs[j].rm;