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

Unified Diff: src/heap/heap.cc

Issue 1303403004: [Interpreter] Add support for parameter variables. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@int_add_bytecodes
Patch Set: Fix Windows build Created 5 years, 4 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/heap/heap.cc
diff --git a/src/heap/heap.cc b/src/heap/heap.cc
index 455b01e3f763b2979333363587ac01059c2d3319..c4960992b3889c098da756de5764f1443354772b 100644
--- a/src/heap/heap.cc
+++ b/src/heap/heap.cc
@@ -2918,8 +2918,7 @@ bool Heap::CreateInitialMaps() {
set_empty_byte_array(byte_array);
BytecodeArray* bytecode_array;
- AllocationResult allocation =
- AllocateBytecodeArray(0, nullptr, kPointerSize);
+ AllocationResult allocation = AllocateBytecodeArray(0, nullptr, 0, 0);
if (!allocation.To(&bytecode_array)) {
return false;
}
@@ -3518,7 +3517,8 @@ AllocationResult Heap::AllocateByteArray(int length, PretenureFlag pretenure) {
AllocationResult Heap::AllocateBytecodeArray(int length,
const byte* const raw_bytecodes,
- int frame_size) {
+ int frame_size,
+ int parameter_count) {
if (length < 0 || length > BytecodeArray::kMaxLength) {
v8::internal::Heap::FatalProcessOutOfMemory("invalid array length", true);
}
@@ -3534,6 +3534,7 @@ AllocationResult Heap::AllocateBytecodeArray(int length,
BytecodeArray* instance = BytecodeArray::cast(result);
instance->set_length(length);
instance->set_frame_size(frame_size);
+ instance->set_parameter_count(parameter_count);
CopyBytes(instance->GetFirstBytecodeAddress(), raw_bytecodes, length);
return result;

Powered by Google App Engine
This is Rietveld 408576698