| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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_generator.h" | 5 #include "vm/code_generator.h" |
| 6 | 6 |
| 7 #include "vm/assembler.h" | 7 #include "vm/assembler.h" |
| 8 #include "vm/ast.h" | 8 #include "vm/ast.h" |
| 9 #include "vm/code_patcher.h" | 9 #include "vm/code_patcher.h" |
| 10 #include "vm/compiler.h" | 10 #include "vm/compiler.h" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 #include "vm/stack_frame.h" | 23 #include "vm/stack_frame.h" |
| 24 #include "vm/symbols.h" | 24 #include "vm/symbols.h" |
| 25 #include "vm/thread_registry.h" | 25 #include "vm/thread_registry.h" |
| 26 #include "vm/verifier.h" | 26 #include "vm/verifier.h" |
| 27 | 27 |
| 28 namespace dart { | 28 namespace dart { |
| 29 | 29 |
| 30 DEFINE_FLAG(bool, deoptimize_alot, false, | 30 DEFINE_FLAG(bool, deoptimize_alot, false, |
| 31 "Deoptimizes all live frames when we are about to return to Dart code from" | 31 "Deoptimizes all live frames when we are about to return to Dart code from" |
| 32 " native entries."); | 32 " native entries."); |
| 33 DEFINE_FLAG(bool, background_compilation, false, | 33 DEFINE_FLAG(bool, background_compilation, true, |
| 34 "Run optimizing compilation in background"); | 34 "Run optimizing compilation in background"); |
| 35 DEFINE_FLAG(int, max_subtype_cache_entries, 100, | 35 DEFINE_FLAG(int, max_subtype_cache_entries, 100, |
| 36 "Maximum number of subtype cache entries (number of checks cached)."); | 36 "Maximum number of subtype cache entries (number of checks cached)."); |
| 37 DEFINE_FLAG(int, optimization_counter_threshold, 30000, | 37 DEFINE_FLAG(int, optimization_counter_threshold, 30000, |
| 38 "Function's usage-counter value before it is optimized, -1 means never"); | 38 "Function's usage-counter value before it is optimized, -1 means never"); |
| 39 DEFINE_FLAG(int, regexp_optimization_counter_threshold, 1000, | 39 DEFINE_FLAG(int, regexp_optimization_counter_threshold, 1000, |
| 40 "RegExp's usage-counter value before it is optimized, -1 means never"); | 40 "RegExp's usage-counter value before it is optimized, -1 means never"); |
| 41 DEFINE_FLAG(charp, optimization_filter, NULL, "Optimize only named function"); | 41 DEFINE_FLAG(charp, optimization_filter, NULL, "Optimize only named function"); |
| 42 DEFINE_FLAG(int, reoptimization_counter_threshold, 4000, | 42 DEFINE_FLAG(int, reoptimization_counter_threshold, 4000, |
| 43 "Counter threshold before a function gets reoptimized."); | 43 "Counter threshold before a function gets reoptimized."); |
| (...skipping 1844 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1888 const intptr_t elm_size = old_data.ElementSizeInBytes(); | 1888 const intptr_t elm_size = old_data.ElementSizeInBytes(); |
| 1889 const TypedData& new_data = | 1889 const TypedData& new_data = |
| 1890 TypedData::Handle(TypedData::New(cid, new_size, Heap::kOld)); | 1890 TypedData::Handle(TypedData::New(cid, new_size, Heap::kOld)); |
| 1891 TypedData::Copy(new_data, 0, old_data, 0, old_size * elm_size); | 1891 TypedData::Copy(new_data, 0, old_data, 0, old_size * elm_size); |
| 1892 typed_data_cell.SetAt(0, new_data); | 1892 typed_data_cell.SetAt(0, new_data); |
| 1893 arguments.SetReturn(new_data); | 1893 arguments.SetReturn(new_data); |
| 1894 } | 1894 } |
| 1895 | 1895 |
| 1896 | 1896 |
| 1897 } // namespace dart | 1897 } // namespace dart |
| OLD | NEW |