Lines Matching refs:then_labels
448 TestResultScope(BytecodeGenerator* generator, BytecodeLabels* then_labels, in TestResultScope() argument
451 then_labels_(then_labels), in TestResultScope()
467 BytecodeLabels* then_labels() const { return then_labels_; } in then_labels() function in v8::internal::interpreter::BytecodeGenerator::TestResultScope
971 BytecodeLabels then_labels(zone()), else_labels(zone()); in VisitIfStatement() local
972 VisitForTest(stmt->condition(), &then_labels, &else_labels, in VisitIfStatement()
975 then_labels.Bind(builder()); in VisitIfStatement()
1527 BytecodeLabels then_labels(zone()), else_labels(zone()); in VisitConditional() local
1529 VisitForTest(expr->condition(), &then_labels, &else_labels, in VisitConditional()
1532 then_labels.Bind(builder()); in VisitConditional()
2561 test_result->then_labels(), in VisitNot()
2844 VisitForTest(left, test_result->then_labels(), &test_right, in VisitLogicalOrExpression()
2847 VisitForTest(right, test_result->then_labels(), in VisitLogicalOrExpression()
2882 VisitForTest(right, test_result->then_labels(), in VisitLogicalAndExpression()
3166 BytecodeLabels* then_labels, in VisitForTest() argument
3174 TestResultScope test_result(this, then_labels, else_labels, fallthrough); in VisitForTest()
3184 builder()->JumpIfTrue(then_labels->New()); in VisitForTest()
3187 builder()->JumpIfTrue(then_labels->New()); in VisitForTest()