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

Unified Diff: src/code-factory.cc

Issue 2636913002: [liveedit] reimplement frame restarting. (Closed)
Patch Set: rebase Created 3 years, 11 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/code-factory.h ('k') | src/compiler/ast-graph-builder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/code-factory.cc
diff --git a/src/code-factory.cc b/src/code-factory.cc
index 64da24de4bbf217b56ff4b51b60977d087f0f784..fcf7f33e48f0df036ca2502cc6007840d0f0fd69 100644
--- a/src/code-factory.cc
+++ b/src/code-factory.cc
@@ -312,6 +312,18 @@ Callable CodeFactory::ResumeGenerator(Isolate* isolate) {
}
// static
+Callable CodeFactory::FrameDropperTrampoline(Isolate* isolate) {
+ return Callable(isolate->builtins()->FrameDropperTrampoline(),
+ FrameDropperTrampolineDescriptor(isolate));
+}
+
+// static
+Callable CodeFactory::HandleDebuggerStatement(Isolate* isolate) {
+ return Callable(isolate->builtins()->HandleDebuggerStatement(),
+ ContextOnlyDescriptor(isolate));
+}
+
+// static
Callable CodeFactory::FastCloneShallowArray(
Isolate* isolate, AllocationSiteMode allocation_mode) {
return Callable(isolate->builtins()->NewCloneShallowArray(allocation_mode),
« no previous file with comments | « src/code-factory.h ('k') | src/compiler/ast-graph-builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698