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

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

Issue 1530043: Ensure stack alignment in ARM port... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 8 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.h ('k') | src/ia32/codegen-ia32.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 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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 DEFINE_bool(h, false, "print this message") 224 DEFINE_bool(h, false, "print this message")
225 DEFINE_bool(new_snapshot, true, "use new snapshot implementation") 225 DEFINE_bool(new_snapshot, true, "use new snapshot implementation")
226 226
227 // parser.cc 227 // parser.cc
228 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") 228 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax")
229 229
230 // rewriter.cc 230 // rewriter.cc
231 DEFINE_bool(optimize_ast, true, "optimize the ast") 231 DEFINE_bool(optimize_ast, true, "optimize the ast")
232 232
233 // simulator-arm.cc and simulator-mips.cc 233 // simulator-arm.cc and simulator-mips.cc
234 DEFINE_bool(trace_sim, false, "trace simulator execution") 234 DEFINE_bool(trace_sim, false, "Trace simulator execution")
235 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") 235 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions")
236 DEFINE_int(sim_stack_alignment, 8,
237 "Stack alingment in bytes in simulator (4 or 8, 8 is default)")
236 238
237 // top.cc 239 // top.cc
238 DEFINE_bool(trace_exception, false, 240 DEFINE_bool(trace_exception, false,
239 "print stack trace when throwing exceptions") 241 "print stack trace when throwing exceptions")
240 DEFINE_bool(preallocate_message_memory, false, 242 DEFINE_bool(preallocate_message_memory, false,
241 "preallocate some memory to build stack traces.") 243 "preallocate some memory to build stack traces.")
242 244
243 // v8.cc 245 // v8.cc
244 DEFINE_bool(preemption, false, 246 DEFINE_bool(preemption, false,
245 "activate a 100ms timer that switches between V8 threads") 247 "activate a 100ms timer that switches between V8 threads")
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 #undef FLAG 437 #undef FLAG
436 438
437 #undef DEFINE_bool 439 #undef DEFINE_bool
438 #undef DEFINE_int 440 #undef DEFINE_int
439 #undef DEFINE_string 441 #undef DEFINE_string
440 442
441 #undef FLAG_MODE_DECLARE 443 #undef FLAG_MODE_DECLARE
442 #undef FLAG_MODE_DEFINE 444 #undef FLAG_MODE_DEFINE
443 #undef FLAG_MODE_DEFINE_DEFAULTS 445 #undef FLAG_MODE_DEFINE_DEFAULTS
444 #undef FLAG_MODE_META 446 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/codegen.h ('k') | src/ia32/codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698