Home | History | Annotate | Download | only in crankshaft

Lines Matching refs:IfBuilder

785   // expressions that use an IfBuilder.
1491 class IfBuilder final {
1494 IfBuilder();
1496 explicit IfBuilder(HGraphBuilder* builder);
1497 IfBuilder(HGraphBuilder* builder,
1500 ~IfBuilder() {
1587 // Captures the current state of this IfBuilder in the specified
1588 // continuation and ends this IfBuilder.
1591 // Joins the specified continuation from this IfBuilder and ends this
1592 // IfBuilder. This appends a Goto instruction from the true branch of
1593 // this IfBuilder to the true branch of the continuation unless the
1594 // true branch of this IfBuilder is already finished. And vice versa
1597 // The basic idea is as follows: You have several nested IfBuilder's
1605 // IfBuilder if_whatever(this);
1613 // IfBuilder if_something(this);
1621 // IfBuilder if_finally(this, &cont);