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

Unified Diff: src/compiler/simplified-lowering.cc

Issue 2384113002: [turbofan] Osr value typing + dynamic type checks on entry. (Closed)
Patch Set: Fix liveness block Created 4 years, 2 months 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
« no previous file with comments | « src/compiler/pipeline.cc ('k') | src/compiler/typer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/simplified-lowering.cc
diff --git a/src/compiler/simplified-lowering.cc b/src/compiler/simplified-lowering.cc
index 447573f18546a2930f5513d3333b5d82761d254b..a49922bd6bc5a0b075e2e5529e16532918238ab9 100644
--- a/src/compiler/simplified-lowering.cc
+++ b/src/compiler/simplified-lowering.cc
@@ -161,7 +161,8 @@ void ReplaceEffectControlUses(Node* node, Node* effect, Node* control) {
} else if (NodeProperties::IsEffectEdge(edge)) {
edge.UpdateTo(effect);
} else {
- DCHECK(NodeProperties::IsValueEdge(edge));
+ DCHECK(NodeProperties::IsValueEdge(edge) ||
+ NodeProperties::IsContextEdge(edge));
}
}
}
@@ -1266,6 +1267,30 @@ class RepresentationSelector {
return;
}
+ void VisitOsrGuard(Node* node) {
+ VisitInputs(node);
+
+ // Insert a dynamic check for the OSR value type if necessary.
+ switch (OsrGuardTypeOf(node->op())) {
+ case OsrGuardType::kUninitialized:
+ // At this point, we should always have a type for the OsrValue.
+ UNREACHABLE();
+ break;
+ case OsrGuardType::kSignedSmall:
+ if (lower()) {
+ NodeProperties::ChangeOp(node,
+ simplified()->CheckedTaggedToTaggedSigned());
+ }
+ return SetOutput(node, MachineRepresentation::kTaggedSigned);
+ case OsrGuardType::kAny: // Nothing to check.
+ if (lower()) {
+ DeferReplacement(node, node->InputAt(0));
+ }
+ return SetOutput(node, MachineRepresentation::kTagged);
+ }
+ UNREACHABLE();
+ }
+
// Dispatching routine for visiting the node {node} with the usage {use}.
// Depending on the operator, propagate new usage info to the inputs.
void VisitNode(Node* node, Truncation truncation,
@@ -2409,6 +2434,9 @@ class RepresentationSelector {
return;
}
+ case IrOpcode::kOsrGuard:
+ return VisitOsrGuard(node);
+
// Operators with all inputs tagged and no or tagged output have uniform
// handling.
case IrOpcode::kEnd:
@@ -2427,9 +2455,9 @@ class RepresentationSelector {
case IrOpcode::kThrow:
case IrOpcode::kBeginRegion:
case IrOpcode::kFinishRegion:
- case IrOpcode::kOsrValue:
case IrOpcode::kProjection:
case IrOpcode::kObjectState:
+ case IrOpcode::kOsrValue:
// All JavaScript operators except JSToNumber have uniform handling.
#define OPCODE_CASE(name) case IrOpcode::k##name:
JS_SIMPLE_BINOP_LIST(OPCODE_CASE)
« no previous file with comments | « src/compiler/pipeline.cc ('k') | src/compiler/typer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698