OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
342 DEFINE_bool(block_concurrent_recompilation, false, | 342 DEFINE_bool(block_concurrent_recompilation, false, |
343 "block queued jobs until released") | 343 "block queued jobs until released") |
344 DEFINE_bool(concurrent_osr, false, | 344 DEFINE_bool(concurrent_osr, false, |
345 "concurrent on-stack replacement") | 345 "concurrent on-stack replacement") |
346 DEFINE_implication(concurrent_osr, concurrent_recompilation) | 346 DEFINE_implication(concurrent_osr, concurrent_recompilation) |
347 | 347 |
348 DEFINE_bool(omit_map_checks_for_leaf_maps, true, | 348 DEFINE_bool(omit_map_checks_for_leaf_maps, true, |
349 "do not emit check maps for constant values that have a leaf map, " | 349 "do not emit check maps for constant values that have a leaf map, " |
350 "deoptimize the optimized code if the layout of the maps changes.") | 350 "deoptimize the optimized code if the layout of the maps changes.") |
351 | 351 |
| 352 DEFINE_int(typed_array_max_size_in_heap, 64, |
| 353 "threshold for in-heap typed array") |
| 354 |
352 // Profiler flags. | 355 // Profiler flags. |
353 DEFINE_int(frame_count, 1, "number of stack frames inspected by the profiler") | 356 DEFINE_int(frame_count, 1, "number of stack frames inspected by the profiler") |
354 // 0x1800 fits in the immediate field of an ARM instruction. | 357 // 0x1800 fits in the immediate field of an ARM instruction. |
355 DEFINE_int(interrupt_budget, 0x1800, | 358 DEFINE_int(interrupt_budget, 0x1800, |
356 "execution budget before interrupt is triggered") | 359 "execution budget before interrupt is triggered") |
357 DEFINE_int(type_info_threshold, 25, | 360 DEFINE_int(type_info_threshold, 25, |
358 "percentage of ICs that must have type info to allow optimization") | 361 "percentage of ICs that must have type info to allow optimization") |
359 DEFINE_int(self_opt_count, 130, "call count before self-optimization") | 362 DEFINE_int(self_opt_count, 130, "call count before self-optimization") |
360 | 363 |
361 DEFINE_bool(trace_opt_verbose, false, "extra verbose compilation tracing") | 364 DEFINE_bool(trace_opt_verbose, false, "extra verbose compilation tracing") |
(...skipping 551 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
913 #undef DEFINE_ALIAS_float | 916 #undef DEFINE_ALIAS_float |
914 #undef DEFINE_ALIAS_args | 917 #undef DEFINE_ALIAS_args |
915 | 918 |
916 #undef FLAG_MODE_DECLARE | 919 #undef FLAG_MODE_DECLARE |
917 #undef FLAG_MODE_DEFINE | 920 #undef FLAG_MODE_DEFINE |
918 #undef FLAG_MODE_DEFINE_DEFAULTS | 921 #undef FLAG_MODE_DEFINE_DEFAULTS |
919 #undef FLAG_MODE_META | 922 #undef FLAG_MODE_META |
920 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 923 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
921 | 924 |
922 #undef COMMA | 925 #undef COMMA |
OLD | NEW |