Lines Matching defs:stmt
1616 ir_if *const stmt = new(ctx) ir_if(op[0]);
1617 instructions->push_tail(stmt);
1619 stmt->then_instructions.append_list(&rhs_instructions);
1623 stmt->then_instructions.push_tail(then_assign);
1628 stmt->else_instructions.push_tail(else_assign);
1650 ir_if *const stmt = new(ctx) ir_if(op[0]);
1651 instructions->push_tail(stmt);
1656 stmt->then_instructions.push_tail(then_assign);
1658 stmt->else_instructions.append_list(&rhs_instructions);
1662 stmt->else_instructions.push_tail(else_assign);
1927 ir_if *const stmt = new(ctx) ir_if(op[0]);
1928 instructions->push_tail(stmt);
1930 then_instructions.move_nodes_to(& stmt->then_instructions);
1935 stmt->then_instructions.push_tail(then_assign);
1937 else_instructions.move_nodes_to(& stmt->else_instructions);
1942 stmt->else_instructions.push_tail(else_assign);
6676 ir_if *const stmt = new(ctx) ir_if(condition);
6680 then_statement->hir(& stmt->then_instructions, state);
6686 else_statement->hir(& stmt->else_instructions, state);
6690 instructions->push_tail(stmt);
6817 /* Emit code for body of switch stmt.
6969 foreach_list_typed (ast_node, stmt, link, & this->stmts)
6970 stmt->hir(& test_fallthru->then_instructions, state);
7175 ir_loop *const stmt = new(ctx) ir_loop();
7176 instructions->push_tail(stmt);
7190 condition_to_hir(&stmt->body_instructions, state);
7199 body->hir(& stmt->body_instructions, state);
7206 stmt->body_instructions.append_list(&rest_instructions);
7209 condition_to_hir(&stmt->body_instructions, state);