Home | History | Annotate | Download | only in compiler

Lines Matching defs:outputs

202     InstructionCode opcode, size_t output_count, InstructionOperand* outputs,
206 Instruction::New(instruction_zone(), opcode, output_count, outputs,
463 outputs(zone),
467 outputs.reserve(descriptor->ReturnCount());
476 InstructionOperandVector outputs;
506 // Collect the projections that represent multiple outputs from this call.
520 // Filter out the outputs that aren't live because no projection uses them.
542 buffer->outputs.push_back(op);
1393 // Compute InstructionOperands for inputs and outputs.
1435 size_t const output_count = buffer.outputs.size();
1436 auto* outputs = output_count ? &buffer.outputs.front() : nullptr;
1437 Emit(opcode, output_count, outputs, buffer.instruction_args.size(),
1457 // Compute InstructionOperands for inputs and outputs.
1496 // Compute InstructionOperands for inputs and outputs.
1521 size_t output_count = buffer.outputs.size();
1522 auto* outputs = &buffer.outputs.front();
1523 Emit(opcode, output_count, outputs, buffer.instruction_args.size(),
1526 Emit(kArchRet, 0, nullptr, output_count, outputs);