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

Unified Diff: vm/object.cc

Issue 10824128: Eagerly get the function and code corresponding to the frame elements in a stack trace so that we w… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 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
« vm/exceptions.cc ('K') | « vm/object.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/object.cc
===================================================================
--- vm/object.cc (revision 10127)
+++ vm/object.cc (working copy)
@@ -10652,18 +10652,12 @@
const GrowableArray<uword>& frame_pcs) const {
Isolate* isolate = Isolate::Current();
ASSERT(isolate != NULL);
- Function& function = Function::Handle(isolate, Function::null());
Code& code = Code::Handle(isolate, Code::null());
Smi& pc_offset = Smi::Handle(isolate, Smi::New(0));
- const Array& function_array = Array::Handle(raw_ptr()->function_array_);
const Array& code_array = Array::Handle(raw_ptr()->code_array_);
const Array& pc_offset_array = Array::Handle(raw_ptr()->pc_offset_array_);
for (intptr_t i = 0; i < frame_pcs.length(); i++) {
- code = Code::LookupCode(frame_pcs[i]);
- ASSERT(!code.IsNull());
- function = code.function();
- function_array.SetAt((index + i), function);
- code_array.SetAt((index + i), code);
+ code ^= code_array.At(i);
pc_offset = Smi::New(frame_pcs[i] - code.EntryPoint());
pc_offset_array.SetAt((index + i), pc_offset);
}
@@ -10671,6 +10665,8 @@
RawStacktrace* Stacktrace::New(const GrowableArray<uword>& stack_frame_pcs,
+ const GrowableObjectArray& func_list,
+ const GrowableObjectArray& code_list,
Heap::Space space) {
ASSERT(Isolate::Current()->object_store()->stacktrace_class() !=
Class::null());
@@ -10684,8 +10680,8 @@
}
intptr_t length = stack_frame_pcs.length();
// Create arrays for the function, code and pc_offset triplet for each frame.
- const Array& function_array = Array::Handle(Array::New(length));
- const Array& code_array = Array::Handle(Array::New(length));
+ const Array& function_array = Array::Handle(Array::MakeArray(func_list));
+ const Array& code_array = Array::Handle(Array::MakeArray(code_list));
const Array& pc_offset_array = Array::Handle(Array::New(length));
result.set_function_array(function_array);
result.set_code_array(code_array);
@@ -10696,9 +10692,13 @@
}
-void Stacktrace::Append(const GrowableArray<uword>& stack_frame_pcs) const {
+void Stacktrace::Append(const GrowableArray<uword>& stack_frame_pcs,
+ const GrowableObjectArray& func_list,
+ const GrowableObjectArray& code_list) const {
intptr_t old_length = Length();
intptr_t new_length = old_length + stack_frame_pcs.length();
+ ASSERT(stack_frame_pcs.length() == func_list.Length());
+ ASSERT(stack_frame_pcs.length() == code_list.Length());
// Grow the arrays for function, code and pc_offset triplet to accommodate
// the new stack frames.
@@ -10711,6 +10711,15 @@
set_function_array(function_array);
set_code_array(code_array);
set_pc_offset_array(pc_offset_array);
+ // Now append the new function and code list to the existing arrays.
+ intptr_t j = 0;
+ Object& obj = Object::Handle();
+ for (intptr_t i = old_length; i < new_length; i++, j++) {
+ obj = func_list.At(j);
+ function_array.SetAt(i, obj);
+ obj = code_list.At(j);
+ code_array.SetAt(i, obj);
+ }
// Now populate the arrays with appropriate values from each new frame.
SetupStacktrace(old_length, stack_frame_pcs);
}
« vm/exceptions.cc ('K') | « vm/object.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698