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

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

Issue 1140004: MIPS simple function calls... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 9 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/bootstrapper.cc ('k') | src/mips/builtins-mips.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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 DEFINE_bool(enable_vfp3, true, 117 DEFINE_bool(enable_vfp3, true,
118 "enable use of VFP3 instructions if available (ARM only)") 118 "enable use of VFP3 instructions if available (ARM only)")
119 DEFINE_bool(enable_armv7, true, 119 DEFINE_bool(enable_armv7, true,
120 "enable use of ARMv7 instructions if available (ARM only)") 120 "enable use of ARMv7 instructions if available (ARM only)")
121 121
122 // bootstrapper.cc 122 // bootstrapper.cc
123 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") 123 DEFINE_string(expose_natives_as, NULL, "expose natives in global object")
124 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") 124 DEFINE_string(expose_debug_as, NULL, "expose debug in global object")
125 DEFINE_bool(expose_gc, false, "expose gc extension") 125 DEFINE_bool(expose_gc, false, "expose gc extension")
126 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") 126 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture")
127 DEFINE_bool(disable_native_files, false, "disable builtin natives files")
127 128
128 // builtins-ia32.cc 129 // builtins-ia32.cc
129 DEFINE_bool(inline_new, true, "use fast inline allocation") 130 DEFINE_bool(inline_new, true, "use fast inline allocation")
130 131
131 // checks.cc 132 // checks.cc
132 DEFINE_bool(stack_trace_on_abort, true, 133 DEFINE_bool(stack_trace_on_abort, true,
133 "print a stack trace if an assertion failure occurs") 134 "print a stack trace if an assertion failure occurs")
134 135
135 // codegen-ia32.cc / codegen-arm.cc 136 // codegen-ia32.cc / codegen-arm.cc
136 DEFINE_bool(trace, false, "trace function calls") 137 DEFINE_bool(trace, false, "trace function calls")
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
429 #undef FLAG 430 #undef FLAG
430 431
431 #undef DEFINE_bool 432 #undef DEFINE_bool
432 #undef DEFINE_int 433 #undef DEFINE_int
433 #undef DEFINE_string 434 #undef DEFINE_string
434 435
435 #undef FLAG_MODE_DECLARE 436 #undef FLAG_MODE_DECLARE
436 #undef FLAG_MODE_DEFINE 437 #undef FLAG_MODE_DEFINE
437 #undef FLAG_MODE_DEFINE_DEFAULTS 438 #undef FLAG_MODE_DEFINE_DEFAULTS
438 #undef FLAG_MODE_META 439 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/mips/builtins-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698