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

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

Issue 9361026: Count-based profiling for primitive functions (hidden behind a flag) (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: more comments Created 8 years, 10 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/compiler.cc ('k') | src/full-codegen.cc » ('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 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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") 159 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing")
160 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") 160 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases")
161 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") 161 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining")
162 DEFINE_bool(use_osr, true, "use on-stack replacement") 162 DEFINE_bool(use_osr, true, "use on-stack replacement")
163 163
164 DEFINE_bool(trace_osr, false, "trace on-stack replacement") 164 DEFINE_bool(trace_osr, false, "trace on-stack replacement")
165 DEFINE_int(stress_runs, 0, "number of stress runs") 165 DEFINE_int(stress_runs, 0, "number of stress runs")
166 DEFINE_bool(optimize_closures, true, "optimize closures") 166 DEFINE_bool(optimize_closures, true, "optimize closures")
167 DEFINE_int(loop_weight, 1, "loop weight for representation inference") 167 DEFINE_int(loop_weight, 1, "loop weight for representation inference")
168 168
169 // Count-based optimization decisions.
170 DEFINE_bool(counting_profiler, false, "use experimental counter-based profiler")
171
169 // assembler-ia32.cc / assembler-arm.cc / assembler-x64.cc 172 // assembler-ia32.cc / assembler-arm.cc / assembler-x64.cc
170 DEFINE_bool(debug_code, false, 173 DEFINE_bool(debug_code, false,
171 "generate extra code (assertions) for debugging") 174 "generate extra code (assertions) for debugging")
172 DEFINE_bool(code_comments, false, "emit comments in code disassembly") 175 DEFINE_bool(code_comments, false, "emit comments in code disassembly")
173 DEFINE_bool(enable_sse2, true, 176 DEFINE_bool(enable_sse2, true,
174 "enable use of SSE2 instructions if available") 177 "enable use of SSE2 instructions if available")
175 DEFINE_bool(enable_sse3, true, 178 DEFINE_bool(enable_sse3, true,
176 "enable use of SSE3 instructions if available") 179 "enable use of SSE3 instructions if available")
177 DEFINE_bool(enable_sse4_1, true, 180 DEFINE_bool(enable_sse4_1, true,
178 "enable use of SSE4.1 instructions if available") 181 "enable use of SSE4.1 instructions if available")
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
578 #undef DEFINE_bool 581 #undef DEFINE_bool
579 #undef DEFINE_int 582 #undef DEFINE_int
580 #undef DEFINE_string 583 #undef DEFINE_string
581 #undef DEFINE_implication 584 #undef DEFINE_implication
582 585
583 #undef FLAG_MODE_DECLARE 586 #undef FLAG_MODE_DECLARE
584 #undef FLAG_MODE_DEFINE 587 #undef FLAG_MODE_DEFINE
585 #undef FLAG_MODE_DEFINE_DEFAULTS 588 #undef FLAG_MODE_DEFINE_DEFAULTS
586 #undef FLAG_MODE_META 589 #undef FLAG_MODE_META
587 #undef FLAG_MODE_DEFINE_IMPLICATIONS 590 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « src/compiler.cc ('k') | src/full-codegen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698