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

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

Issue 6062002: Merge 6006:6095 from bleeding_edge to experimental/gc branch. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/gc/
Patch Set: Created 10 years 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/execution.cc ('k') | src/full-codegen.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 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") 134 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases")
135 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") 135 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining")
136 DEFINE_bool(aggressive_loop_invariant_motion, true, 136 DEFINE_bool(aggressive_loop_invariant_motion, true,
137 "aggressive motion of instructions out of loops") 137 "aggressive motion of instructions out of loops")
138 #ifdef V8_TARGET_ARCH_IA32 138 #ifdef V8_TARGET_ARCH_IA32
139 DEFINE_bool(use_osr, true, "use on-stack replacement") 139 DEFINE_bool(use_osr, true, "use on-stack replacement")
140 #else 140 #else
141 DEFINE_bool(use_osr, false, "use on-stack replacement") 141 DEFINE_bool(use_osr, false, "use on-stack replacement")
142 #endif 142 #endif
143 DEFINE_bool(trace_osr, false, "trace on-stack replacement") 143 DEFINE_bool(trace_osr, false, "trace on-stack replacement")
144 DEFINE_int(stress_runs, 0, "number of stress runs")
144 145
145 // assembler-ia32.cc / assembler-arm.cc / assembler-x64.cc 146 // assembler-ia32.cc / assembler-arm.cc / assembler-x64.cc
146 DEFINE_bool(debug_code, false, 147 DEFINE_bool(debug_code, false,
147 "generate extra code (assertions) for debugging") 148 "generate extra code (assertions) for debugging")
148 DEFINE_bool(code_comments, false, "emit comments in code disassembly") 149 DEFINE_bool(code_comments, false, "emit comments in code disassembly")
149 DEFINE_bool(emit_branch_hints, false, "emit branch hints") 150 DEFINE_bool(emit_branch_hints, false, "emit branch hints")
150 DEFINE_bool(peephole_optimization, true, 151 DEFINE_bool(peephole_optimization, true,
151 "perform peephole optimizations in assembly code") 152 "perform peephole optimizations in assembly code")
152 DEFINE_bool(print_peephole_optimization, false, 153 DEFINE_bool(print_peephole_optimization, false,
153 "print peephole optimizations in assembly code") 154 "print peephole optimizations in assembly code")
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 289
289 DEFINE_int(max_map_space_pages, MapSpace::kMaxMapPageIndex - 1, 290 DEFINE_int(max_map_space_pages, MapSpace::kMaxMapPageIndex - 1,
290 "Maximum number of pages in map space which still allows to encode " 291 "Maximum number of pages in map space which still allows to encode "
291 "forwarding pointers. That's actually a constant, but it's useful " 292 "forwarding pointers. That's actually a constant, but it's useful "
292 "to control it with a flag for better testing.") 293 "to control it with a flag for better testing.")
293 294
294 // mksnapshot.cc 295 // mksnapshot.cc
295 DEFINE_bool(h, false, "print this message") 296 DEFINE_bool(h, false, "print this message")
296 DEFINE_bool(new_snapshot, true, "use new snapshot implementation") 297 DEFINE_bool(new_snapshot, true, "use new snapshot implementation")
297 298
299 // objects.cc
300 DEFINE_bool(use_verbose_printer, true, "allows verbose printing")
301
298 // parser.cc 302 // parser.cc
299 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") 303 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax")
300 304
301 // rewriter.cc 305 // rewriter.cc
302 DEFINE_bool(optimize_ast, true, "optimize the ast") 306 DEFINE_bool(optimize_ast, true, "optimize the ast")
303 307
304 // simulator-arm.cc and simulator-mips.cc 308 // simulator-arm.cc and simulator-mips.cc
305 DEFINE_bool(trace_sim, false, "Trace simulator execution") 309 DEFINE_bool(trace_sim, false, "Trace simulator execution")
306 DEFINE_bool(check_icache, false, "Check icache flushes in ARM simulator") 310 DEFINE_bool(check_icache, false, "Check icache flushes in ARM simulator")
307 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") 311 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions")
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
495 #else 499 #else
496 #define FLAG FLAG_READONLY 500 #define FLAG FLAG_READONLY
497 #endif 501 #endif
498 502
499 // code-stubs.cc 503 // code-stubs.cc
500 DEFINE_bool(print_code_stubs, false, "print code stubs") 504 DEFINE_bool(print_code_stubs, false, "print code stubs")
501 505
502 // codegen-ia32.cc / codegen-arm.cc 506 // codegen-ia32.cc / codegen-arm.cc
503 DEFINE_bool(print_code, false, "print generated code") 507 DEFINE_bool(print_code, false, "print generated code")
504 DEFINE_bool(print_opt_code, false, "print optimized code") 508 DEFINE_bool(print_opt_code, false, "print optimized code")
509 DEFINE_bool(print_unopt_code, false, "print unoptimized code before "
510 "printing optimized code based on it")
505 DEFINE_bool(print_code_verbose, false, "print more information for code") 511 DEFINE_bool(print_code_verbose, false, "print more information for code")
506 DEFINE_bool(print_builtin_code, false, "print generated code for builtins") 512 DEFINE_bool(print_builtin_code, false, "print generated code for builtins")
507 513
508 // Cleanup... 514 // Cleanup...
509 #undef FLAG_FULL 515 #undef FLAG_FULL
510 #undef FLAG_READONLY 516 #undef FLAG_READONLY
511 #undef FLAG 517 #undef FLAG
512 518
513 #undef DEFINE_bool 519 #undef DEFINE_bool
514 #undef DEFINE_int 520 #undef DEFINE_int
515 #undef DEFINE_string 521 #undef DEFINE_string
516 522
517 #undef FLAG_MODE_DECLARE 523 #undef FLAG_MODE_DECLARE
518 #undef FLAG_MODE_DEFINE 524 #undef FLAG_MODE_DEFINE
519 #undef FLAG_MODE_DEFINE_DEFAULTS 525 #undef FLAG_MODE_DEFINE_DEFAULTS
520 #undef FLAG_MODE_META 526 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/execution.cc ('k') | src/full-codegen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698