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

Unified Diff: src/heap/heap.cc

Issue 1809123003: [Interpreter] Fixes CopyBytecodeArray to copy interrupt_budget field. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Updated webkit.status. Skips a slow test on ignition. Created 4 years, 9 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 | « no previous file | test/cctest/cctest.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap/heap.cc
diff --git a/src/heap/heap.cc b/src/heap/heap.cc
index dc5f8c8ccb52b3a2af7e7b2526acbc6c7f4ac88f..b427e11daed841a6249bd5632e92fc11393d2078 100644
--- a/src/heap/heap.cc
+++ b/src/heap/heap.cc
@@ -3418,6 +3418,7 @@ AllocationResult Heap::CopyBytecodeArray(BytecodeArray* bytecode_array) {
copy->set_constant_pool(bytecode_array->constant_pool());
copy->set_handler_table(bytecode_array->handler_table());
copy->set_source_position_table(bytecode_array->source_position_table());
+ copy->set_interrupt_budget(bytecode_array->interrupt_budget());
bytecode_array->CopyBytecodesTo(copy);
return copy;
}
« no previous file with comments | « no previous file | test/cctest/cctest.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698