Home
last modified time | relevance | path

Searched refs:then_labels (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/interpreter/
Dbytecode-generator.h219 BytecodeLabels* then_labels,
247 void BuildTest(ToBooleanMode mode, BytecodeLabels* then_labels,
259 void VisitForTest(Expression* expr, BytecodeLabels* then_labels,
Dbytecode-generator.cc633 TestResultScope(BytecodeGenerator* generator, BytecodeLabels* then_labels, in TestResultScope() argument
638 then_labels_(then_labels), in TestResultScope()
658 BytecodeLabels* then_labels() const { return then_labels_; } in then_labels() function in v8::internal::interpreter::BytecodeGenerator::TestResultScope
661 void set_then_labels(BytecodeLabels* then_labels) { in set_then_labels() argument
662 then_labels_ = then_labels; in set_then_labels()
1367 VisitForTest(stmt->condition(), conditional_builder.then_labels(), in VisitIfStatement()
2054 VisitForTest(expr->condition(), conditional_builder.then_labels(), in VisitConditional()
4492 Token::Value token, Expression* expr, BytecodeLabels* then_labels, in VisitLogicalTestSubExpression() argument
4498 VisitForTest(expr, then_labels, &test_next, TestFallthrough::kElse); in VisitLogicalTestSubExpression()
4513 BytecodeLabels* then_labels = test_result->then_labels(); in VisitLogicalTest() local
[all …]
Dcontrol-flow-builders.cc184 then_labels()->Bind(builder()); in Then()
Dcontrol-flow-builders.h265 BytecodeLabels* then_labels() { return &then_labels_; } in then_labels() function