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

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

Issue 8277031: Give uses within a loop a greater weight when doing representation inference. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: 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 | « no previous file | src/hydrogen.cc » ('j') | src/hydrogen-instructions.cc » ('J')
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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 0, 145 0,
146 "deoptimize every n times a deopt point is passed") 146 "deoptimize every n times a deopt point is passed")
147 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") 147 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing")
148 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") 148 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases")
149 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") 149 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining")
150 DEFINE_bool(use_osr, true, "use on-stack replacement") 150 DEFINE_bool(use_osr, true, "use on-stack replacement")
151 151
152 DEFINE_bool(trace_osr, false, "trace on-stack replacement") 152 DEFINE_bool(trace_osr, false, "trace on-stack replacement")
153 DEFINE_int(stress_runs, 0, "number of stress runs") 153 DEFINE_int(stress_runs, 0, "number of stress runs")
154 DEFINE_bool(optimize_closures, true, "optimize closures") 154 DEFINE_bool(optimize_closures, true, "optimize closures")
155 DEFINE_int(loop_weight, 10, "loop weight for representation inference")
155 156
156 // assembler-ia32.cc / assembler-arm.cc / assembler-x64.cc 157 // assembler-ia32.cc / assembler-arm.cc / assembler-x64.cc
157 DEFINE_bool(debug_code, false, 158 DEFINE_bool(debug_code, false,
158 "generate extra code (assertions) for debugging") 159 "generate extra code (assertions) for debugging")
159 DEFINE_bool(code_comments, false, "emit comments in code disassembly") 160 DEFINE_bool(code_comments, false, "emit comments in code disassembly")
160 DEFINE_bool(peephole_optimization, true, 161 DEFINE_bool(peephole_optimization, true,
161 "perform peephole optimizations in assembly code") 162 "perform peephole optimizations in assembly code")
162 DEFINE_bool(enable_sse2, true, 163 DEFINE_bool(enable_sse2, true,
163 "enable use of SSE2 instructions if available") 164 "enable use of SSE2 instructions if available")
164 DEFINE_bool(enable_sse3, true, 165 DEFINE_bool(enable_sse3, true,
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
544 #undef FLAG 545 #undef FLAG
545 546
546 #undef DEFINE_bool 547 #undef DEFINE_bool
547 #undef DEFINE_int 548 #undef DEFINE_int
548 #undef DEFINE_string 549 #undef DEFINE_string
549 550
550 #undef FLAG_MODE_DECLARE 551 #undef FLAG_MODE_DECLARE
551 #undef FLAG_MODE_DEFINE 552 #undef FLAG_MODE_DEFINE
552 #undef FLAG_MODE_DEFINE_DEFAULTS 553 #undef FLAG_MODE_DEFINE_DEFAULTS
553 #undef FLAG_MODE_META 554 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « no previous file | src/hydrogen.cc » ('j') | src/hydrogen-instructions.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698