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

Unified Diff: src/code-factory.h

Issue 1949023003: [Interpreter] Fix incorrect frame walking in arguments create stubs (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add ports Created 4 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
« no previous file with comments | « src/bailout-reason.h ('k') | src/code-factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/code-factory.h
diff --git a/src/code-factory.h b/src/code-factory.h
index 986298cc7be87f41738b143801e72c21f56bf980..7ee63bd656cacd34c5be6897e470de98dc0bd052 100644
--- a/src/code-factory.h
+++ b/src/code-factory.h
@@ -125,9 +125,12 @@ class CodeFactory final {
static Callable FastNewClosure(Isolate* isolate, LanguageMode language_mode,
FunctionKind kind);
static Callable FastNewObject(Isolate* isolate);
- static Callable FastNewRestParameter(Isolate* isolate);
- static Callable FastNewSloppyArguments(Isolate* isolate);
- static Callable FastNewStrictArguments(Isolate* isolate);
+ static Callable FastNewRestParameter(Isolate* isolate,
+ bool skip_stub_frame = false);
+ static Callable FastNewSloppyArguments(Isolate* isolate,
+ bool skip_stub_frame = false);
+ static Callable FastNewStrictArguments(Isolate* isolate,
+ bool skip_stub_frame = false);
static Callable AllocateHeapNumber(Isolate* isolate);
static Callable AllocateMutableHeapNumber(Isolate* isolate);
« no previous file with comments | « src/bailout-reason.h ('k') | src/code-factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698