Chromium Code Reviews

Unified Diff: src/compiler/typer.cc

Issue 1109773002: [turbofan] Add SimplifiedOperator::Allocate operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix tests for ARM. Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: src/compiler/typer.cc
diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc
index 6fd609f2ab2ef6fad23189d1585ce6b7b181afcc..7f176fe1ff48eb6aadb03b7d4e9fc863c850043a 100644
--- a/src/compiler/typer.cc
+++ b/src/compiler/typer.cc
@@ -1784,6 +1784,11 @@ Bounds Typer::Visitor::TypeChangeBitToBool(Node* node) {
}
+Bounds Typer::Visitor::TypeAllocate(Node* node) {
+ return Bounds(Type::TaggedPointer());
+}
+
+
Bounds Typer::Visitor::TypeLoadField(Node* node) {
return Bounds(FieldAccessOf(node->op()).type);
}

Powered by Google App Engine