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

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

Issue 9496010: Fix secondary stub cache and add a test for the stub cache lookups. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 8 years, 9 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
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 545 matching lines...) Expand 10 before | Expand all | Expand 10 after
556 #define FLAG FLAG_FULL 556 #define FLAG FLAG_FULL
557 #else 557 #else
558 #define FLAG FLAG_READONLY 558 #define FLAG FLAG_READONLY
559 #endif 559 #endif
560 560
561 // elements.cc 561 // elements.cc
562 DEFINE_bool(trace_elements_transitions, false, "trace elements transitions") 562 DEFINE_bool(trace_elements_transitions, false, "trace elements transitions")
563 563
564 // code-stubs.cc 564 // code-stubs.cc
565 DEFINE_bool(print_code_stubs, false, "print code stubs") 565 DEFINE_bool(print_code_stubs, false, "print code stubs")
566 DEFINE_bool(test_secondary_stub_cache,
Sven Panne 2012/02/29 09:37:42 These should probably be debug-only flags.
Erik Corry 2012/02/29 10:45:59 That is already the case.
567 false,
568 "test secondary stub cache by disabling the primary one")
569
570 DEFINE_bool(test_primary_stub_cache,
571 false,
572 "test primary stub cache by disabling the secondary one")
566 573
567 // codegen-ia32.cc / codegen-arm.cc 574 // codegen-ia32.cc / codegen-arm.cc
568 DEFINE_bool(print_code, false, "print generated code") 575 DEFINE_bool(print_code, false, "print generated code")
569 DEFINE_bool(print_opt_code, false, "print optimized code") 576 DEFINE_bool(print_opt_code, false, "print optimized code")
570 DEFINE_bool(print_unopt_code, false, "print unoptimized code before " 577 DEFINE_bool(print_unopt_code, false, "print unoptimized code before "
571 "printing optimized code based on it") 578 "printing optimized code based on it")
572 DEFINE_bool(print_code_verbose, false, "print more information for code") 579 DEFINE_bool(print_code_verbose, false, "print more information for code")
573 DEFINE_bool(print_builtin_code, false, "print generated code for builtins") 580 DEFINE_bool(print_builtin_code, false, "print generated code for builtins")
574 581
575 #ifdef ENABLE_DISASSEMBLER 582 #ifdef ENABLE_DISASSEMBLER
(...skipping 18 matching lines...) Expand all
594 #undef DEFINE_bool 601 #undef DEFINE_bool
595 #undef DEFINE_int 602 #undef DEFINE_int
596 #undef DEFINE_string 603 #undef DEFINE_string
597 #undef DEFINE_implication 604 #undef DEFINE_implication
598 605
599 #undef FLAG_MODE_DECLARE 606 #undef FLAG_MODE_DECLARE
600 #undef FLAG_MODE_DEFINE 607 #undef FLAG_MODE_DEFINE
601 #undef FLAG_MODE_DEFINE_DEFAULTS 608 #undef FLAG_MODE_DEFINE_DEFAULTS
602 #undef FLAG_MODE_META 609 #undef FLAG_MODE_META
603 #undef FLAG_MODE_DEFINE_IMPLICATIONS 610 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698