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

Unified Diff: src/crankshaft/hydrogen.cc

Issue 1542963002: [runtime] Introduce dedicated JSBoundFunction to represent bound functions. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@FunctionConstructor
Patch Set: Created 5 years 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/crankshaft/hydrogen.cc
diff --git a/src/crankshaft/hydrogen.cc b/src/crankshaft/hydrogen.cc
index 35e3bad8a42d0228d87f59e57bbbcadffe25c6ed..2934ff5855c067226889254b8a84bf909c127896 100644
--- a/src/crankshaft/hydrogen.cc
+++ b/src/crankshaft/hydrogen.cc
@@ -12168,8 +12168,8 @@ void HOptimizedGraphBuilder::GenerateIsFunction(CallRuntime* call) {
DCHECK(call->arguments()->length() == 1);
CHECK_ALIVE(VisitForValue(call->arguments()->at(0)));
HValue* value = Pop();
- HHasInstanceTypeAndBranch* result =
- New<HHasInstanceTypeAndBranch>(value, JS_FUNCTION_TYPE);
+ HHasInstanceTypeAndBranch* result = New<HHasInstanceTypeAndBranch>(
+ value, FIRST_FUNCTION_TYPE, LAST_FUNCTION_TYPE);
return ast_context()->ReturnControl(result, call->id());
}
« no previous file with comments | « src/compiler/js-intrinsic-lowering.cc ('k') | src/factory.h » ('j') | src/json-stringifier.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698