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

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

Issue 561072: MIPS port initial commit (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 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/codegen-inl.h ('k') | src/frames-inl.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 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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 // mksnapshot.cc 211 // mksnapshot.cc
212 DEFINE_bool(h, false, "print this message") 212 DEFINE_bool(h, false, "print this message")
213 DEFINE_bool(new_snapshot, true, "use new snapshot implementation") 213 DEFINE_bool(new_snapshot, true, "use new snapshot implementation")
214 214
215 // parser.cc 215 // parser.cc
216 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") 216 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax")
217 217
218 // rewriter.cc 218 // rewriter.cc
219 DEFINE_bool(optimize_ast, true, "optimize the ast") 219 DEFINE_bool(optimize_ast, true, "optimize the ast")
220 220
221 // simulator-arm.cc 221 // simulator-arm.cc and simulator-mips.cc
222 DEFINE_bool(trace_sim, false, "trace simulator execution") 222 DEFINE_bool(trace_sim, false, "trace simulator execution")
223 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") 223 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions")
224 224
225 // top.cc 225 // top.cc
226 DEFINE_bool(trace_exception, false, 226 DEFINE_bool(trace_exception, false,
227 "print stack trace when throwing exceptions") 227 "print stack trace when throwing exceptions")
228 DEFINE_bool(preallocate_message_memory, false, 228 DEFINE_bool(preallocate_message_memory, false,
229 "preallocate some memory to build stack traces.") 229 "preallocate some memory to build stack traces.")
230 230
231 // usage-analyzer.cc 231 // usage-analyzer.cc
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 #undef FLAG 422 #undef FLAG
423 423
424 #undef DEFINE_bool 424 #undef DEFINE_bool
425 #undef DEFINE_int 425 #undef DEFINE_int
426 #undef DEFINE_string 426 #undef DEFINE_string
427 427
428 #undef FLAG_MODE_DECLARE 428 #undef FLAG_MODE_DECLARE
429 #undef FLAG_MODE_DEFINE 429 #undef FLAG_MODE_DEFINE
430 #undef FLAG_MODE_DEFINE_DEFAULTS 430 #undef FLAG_MODE_DEFINE_DEFAULTS
431 #undef FLAG_MODE_META 431 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/codegen-inl.h ('k') | src/frames-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698