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

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

Issue 10417010: Run Crankshaft on a separate thread. (Closed) Base URL: https://chromiumcodereview.appspot.com/10387157
Patch Set: Created 8 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
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 456 matching lines...) Expand 10 before | Expand all | Expand 10 after
467 DEFINE_bool(debug_script_collected_events, false, 467 DEFINE_bool(debug_script_collected_events, false,
468 "Enable debugger script collected events") 468 "Enable debugger script collected events")
469 #else 469 #else
470 DEFINE_bool(debug_compile_events, true, "Enable debugger compile events") 470 DEFINE_bool(debug_compile_events, true, "Enable debugger compile events")
471 DEFINE_bool(debug_script_collected_events, true, 471 DEFINE_bool(debug_script_collected_events, true,
472 "Enable debugger script collected events") 472 "Enable debugger script collected events")
473 #endif 473 #endif
474 474
475 475
476 // 476 //
477 // Run Crankshaft on a separate thread
478 //
479
480 DEFINE_bool(concurrent_crankshaft, false, "run crankshaft on a thread of its "
danno 2012/05/22 10:32:19 There is already a "Flags for Crankshaft section"
481 "own")
482
483
484 //
477 // GDB JIT integration flags. 485 // GDB JIT integration flags.
478 // 486 //
479 487
480 DEFINE_bool(gdbjit, false, "enable GDBJIT interface (disables compacting GC)") 488 DEFINE_bool(gdbjit, false, "enable GDBJIT interface (disables compacting GC)")
481 DEFINE_bool(gdbjit_full, false, "enable GDBJIT interface for all code objects") 489 DEFINE_bool(gdbjit_full, false, "enable GDBJIT interface for all code objects")
482 DEFINE_bool(gdbjit_dump, false, "dump elf objects with debug info to disk") 490 DEFINE_bool(gdbjit_dump, false, "dump elf objects with debug info to disk")
483 DEFINE_string(gdbjit_dump_filter, "", 491 DEFINE_string(gdbjit_dump_filter, "",
484 "dump only objects containing this substring") 492 "dump only objects containing this substring")
485 493
486 // mark-compact.cc 494 // mark-compact.cc
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
655 #undef DEFINE_bool 663 #undef DEFINE_bool
656 #undef DEFINE_int 664 #undef DEFINE_int
657 #undef DEFINE_string 665 #undef DEFINE_string
658 #undef DEFINE_implication 666 #undef DEFINE_implication
659 667
660 #undef FLAG_MODE_DECLARE 668 #undef FLAG_MODE_DECLARE
661 #undef FLAG_MODE_DEFINE 669 #undef FLAG_MODE_DEFINE
662 #undef FLAG_MODE_DEFINE_DEFAULTS 670 #undef FLAG_MODE_DEFINE_DEFAULTS
663 #undef FLAG_MODE_META 671 #undef FLAG_MODE_META
664 #undef FLAG_MODE_DEFINE_IMPLICATIONS 672 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698