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[] =
1385 // We record all inputs to the instructions as outputs. This way, we also check
1389 const Inputs* outputs;
1443 results[i]->outputs = new Inputs[kTests[i].input_size];
1446 size_t input_stride = sizeof(kTests[i].inputs[0]) * kTests[i].input_size;
1475 __ Mov(input_ptr, Operand::From(kTests[i].inputs));
1488 __ Ldr(nzcv_bits, MemOperand(input_ptr, offsetof(Inputs, apsr)));
1492 __ Ldr(rd, MemOperand(input_ptr, offsetof(Inputs, rd)));
1493 __ Ldr(rn, MemOperand(input_ptr, offsetof(Inputs, rn)));
1494 __ Ldr(rm, MemOperand(input_ptr, offsetof(Inputs, rm)));
1504 __ Str(nzcv_bits, MemOperand(result_ptr, offsetof(Inputs, apsr)));
1506 __ Str(rd, MemOperand(result_ptr, offsetof(Inputs, rd)));
1507 __ Str(rn, MemOperand(result_ptr, offsetof(Inputs, rn)));
1508 __ Str(rm, MemOperand(result_ptr, offsetof(Inputs, rm)));
1511 __ Add(result_ptr, result_ptr, Operand::From(sizeof(kTests[i].inputs[0])));
1513 __ Add(input_ptr, input_ptr, Operand::From(sizeof(kTests[i].inputs[0])));
1525 printf("const Inputs kOutputs_%s_%s[] = {\n",
1561 uint32_t apsr_input = kTests[i].inputs[j].apsr;
1562 uint32_t rd_input = kTests[i].inputs[j].rd;
1563 uint32_t rn_input = kTests[i].inputs[j].rn;
1564 uint32_t rm_input = kTests[i].inputs[j].rm;