Lines Matching defs:input
73 void UseRegister(Input& input) {
74 input.SetUnallocated(compiler::UnallocatedOperand::MUST_HAVE_REGISTER,
76 GetVirtualRegister(input.node()));
78 void UseAny(Input& input) {
79 input.SetUnallocated(
82 GetVirtualRegister(input.node()));
84 void UseFixed(Input& input, Register reg) {
85 input.SetUnallocated(compiler::UnallocatedOperand::FIXED_REGISTER, reg.code(),
86 GetVirtualRegister(input.node()));
93 void PushInput(MaglevCodeGenState* code_gen_state, const Input& input) {
97 compiler::AllocatedOperand::cast(input.operand());
295 graph_labeller->PrintInput(os, node->input(i));
444 DefineAsFixed(vreg_state, this, input());
452 os << "(" << input() << ")";
716 UseRegister(input());
722 Register value = ToRegister(input());
733 UseRegister(input());
739 Register reg = ToRegister(input());
782 for (Input& input : *this) {
783 UseAny(input);
860 // TODO(leszeks): Consider making this an input into Return to re-use the