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

Side by Side Diff: runtime/vm/flow_graph_compiler.h

Issue 2718353002: Revert "Track the 'awaiter return' call stack..." (Closed)
Patch Set: Created 3 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 unified diff | Download patch
« no previous file with comments | « runtime/vm/flow_graph_builder.cc ('k') | runtime/vm/flow_graph_compiler.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #ifndef RUNTIME_VM_FLOW_GRAPH_COMPILER_H_ 5 #ifndef RUNTIME_VM_FLOW_GRAPH_COMPILER_H_
6 #define RUNTIME_VM_FLOW_GRAPH_COMPILER_H_ 6 #define RUNTIME_VM_FLOW_GRAPH_COMPILER_H_
7 7
8 #include "vm/allocation.h" 8 #include "vm/allocation.h"
9 #include "vm/assembler.h" 9 #include "vm/assembler.h"
10 #include "vm/code_descriptors.h" 10 #include "vm/code_descriptors.h"
(...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after
484 // Returns true if there is a next block after the current one in 484 // Returns true if there is a next block after the current one in
485 // the block order and if it is the given block. 485 // the block order and if it is the given block.
486 bool CanFallThroughTo(BlockEntryInstr* block_entry) const; 486 bool CanFallThroughTo(BlockEntryInstr* block_entry) const;
487 487
488 // Return true-, false- and fall-through label for a branch instruction. 488 // Return true-, false- and fall-through label for a branch instruction.
489 BranchLabels CreateBranchLabels(BranchInstr* branch) const; 489 BranchLabels CreateBranchLabels(BranchInstr* branch) const;
490 490
491 void AddExceptionHandler(intptr_t try_index, 491 void AddExceptionHandler(intptr_t try_index,
492 intptr_t outer_try_index, 492 intptr_t outer_try_index,
493 intptr_t pc_offset, 493 intptr_t pc_offset,
494 TokenPosition token_pos,
495 bool is_generated,
496 const Array& handler_types, 494 const Array& handler_types,
497 bool needs_stacktrace); 495 bool needs_stacktrace);
498 void SetNeedsStackTrace(intptr_t try_index); 496 void SetNeedsStackTrace(intptr_t try_index);
499 void AddCurrentDescriptor(RawPcDescriptors::Kind kind, 497 void AddCurrentDescriptor(RawPcDescriptors::Kind kind,
500 intptr_t deopt_id, 498 intptr_t deopt_id,
501 TokenPosition token_pos); 499 TokenPosition token_pos);
502 void AddDescriptor(RawPcDescriptors::Kind kind, 500 void AddDescriptor(RawPcDescriptors::Kind kind,
503 intptr_t pc_offset, 501 intptr_t pc_offset,
504 intptr_t deopt_id, 502 intptr_t deopt_id,
505 TokenPosition token_pos, 503 TokenPosition token_pos,
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
803 ZoneGrowableArray<const ICData*>* deopt_id_to_ic_data_; 801 ZoneGrowableArray<const ICData*>* deopt_id_to_ic_data_;
804 802
805 Array& edge_counters_array_; 803 Array& edge_counters_array_;
806 804
807 DISALLOW_COPY_AND_ASSIGN(FlowGraphCompiler); 805 DISALLOW_COPY_AND_ASSIGN(FlowGraphCompiler);
808 }; 806 };
809 807
810 } // namespace dart 808 } // namespace dart
811 809
812 #endif // RUNTIME_VM_FLOW_GRAPH_COMPILER_H_ 810 #endif // RUNTIME_VM_FLOW_GRAPH_COMPILER_H_
OLDNEW
« no previous file with comments | « runtime/vm/flow_graph_builder.cc ('k') | runtime/vm/flow_graph_compiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698