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

Unified Diff: src/interpreter/interpreter.cc

Issue 1230753004: [Interpreter] Add BytecodeArray class and add to SharedFunctionInfo. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Additional object methods for BytecodeArray. Created 5 years, 5 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/interpreter/interpreter.cc
diff --git a/src/interpreter/interpreter.cc b/src/interpreter/interpreter.cc
index 8c206c91a4305371c7a14da9b237657543bdab88..3af41fa5e279ff27ef7a72a58b50a4d3fa909cdb 100644
--- a/src/interpreter/interpreter.cc
+++ b/src/interpreter/interpreter.cc
@@ -43,8 +43,6 @@ void Interpreter::Initialize(Isolate* isolate, bool create_heap_objects) {
}
-// Load literal '0' into the register index specified by the bytecode's
-// argument.
rmcilroy 2015/07/16 10:29:44 Did you mean to drop this comment?
oth 2015/07/16 13:14:39 Nope. Fixed.
void Interpreter::DoLoadLiteral0(compiler::InterpreterAssembler* assembler) {
Node* register_index = __ BytecodeArg(0);
__ StoreRegister(__ NumberConstant(0), register_index);

Powered by Google App Engine
This is Rietveld 408576698