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

Unified Diff: src/runtime.h

Issue 10417010: Run Crankshaft on a separate thread. (Closed) Base URL: https://chromiumcodereview.appspot.com/10387157
Patch Set: Created 8 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/runtime.h
diff --git a/src/runtime.h b/src/runtime.h
index 83991bb76bbcad04f93f0a2b108a58029a8e133d..5707f60f764d7359eb1345b97ee6d79c71fa85f8 100644
--- a/src/runtime.h
+++ b/src/runtime.h
@@ -706,6 +706,9 @@ class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {};
class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {};
class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {};
+
+MaybeObject *CompileJSFunction(Isolate *isolate, Handle<JSFunction> function);
+
} } // namespace v8::internal
#endif // V8_RUNTIME_H_

Powered by Google App Engine
This is Rietveld 408576698