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

Side by Side Diff: src/flag-definitions.h

Issue 258953010: Enable concurrent OSR. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 334 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 DEFINE_bool(concurrent_recompilation, true, 345 DEFINE_bool(concurrent_recompilation, true,
346 "optimizing hot functions asynchronously on a separate thread") 346 "optimizing hot functions asynchronously on a separate thread")
347 DEFINE_bool(trace_concurrent_recompilation, false, 347 DEFINE_bool(trace_concurrent_recompilation, false,
348 "track concurrent recompilation") 348 "track concurrent recompilation")
349 DEFINE_int(concurrent_recompilation_queue_length, 8, 349 DEFINE_int(concurrent_recompilation_queue_length, 8,
350 "the length of the concurrent compilation queue") 350 "the length of the concurrent compilation queue")
351 DEFINE_int(concurrent_recompilation_delay, 0, 351 DEFINE_int(concurrent_recompilation_delay, 0,
352 "artificial compilation delay in ms") 352 "artificial compilation delay in ms")
353 DEFINE_bool(block_concurrent_recompilation, false, 353 DEFINE_bool(block_concurrent_recompilation, false,
354 "block queued jobs until released") 354 "block queued jobs until released")
355 DEFINE_bool(concurrent_osr, false, 355 DEFINE_bool(concurrent_osr, true,
356 "concurrent on-stack replacement") 356 "concurrent on-stack replacement")
357 DEFINE_implication(concurrent_osr, concurrent_recompilation) 357 DEFINE_implication(concurrent_osr, concurrent_recompilation)
358 358
359 DEFINE_bool(omit_map_checks_for_leaf_maps, true, 359 DEFINE_bool(omit_map_checks_for_leaf_maps, true,
360 "do not emit check maps for constant values that have a leaf map, " 360 "do not emit check maps for constant values that have a leaf map, "
361 "deoptimize the optimized code if the layout of the maps changes.") 361 "deoptimize the optimized code if the layout of the maps changes.")
362 362
363 DEFINE_int(typed_array_max_size_in_heap, 64, 363 DEFINE_int(typed_array_max_size_in_heap, 64,
364 "threshold for in-heap typed array") 364 "threshold for in-heap typed array")
365 365
(...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after
927 #undef DEFINE_ALIAS_float 927 #undef DEFINE_ALIAS_float
928 #undef DEFINE_ALIAS_args 928 #undef DEFINE_ALIAS_args
929 929
930 #undef FLAG_MODE_DECLARE 930 #undef FLAG_MODE_DECLARE
931 #undef FLAG_MODE_DEFINE 931 #undef FLAG_MODE_DEFINE
932 #undef FLAG_MODE_DEFINE_DEFAULTS 932 #undef FLAG_MODE_DEFINE_DEFAULTS
933 #undef FLAG_MODE_META 933 #undef FLAG_MODE_META
934 #undef FLAG_MODE_DEFINE_IMPLICATIONS 934 #undef FLAG_MODE_DEFINE_IMPLICATIONS
935 935
936 #undef COMMA 936 #undef COMMA
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698