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

Unified Diff: runtime/vm/flow_graph_compiler.h

Issue 2686813006: Reapply "Use CodeSourceMap for stack traces (still JIT only)." (Closed)
Patch Set: Created 3 years, 10 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 | « runtime/vm/exceptions.cc ('k') | runtime/vm/flow_graph_compiler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flow_graph_compiler.h
diff --git a/runtime/vm/flow_graph_compiler.h b/runtime/vm/flow_graph_compiler.h
index 3d8196a8d53ba829218cc57b3b5ead54ae849a42..d51002f58e1b3784bb13a4499eadec76c0c7e8f0 100644
--- a/runtime/vm/flow_graph_compiler.h
+++ b/runtime/vm/flow_graph_compiler.h
@@ -307,7 +307,6 @@ class FlowGraphCompiler : public ValueObject {
const FlowGraph& flow_graph() const { return flow_graph_; }
- DescriptorList* pc_descriptors_list() const { return pc_descriptors_list_; }
BlockEntryInstr* current_block() const { return current_block_; }
void set_current_block(BlockEntryInstr* value) { current_block_ = value; }
static bool CanOptimize();
@@ -498,6 +497,11 @@ class FlowGraphCompiler : public ValueObject {
void AddCurrentDescriptor(RawPcDescriptors::Kind kind,
intptr_t deopt_id,
TokenPosition token_pos);
+ void AddDescriptor(RawPcDescriptors::Kind kind,
+ intptr_t pc_offset,
+ intptr_t deopt_id,
+ TokenPosition token_pos,
+ intptr_t try_index);
void RecordSafepoint(LocationSummary* locs,
intptr_t slow_path_argument_count = 0);
« no previous file with comments | « runtime/vm/exceptions.cc ('k') | runtime/vm/flow_graph_compiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698