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

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

Issue 549079: Support for MIPS in architecture independent files.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 10 years, 11 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 2008 the V8 project authors. All rights reserved. 1 // Copyright 2008 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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 // mksnapshot.cc 197 // mksnapshot.cc
198 DEFINE_bool(h, false, "print this message") 198 DEFINE_bool(h, false, "print this message")
199 DEFINE_bool(new_snapshot, true, "use new snapshot implementation") 199 DEFINE_bool(new_snapshot, true, "use new snapshot implementation")
200 200
201 // parser.cc 201 // parser.cc
202 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") 202 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax")
203 203
204 // rewriter.cc 204 // rewriter.cc
205 DEFINE_bool(optimize_ast, true, "optimize the ast") 205 DEFINE_bool(optimize_ast, true, "optimize the ast")
206 206
207 // simulator-arm.cc 207 // simulator-arm.cc and simulator-mips.cc
208 DEFINE_bool(trace_sim, false, "trace simulator execution") 208 DEFINE_bool(trace_sim, true, "trace simulator execution")
Søren Thygesen Gjesse 2010/01/19 22:59:12 Please keep the default to false.
Alexandre 2010/01/22 23:08:42 Set back to the default value. On 2010/01/19 22:59
209 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") 209 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions")
210 210
211 // top.cc 211 // top.cc
212 DEFINE_bool(trace_exception, false, 212 DEFINE_bool(trace_exception, false,
213 "print stack trace when throwing exceptions") 213 "print stack trace when throwing exceptions")
214 DEFINE_bool(preallocate_message_memory, false, 214 DEFINE_bool(preallocate_message_memory, false,
215 "preallocate some memory to build stack traces.") 215 "preallocate some memory to build stack traces.")
216 216
217 // usage-analyzer.cc 217 // usage-analyzer.cc
218 DEFINE_bool(usage_computation, true, "compute variable usage counts") 218 DEFINE_bool(usage_computation, true, "compute variable usage counts")
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 #undef FLAG 401 #undef FLAG
402 402
403 #undef DEFINE_bool 403 #undef DEFINE_bool
404 #undef DEFINE_int 404 #undef DEFINE_int
405 #undef DEFINE_string 405 #undef DEFINE_string
406 406
407 #undef FLAG_MODE_DECLARE 407 #undef FLAG_MODE_DECLARE
408 #undef FLAG_MODE_DEFINE 408 #undef FLAG_MODE_DEFINE
409 #undef FLAG_MODE_DEFINE_DEFAULTS 409 #undef FLAG_MODE_DEFINE_DEFAULTS
410 #undef FLAG_MODE_META 410 #undef FLAG_MODE_META
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698