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

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

Issue 8357004: Add flag to tracing element kind transitions (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: disable flags Created 9 years, 2 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 | « src/code-stubs.cc ('k') | src/frames.h » ('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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 509 matching lines...) Expand 10 before | Expand all | Expand 10 after
520 // 520 //
521 // Disassembler only flags 521 // Disassembler only flags
522 // 522 //
523 #undef FLAG 523 #undef FLAG
524 #ifdef ENABLE_DISASSEMBLER 524 #ifdef ENABLE_DISASSEMBLER
525 #define FLAG FLAG_FULL 525 #define FLAG FLAG_FULL
526 #else 526 #else
527 #define FLAG FLAG_READONLY 527 #define FLAG FLAG_READONLY
528 #endif 528 #endif
529 529
530 // elements.cc
531 DEFINE_bool(trace_elements_transitions, false, "trace elements transitions")
532
530 // code-stubs.cc 533 // code-stubs.cc
531 DEFINE_bool(print_code_stubs, false, "print code stubs") 534 DEFINE_bool(print_code_stubs, false, "print code stubs")
532 535
533 // codegen-ia32.cc / codegen-arm.cc 536 // codegen-ia32.cc / codegen-arm.cc
534 DEFINE_bool(print_code, false, "print generated code") 537 DEFINE_bool(print_code, false, "print generated code")
535 DEFINE_bool(print_opt_code, false, "print optimized code") 538 DEFINE_bool(print_opt_code, false, "print optimized code")
536 DEFINE_bool(print_unopt_code, false, "print unoptimized code before " 539 DEFINE_bool(print_unopt_code, false, "print unoptimized code before "
537 "printing optimized code based on it") 540 "printing optimized code based on it")
538 DEFINE_bool(print_code_verbose, false, "print more information for code") 541 DEFINE_bool(print_code_verbose, false, "print more information for code")
539 DEFINE_bool(print_builtin_code, false, "print generated code for builtins") 542 DEFINE_bool(print_builtin_code, false, "print generated code for builtins")
540 543
541 // Cleanup... 544 // Cleanup...
542 #undef FLAG_FULL 545 #undef FLAG_FULL
543 #undef FLAG_READONLY 546 #undef FLAG_READONLY
544 #undef FLAG 547 #undef FLAG
545 548
546 #undef DEFINE_bool 549 #undef DEFINE_bool
547 #undef DEFINE_int 550 #undef DEFINE_int
548 #undef DEFINE_string 551 #undef DEFINE_string
549 552
550 #undef FLAG_MODE_DECLARE 553 #undef FLAG_MODE_DECLARE
551 #undef FLAG_MODE_DEFINE 554 #undef FLAG_MODE_DEFINE
552 #undef FLAG_MODE_DEFINE_DEFAULTS 555 #undef FLAG_MODE_DEFINE_DEFAULTS
553 #undef FLAG_MODE_META 556 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/code-stubs.cc ('k') | src/frames.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698