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

Side by Side Diff: runtime/vm/code_descriptors.cc

Issue 1731743003: Move precompilation-related flags to flags list. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: make print_stop_message default false to fix build Created 4 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 unified diff | Download patch
« no previous file with comments | « runtime/vm/block_scheduler.cc ('k') | runtime/vm/code_generator.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 #include "vm/code_descriptors.h" 5 #include "vm/code_descriptors.h"
6 6
7 namespace dart { 7 namespace dart {
8 8
9 DECLARE_FLAG(bool, precompilation);
10
11 void DescriptorList::AddDescriptor(RawPcDescriptors::Kind kind, 9 void DescriptorList::AddDescriptor(RawPcDescriptors::Kind kind,
12 intptr_t pc_offset, 10 intptr_t pc_offset,
13 intptr_t deopt_id, 11 intptr_t deopt_id,
14 TokenPosition token_pos, 12 TokenPosition token_pos,
15 intptr_t try_index) { 13 intptr_t try_index) {
16 ASSERT((kind == RawPcDescriptors::kRuntimeCall) || 14 ASSERT((kind == RawPcDescriptors::kRuntimeCall) ||
17 (kind == RawPcDescriptors::kOther) || 15 (kind == RawPcDescriptors::kOther) ||
18 (deopt_id != Thread::kNoDeoptId)); 16 (deopt_id != Thread::kNoDeoptId));
19 17
20 // When precompiling, we only use pc descriptors for exceptions. 18 // When precompiling, we only use pc descriptors for exceptions.
21 if (!FLAG_precompilation || try_index != -1) { 19 if (!FLAG_precompiled_mode || try_index != -1) {
22 intptr_t merged_kind_try = 20 intptr_t merged_kind_try =
23 RawPcDescriptors::MergedKindTry::Encode(kind, try_index); 21 RawPcDescriptors::MergedKindTry::Encode(kind, try_index);
24 22
25 PcDescriptors::EncodeInteger(&encoded_data_, merged_kind_try); 23 PcDescriptors::EncodeInteger(&encoded_data_, merged_kind_try);
26 PcDescriptors::EncodeInteger(&encoded_data_, pc_offset - prev_pc_offset); 24 PcDescriptors::EncodeInteger(&encoded_data_, pc_offset - prev_pc_offset);
27 PcDescriptors::EncodeInteger(&encoded_data_, deopt_id - prev_deopt_id); 25 PcDescriptors::EncodeInteger(&encoded_data_, deopt_id - prev_deopt_id);
28 PcDescriptors::EncodeInteger(&encoded_data_, 26 PcDescriptors::EncodeInteger(&encoded_data_,
29 token_pos.value() - prev_token_pos); 27 token_pos.value() - prev_token_pos);
30 28
31 prev_pc_offset = pc_offset; 29 prev_pc_offset = pc_offset;
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 list_[i].needs_stacktrace, 130 list_[i].needs_stacktrace,
133 has_catch_all); 131 has_catch_all);
134 handlers.SetHandledTypes(i, *list_[i].handler_types); 132 handlers.SetHandledTypes(i, *list_[i].handler_types);
135 } 133 }
136 } 134 }
137 return handlers.raw(); 135 return handlers.raw();
138 } 136 }
139 137
140 138
141 } // namespace dart 139 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/vm/block_scheduler.cc ('k') | runtime/vm/code_generator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698