Chromium Code Reviews

Unified Diff: src/interpreter/interpreter.h

Issue 1294543002: [Interpreter] Minimal bytecode generator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@oth-register-conversion
Patch Set: Incorporate comments on patch set 1 and add a simple test. Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: src/interpreter/interpreter.h
diff --git a/src/interpreter/interpreter.h b/src/interpreter/interpreter.h
index ba145faaf1429285c2c20b9fb53a86f8b9c02b07..64101de6570a7ecf831daa0f90f7d9cb50436796 100644
--- a/src/interpreter/interpreter.h
+++ b/src/interpreter/interpreter.h
@@ -36,6 +36,9 @@ class Interpreter {
// Initializes the interpreter.
void Initialize();
+ // Generate bytecode for |info|.
+ static bool MakeBytecode(CompilationInfo* info);
+
private:
// Bytecode handler generator functions.
#define DECLARE_BYTECODE_HANDLER_GENERATOR(Name, ...) \

Powered by Google App Engine