Lines Matching refs:Control

901   F(StartFunctionBody, Control* block) \
931 /* Control: */ \
932 F(Block, Control* block) \
933 F(Loop, Control* block) \
934 F(Try, Control* block) \
935 F(If, const Value& cond, Control* if_block) \
936 F(FallThruTo, Control* c) \
937 F(PopControl, Control* block) \
960 F(Else, Control* if_block) \
999 F(Rethrow, Control* block) \
1000 F(CatchException, const TagIndexImmediate<validate>& imm, Control* block, \
1002 F(Delegate, uint32_t depth, Control* block) \
1003 F(CatchAll, Control* block) \
1580 /********** Control opcodes **********/
2210 using Control = typename Interface::Control;
2312 Control* control_at(uint32_t depth) {
2336 Control* current = &control_.back();
2360 Control* c = &control_.back();
2420 ZoneVector<Control> control_;
2487 for (Control& c : decoder_->control_) {
2584 Control* block = PushControl(kControlBlock, 0, args.length());
2596 Control* c = control_at(imm.depth);
2623 Control* try_block = PushControl(kControlTry, 0, args.length());
2638 Control* c = &control_.back();
2669 Control* c = &control_.back();
2693 Control* c = &control_.back();
2717 Control* c = control_at(imm.depth);
2760 Control* c = control_at(imm.depth);
2811 Control* let_block = PushControl(kControlLet, new_locals_count,
2828 Control* block = PushControl(kControlLoop, 0, args.length());
2843 Control* if_block = PushControl(kControlIf, 0, 1 + args.length());
2854 Control* c = &control_.back();
2876 Control* c = &control_.back();
2964 Control* c = control_at(imm.depth);
2978 Control* c = control_at(imm.depth);
3595 Control* current = &control_.back();
3617 void SetBlockType(Control* c, BlockTypeImmediate<validate>& imm,
3718 // creation of the Control object from setting of its stack depth.
3719 Control* PushControl(ControlKind kind, uint32_t locals_count = 0,
3737 Control* c = &control_.back();
4602 Control* c = control_at(branch_depth.depth);
4687 Control* c = control_at(branch_depth.depth);
4825 Control* c = control_at(branch_depth.depth);
4882 Control* c = control_at(branch_depth.depth);
5143 void PushMergeValues(Control* c, Merge<Value>* merge) {
5358 Control* c = &control_.back();
5365 bool TypeCheckOneArmedIf(Control* c) {
5402 bool TypeCheckBranch(Control* c, uint32_t drop_values) {
5478 using Control = ControlBase<Value, validate>;