Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(468)

Unified Diff: src/interpreter/bytecode-generator.cc

Issue 1412683011: [Interpreter] Enable assignments in expressions. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase. Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/interpreter/bytecode-generator.cc
diff --git a/src/interpreter/bytecode-generator.cc b/src/interpreter/bytecode-generator.cc
index bf0bdebeb4327a1ec626676b257d269a64e67abb..6b73b380fc6fde9d21d7f8833be17866c4a36619 100644
--- a/src/interpreter/bytecode-generator.cc
+++ b/src/interpreter/bytecode-generator.cc
@@ -238,8 +238,7 @@ class BytecodeGenerator::ExpressionResultScope {
// Scoped class used when the result of the current expression is not
// expected to produce a result.
-class BytecodeGenerator::EffectResultScope final
- : public ExpressionResultScope {
+class BytecodeGenerator::EffectResultScope : public ExpressionResultScope {
rmcilroy 2015/11/05 16:34:51 Make final again
oth 2015/11/12 11:32:15 Done.
public:
explicit EffectResultScope(BytecodeGenerator* generator)
: ExpressionResultScope(generator, Expression::kEffect) {
@@ -297,6 +296,104 @@ class BytecodeGenerator::RegisterResultScope final
};
+// Scope providing protection against potentially conflicting patterns
+// of variable loads and stores in binary expressions.
+class BytecodeGenerator::AssignmentHazardScope final BASE_EMBEDDED {
+ public:
+ explicit AssignmentHazardScope(BytecodeGenerator* generator)
+ : alias_mappings_(generator->zone()),
+ aliased_locals_and_parameters_(generator->zone()),
+ register_scope_(generator->builder()) {
+ if (generator->assignment_hazard_scope() == nullptr) {
+ // Set self as the assignment_hazard_scope if one doesn't
+ // exist. Only the outermost participates in register remapping.
+ generator_ = generator;
+ generator->set_assignment_hazard_scope(this);
rmcilroy 2015/11/05 16:34:51 Rather than creating a map and set for each Assign
oth 2015/11/12 11:32:15 Okay, the helper class an inner class of BytecodeG
+ } else {
+ generator_ = nullptr;
+ }
+ }
+
+ ~AssignmentHazardScope() {
+ if (is_outermost_scope()) {
+ RestoreAliasedLocalsAndParameters();
+ generator()->set_assignment_hazard_scope(nullptr);
+ }
+ }
+
+ // Returns a register that a load instruction should use when
+ // loading from |reg|. This allows an alias for a modified version
+ // of |reg| to be used within a hazard regions.
+ MUST_USE_RESULT Register GetRegisterForLoad(Register reg) {
+ DCHECK(is_outermost_scope());
+ // A load from |reg| is to be issued. The register is placed in
+ // the mappings table initially mapping to itself. Future stores
+ // will update the mapping with temporaries thus preserving the
+ // original register's value.
+ //
+ // NB This insert only updates the table if no mapping exists
+ // already (std::map::insert semantics).
+ auto insert_result =
+ alias_mappings_.insert(std::make_pair(reg.index(), reg.index()));
+ auto mapping = insert_result.first;
+ // Return the current alias for reg.
+ return Register(mapping->second);
+ }
+
+ // Returns a register that a store instruction should use when
+ // loading from |reg|. This allows an alias for a modified version
+ // of |reg| to be used within hazard regions.
+ MUST_USE_RESULT Register GetRegisterForStore(Register reg) {
+ DCHECK(is_outermost_scope());
+ if (alias_mappings_.find(reg.index()) == alias_mappings_.end()) {
+ // If not in a hazard region or a load for this register has not
+ // occurred no mapping is necessary.
+ return reg;
+ } else {
+ // Storing to a register with 1 or more loads issued. The
+ // register is mapped to a temporary alias so we don't overwrite
+ // the lhs value, e.g. y = x + (x = 1); has a register for x on
+ // the lhs and needs a new register x' for the upcoming store on
+ // the rhs as the original x is an input to the add operation.
+ Register alias = register_scope_.NewRegister();
+ alias_mappings_[reg.index()] = alias.index();
+ if (generator()->builder()->RegisterIsParameterOrLocal(reg)) {
+ // Keep track of registers that need to be restored on exit
+ // from the assignment hazard region.
+ aliased_locals_and_parameters_.insert(reg.index());
+ }
+ return alias;
+ }
+ }
+
+ private:
+ void RestoreAliasedLocalsAndParameters() {
+ // Move temporary registers holding values for locals and
+ // parameters back into their local and parameter registers.
+ for (auto reg = aliased_locals_and_parameters_.begin();
+ reg != aliased_locals_and_parameters_.end(); reg++) {
+ auto mapping = alias_mappings_.find(*reg);
+ if (mapping != alias_mappings_.end()) {
+ builder()->MoveRegister(Register(mapping->second), Register(*reg));
+ }
+ }
+ alias_mappings_.clear();
+ aliased_locals_and_parameters_.clear();
+ }
+
+ BytecodeArrayBuilder* builder() const { return generator()->builder(); }
+ BytecodeGenerator* generator() const { return generator_; }
+ bool is_outermost_scope() const { return generator_ != nullptr; }
+
+ BytecodeGenerator* generator_;
+ ZoneMap<int, int> alias_mappings_;
+ ZoneSet<int> aliased_locals_and_parameters_;
+ TemporaryRegisterScope register_scope_;
+
+ DISALLOW_COPY_AND_ASSIGN(AssignmentHazardScope);
+};
+
+
BytecodeGenerator::BytecodeGenerator(Isolate* isolate, Zone* zone)
: isolate_(isolate),
zone_(zone),
@@ -307,8 +404,7 @@ BytecodeGenerator::BytecodeGenerator(Isolate* isolate, Zone* zone)
execution_control_(nullptr),
execution_context_(nullptr),
execution_result_(nullptr),
- binary_expression_depth_(0),
- binary_expression_hazard_set_(zone) {
+ assignment_hazard_scope_(nullptr) {
InitializeAstVisitor(isolate);
}
@@ -506,8 +602,7 @@ void BytecodeGenerator::VisitDeclarations(
void BytecodeGenerator::VisitExpressionStatement(ExpressionStatement* stmt) {
- // TODO(rmcilroy): Replace this with a StatementResultScope when it exists.
- EffectResultScope effect_scope(this);
+ EffectResultScope statement_result_scope(this);
VisitForEffect(stmt->expression());
}
@@ -559,7 +654,7 @@ void BytecodeGenerator::VisitBreakStatement(BreakStatement* stmt) {
void BytecodeGenerator::VisitReturnStatement(ReturnStatement* stmt) {
- EffectResultScope effect_scope(this);
+ EffectResultScope statement_result_scope(this);
VisitForAccumulatorValue(stmt->expression());
builder()->Return();
}
@@ -628,7 +723,6 @@ void BytecodeGenerator::VisitDoWhileStatement(DoWhileStatement* stmt) {
LoopBuilder loop_builder(builder());
ControlScopeForIteration execution_control(this, stmt, &loop_builder);
BytecodeLabel body_label, condition_label, done_label;
-
if (stmt->cond()->ToBooleanIsFalse()) {
Visit(stmt->body());
// Bind condition_label and done_label for processing continue and break.
@@ -764,11 +858,7 @@ void BytecodeGenerator::VisitForInAssignment(Expression* expr,
void BytecodeGenerator::VisitForInStatement(ForInStatement* stmt) {
- // TODO(oth): For now we need a parent scope for paths that end up
- // in VisitLiteral which can allocate in the parent scope. A future
- // CL in preparation will add a StatementResultScope that will
- // remove the need for this EffectResultScope.
- EffectResultScope result_scope(this);
+ EffectResultScope statement_result_scope(this);
if (stmt->subject()->IsNullLiteral() ||
stmt->subject()->IsUndefinedLiteral(isolate())) {
@@ -1198,6 +1288,9 @@ void BytecodeGenerator::VisitVariableLoad(Variable* variable,
switch (variable->location()) {
case VariableLocation::LOCAL: {
Register source(Register(variable->index()));
+ if (assignment_hazard_scope()) {
+ source = assignment_hazard_scope()->GetRegisterForLoad(source);
+ }
execution_result()->SetResultInRegister(source);
break;
}
@@ -1205,6 +1298,9 @@ void BytecodeGenerator::VisitVariableLoad(Variable* variable,
// The parameter indices are shifted by 1 (receiver is variable
// index -1 but is parameter index 0 in BytecodeArrayBuilder).
Register source = builder()->Parameter(variable->index() + 1);
+ if (assignment_hazard_scope()) {
+ source = assignment_hazard_scope()->GetRegisterForLoad(source);
+ }
execution_result()->SetResultInRegister(source);
break;
}
@@ -1269,16 +1365,22 @@ void BytecodeGenerator::VisitVariableAssignment(Variable* variable,
case VariableLocation::LOCAL: {
// TODO(rmcilroy): support const mode initialization.
Register destination(variable->index());
+ if (assignment_hazard_scope()) {
+ destination =
+ assignment_hazard_scope()->GetRegisterForStore(destination);
+ }
builder()->StoreAccumulatorInRegister(destination);
- RecordStoreToRegister(destination);
break;
}
case VariableLocation::PARAMETER: {
// The parameter indices are shifted by 1 (receiver is variable
// index -1 but is parameter index 0 in BytecodeArrayBuilder).
Register destination(builder()->Parameter(variable->index() + 1));
+ if (assignment_hazard_scope()) {
+ destination =
+ assignment_hazard_scope()->GetRegisterForStore(destination);
+ }
builder()->StoreAccumulatorInRegister(destination);
- RecordStoreToRegister(destination);
break;
}
case VariableLocation::GLOBAL:
@@ -1825,37 +1927,33 @@ void BytecodeGenerator::VisitBinaryOperation(BinaryOperation* binop) {
void BytecodeGenerator::VisitCompareOperation(CompareOperation* expr) {
- // TODO(oth): Remove PrepareForBinaryExpression/CompleteBinaryExpression
- // once we have StatementScope that tracks hazardous loads/stores.
- PrepareForBinaryExpression();
+ // The evaluation of binary comparison expressions has an assignment
+ // hazard because the lhs may be a variable that evaluates to a
+ // local or parameter and the rhs may modify that, e.g. y = x + (x = 1)
+ // To get a correct result the generator treats the inner assigment
+ // as being made to a temporary x' that is spilled on exit of the
+ // assignment hazard.
+ AssignmentHazardScope assignment_hazard_scope(this);
+
Register lhs = VisitForRegisterValue(expr->left());
- if (builder()->RegisterIsParameterOrLocal(lhs)) {
- // Result was returned in an existing local or parameter. See if
- // it needs to be moved to a temporary.
- // TODO(oth) LoadFromAliasedRegister call into VisitVariableLoad().
- lhs = LoadFromAliasedRegister(lhs);
- }
VisitForAccumulatorValue(expr->right());
builder()->CompareOperation(expr->op(), lhs, language_mode_strength());
- CompleteBinaryExpression();
execution_result()->SetResultInAccumulator();
}
void BytecodeGenerator::VisitArithmeticExpression(BinaryOperation* expr) {
- // TODO(oth): Remove PrepareForBinaryExpression/CompleteBinaryExpression
- // once we have StatementScope that tracks hazardous loads/stores.
- PrepareForBinaryExpression();
+ // The evaluation of binary arithmetic expressions has an assignment
+ // hazard because the lhs may be a variable that evaluates to a
+ // local or parameter and the rhs may modify that, e.g. y = x + (x = 1)
+ // To get a correct result the generator treats the inner assigment
+ // as being made to a temporary x' that is spilled on exit of the
+ // assignment hazard.
+ AssignmentHazardScope assignment_hazard_scope(this);
+
Register lhs = VisitForRegisterValue(expr->left());
- if (builder()->RegisterIsParameterOrLocal(lhs)) {
- // Result was returned in an existing local or parameter. See if
- // it needs to be moved to a temporary.
- // TODO(oth) LoadFromAliasedRegister call into VisitVariableLoad().
- lhs = LoadFromAliasedRegister(lhs);
- }
VisitForAccumulatorValue(expr->right());
builder()->BinaryOperation(expr->op(), lhs, language_mode_strength());
- CompleteBinaryExpression();
execution_result()->SetResultInAccumulator();
}
@@ -2076,13 +2174,6 @@ void BytecodeGenerator::VisitFunctionClosureForContext() {
}
-void BytecodeGenerator::PrepareForBinaryExpression() {
- if (binary_expression_depth_++ == 0) {
- binary_expression_hazard_set_.clear();
- }
-}
-
-
// Visits the expression |expr| and places the result in the accumulator.
void BytecodeGenerator::VisitForAccumulatorValue(Expression* expr) {
AccumulatorResultScope accumulator_scope(this);
@@ -2106,35 +2197,6 @@ Register BytecodeGenerator::VisitForRegisterValue(Expression* expr) {
}
-Register BytecodeGenerator::LoadFromAliasedRegister(Register reg) {
- // TODO(oth): Follow on CL to load from re-map here.
- DCHECK(builder()->RegisterIsParameterOrLocal(reg));
- if (binary_expression_depth_ > 0) {
- binary_expression_hazard_set_.insert(reg.index());
- }
- return reg;
-}
-
-
-void BytecodeGenerator::RecordStoreToRegister(Register reg) {
- DCHECK(builder()->RegisterIsParameterOrLocal(reg));
- if (binary_expression_depth_ > 0) {
- // TODO(oth): a store to a register that's be loaded needs to be
- // remapped.
- DCHECK(binary_expression_hazard_set_.find(reg.index()) ==
- binary_expression_hazard_set_.end());
- }
-}
-
-
-void BytecodeGenerator::CompleteBinaryExpression() {
- DCHECK(binary_expression_depth_ > 0);
- binary_expression_depth_ -= 1;
- // TODO(oth): spill remapped registers into origins.
- // TODO(oth): make statement/top-level.
-}
-
-
Register BytecodeGenerator::NextContextRegister() const {
if (execution_context() == nullptr) {
// Return the incoming function context for the outermost execution context.

Powered by Google App Engine
This is Rietveld 408576698