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

Unified Diff: runtime/vm/flow_graph_compiler.cc

Issue 1288863006: Use zone allocated growable array to populate interim static and stub calls table, thus allocating … (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: add comment 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: runtime/vm/flow_graph_compiler.cc
diff --git a/runtime/vm/flow_graph_compiler.cc b/runtime/vm/flow_graph_compiler.cc
index 7f2d4a83c32d3b6cd266ef6154992df71c09f8a3..7a1985d47a6086124c60912489e4e69ec6de0f3c 100644
--- a/runtime/vm/flow_graph_compiler.cc
+++ b/runtime/vm/flow_graph_compiler.cc
@@ -174,9 +174,7 @@ FlowGraphCompiler::FlowGraphCompiler(
stackmap_table_builder_(NULL),
block_info_(block_order_.length()),
deopt_infos_(),
- static_calls_target_table_(GrowableObjectArray::ZoneHandle(
- // TODO(srdjan): Zone-allocate this array instead?
- GrowableObjectArray::New(Heap::kOld))),
+ static_calls_target_table_(),
is_optimizing_(is_optimizing),
may_reoptimize_(false),
intrinsic_mode_(false),
@@ -718,26 +716,16 @@ void FlowGraphCompiler::AddCurrentDescriptor(RawPcDescriptors::Kind kind,
void FlowGraphCompiler::AddStaticCallTarget(const Function& func) {
- ASSERT(Code::kSCallTableEntryLength == 3);
- ASSERT(Code::kSCallTableOffsetEntry == 0);
+ ASSERT(func.IsZoneHandle());
static_calls_target_table_.Add(
- Smi::Handle(Smi::New(assembler()->CodeSize())));
- ASSERT(Code::kSCallTableFunctionEntry == 1);
- static_calls_target_table_.Add(func);
- ASSERT(Code::kSCallTableCodeEntry == 2);
- static_calls_target_table_.Add(Code::Handle());
+ StaticCallsStruct(assembler()->CodeSize(), &func, NULL));
}
void FlowGraphCompiler::AddStubCallTarget(const Code& code) {
- ASSERT(Code::kSCallTableEntryLength == 3);
- ASSERT(Code::kSCallTableOffsetEntry == 0);
+ ASSERT(code.IsZoneHandle());
static_calls_target_table_.Add(
- Smi::Handle(Smi::New(assembler()->CodeSize())));
- ASSERT(Code::kSCallTableFunctionEntry == 1);
- static_calls_target_table_.Add(Function::Handle());
- ASSERT(Code::kSCallTableCodeEntry == 2);
- static_calls_target_table_.Add(code);
+ StaticCallsStruct(assembler()->CodeSize(), NULL, &code));
}
@@ -1001,8 +989,23 @@ void FlowGraphCompiler::FinalizeVarDescriptors(const Code& code) {
void FlowGraphCompiler::FinalizeStaticCallTargetsTable(const Code& code) {
ASSERT(code.static_calls_target_table() == Array::null());
- const Array& targets =
- Array::Handle(Array::MakeArray(static_calls_target_table_));
+ const Array& targets = Array::Handle(zone(), Array::New(
+ (static_calls_target_table_.length() * Code::kSCallTableEntryLength),
+ Heap::kOld));
+ Smi& smi_offset = Smi::Handle(zone());
+ for (intptr_t i = 0; i < static_calls_target_table_.length(); i++) {
+ const intptr_t target_ix = Code::kSCallTableEntryLength * i;
+ smi_offset = Smi::New(static_calls_target_table_[i].offset);
+ targets.SetAt(target_ix + Code::kSCallTableOffsetEntry, smi_offset);
+ if (static_calls_target_table_[i].function != NULL) {
+ targets.SetAt(target_ix + Code::kSCallTableFunctionEntry,
+ *static_calls_target_table_[i].function);
+ }
+ if (static_calls_target_table_[i].code != NULL) {
+ targets.SetAt(target_ix + Code::kSCallTableCodeEntry,
+ *static_calls_target_table_[i].code);
+ }
+ }
code.set_static_calls_target_table(targets);
INC_STAT(isolate(), total_code_size, targets.Length() * sizeof(uword));
}

Powered by Google App Engine
This is Rietveld 408576698