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

Unified Diff: src/compiler/simplified-lowering.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/simplified-lowering.cc
diff --git a/src/compiler/simplified-lowering.cc b/src/compiler/simplified-lowering.cc
index 050d6ce0873211d55f179b50b1f4c1e88ef39b67..ed7cc0c75455c7dfbbcc7c13576c9b71dfe2918b 100644
--- a/src/compiler/simplified-lowering.cc
+++ b/src/compiler/simplified-lowering.cc
@@ -1042,6 +1042,8 @@ class RepresentationSelector {
return VisitBinop(node, kMachFloat64, kMachInt32, kMachFloat64);
case IrOpcode::kLoadStackPointer:
return VisitLeaf(node, kMachPtr);
+ case IrOpcode::kLoadFramePointer:
Michael Starzinger 2015/05/20 14:25:18 nit: Lets just have both labels (i.e. kLoadStackPo
danno 2015/05/22 11:21:35 Done.
+ return VisitLeaf(node, kMachPtr);
case IrOpcode::kStateValues:
VisitStateValues(node);
break;

Powered by Google App Engine
This is Rietveld 408576698