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

Unified Diff: src/compiler/typer.cc

Issue 1146963002: Add %GetCallerJSFunction intrinsic (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Merge with ToT Created 5 years, 7 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
Index: src/compiler/typer.cc
diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc
index dafd3c95a128f317d0033d1d0b6aeb2e0441f0a2..4220a22ec754da5734b7db60731c11bcbc7e09ca 100644
--- a/src/compiler/typer.cc
+++ b/src/compiler/typer.cc
@@ -2283,6 +2283,11 @@ Bounds Typer::Visitor::TypeLoadStackPointer(Node* node) {
}
+Bounds Typer::Visitor::TypeLoadFramePointer(Node* node) {
+ return Bounds(Type::Internal());
+}
+
+
Bounds Typer::Visitor::TypeCheckedLoad(Node* node) {
return Bounds::Unbounded(zone());
}

Powered by Google App Engine
This is Rietveld 408576698