Lines Matching full:control
242 …GateRef Selector(OpCode opcode, MachineType machineType, GateRef control, const std::vector<GateRe…
244 GateRef Selector(OpCode opcode, GateRef control, const std::vector<GateRef> &values,
544 inline void SetControl(GateRef control);
545 inline void SetPreControl(GateRef control);
546 inline void MergeControl(GateRef control);
554 LabelImpl(Environment *env, GateRef control) in LabelImpl() argument
555 : env_(env), control_(control), predeControl_(-1), isSealed_(false) in LabelImpl()
572 void SetControl(GateRef control) in SetControl() argument
574 control_ = control; in SetControl()
576 void SetPreControl(GateRef control) in SetPreControl() argument
578 predeControl_ = control; in SetPreControl()
580 void MergeControl(GateRef control) in MergeControl() argument
583 predeControl_ = control; in MergeControl()
586 otherPredeControls_.push_back(control); in MergeControl()
705 inline LabelImpl *NewLabel(Environment *env, GateRef control = -1);