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

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

Issue 7348008: Merge up to 8597 to experimental/gc from the bleeding edge. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/gc/
Patch Set: '' Created 9 years, 5 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/factory.cc ('k') | src/frames.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 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 #define DEFINE_args(nam, def, cmt) FLAG(ARGS, JSArguments, nam, def, cmt) 92 #define DEFINE_args(nam, def, cmt) FLAG(ARGS, JSArguments, nam, def, cmt)
93 93
94 // 94 //
95 // Flags in all modes. 95 // Flags in all modes.
96 // 96 //
97 #define FLAG FLAG_FULL 97 #define FLAG FLAG_FULL
98 98
99 // Flags for experimental language features. 99 // Flags for experimental language features.
100 DEFINE_bool(harmony_proxies, false, "enable harmony proxies") 100 DEFINE_bool(harmony_proxies, false, "enable harmony proxies")
101 101
102 // Flags for experimental implementation features.
103 DEFINE_bool(unbox_double_arrays, false, "automatically unbox arrays of doubles")
104
102 // Flags for Crankshaft. 105 // Flags for Crankshaft.
103 #ifdef V8_TARGET_ARCH_MIPS 106 #ifdef V8_TARGET_ARCH_MIPS
104 DEFINE_bool(crankshaft, false, "use crankshaft") 107 DEFINE_bool(crankshaft, false, "use crankshaft")
105 #else 108 #else
106 DEFINE_bool(crankshaft, true, "use crankshaft") 109 DEFINE_bool(crankshaft, true, "use crankshaft")
107 #endif 110 #endif
108 DEFINE_string(hydrogen_filter, "", "hydrogen use/trace filter") 111 DEFINE_string(hydrogen_filter, "", "hydrogen use/trace filter")
109 DEFINE_bool(use_hydrogen, true, "use generated hydrogen for compilation") 112 DEFINE_bool(use_hydrogen, true, "use generated hydrogen for compilation")
110 DEFINE_bool(build_lithium, true, "use lithium chunk builder") 113 DEFINE_bool(build_lithium, true, "use lithium chunk builder")
111 DEFINE_bool(alloc_lithium, true, "use lithium register allocator") 114 DEFINE_bool(alloc_lithium, true, "use lithium register allocator")
(...skipping 12 matching lines...) Expand all
124 DEFINE_bool(trace_alloc, false, "trace register allocator") 127 DEFINE_bool(trace_alloc, false, "trace register allocator")
125 DEFINE_bool(trace_all_uses, false, "trace all use positions") 128 DEFINE_bool(trace_all_uses, false, "trace all use positions")
126 DEFINE_bool(trace_range, false, "trace range analysis") 129 DEFINE_bool(trace_range, false, "trace range analysis")
127 DEFINE_bool(trace_gvn, false, "trace global value numbering") 130 DEFINE_bool(trace_gvn, false, "trace global value numbering")
128 DEFINE_bool(trace_representation, false, "trace representation types") 131 DEFINE_bool(trace_representation, false, "trace representation types")
129 DEFINE_bool(stress_pointer_maps, false, "pointer map for every instruction") 132 DEFINE_bool(stress_pointer_maps, false, "pointer map for every instruction")
130 DEFINE_bool(stress_environments, false, "environment for every instruction") 133 DEFINE_bool(stress_environments, false, "environment for every instruction")
131 DEFINE_int(deopt_every_n_times, 134 DEFINE_int(deopt_every_n_times,
132 0, 135 0,
133 "deoptimize every n times a deopt point is passed") 136 "deoptimize every n times a deopt point is passed")
134 DEFINE_bool(process_arguments_object, true, "try to deal with arguments object")
135 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") 137 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing")
136 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") 138 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases")
137 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") 139 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining")
138 DEFINE_bool(aggressive_loop_invariant_motion, true,
139 "aggressive motion of instructions out of loops")
140 DEFINE_bool(use_osr, true, "use on-stack replacement") 140 DEFINE_bool(use_osr, true, "use on-stack replacement")
141 141
142 DEFINE_bool(trace_osr, false, "trace on-stack replacement") 142 DEFINE_bool(trace_osr, false, "trace on-stack replacement")
143 DEFINE_int(stress_runs, 0, "number of stress runs") 143 DEFINE_int(stress_runs, 0, "number of stress runs")
144 DEFINE_bool(optimize_closures, true, "optimize closures") 144 DEFINE_bool(optimize_closures, true, "optimize closures")
145 145
146 // assembler-ia32.cc / assembler-arm.cc / assembler-x64.cc 146 // assembler-ia32.cc / assembler-arm.cc / assembler-x64.cc
147 DEFINE_bool(debug_code, false, 147 DEFINE_bool(debug_code, false,
148 "generate extra code (assertions) for debugging") 148 "generate extra code (assertions) for debugging")
149 DEFINE_bool(code_comments, false, "emit comments in code disassembly") 149 DEFINE_bool(code_comments, false, "emit comments in code disassembly")
150 DEFINE_bool(peephole_optimization, true, 150 DEFINE_bool(peephole_optimization, true,
151 "perform peephole optimizations in assembly code") 151 "perform peephole optimizations in assembly code")
152 DEFINE_bool(print_peephole_optimization, false,
153 "print peephole optimizations in assembly code")
154 DEFINE_bool(enable_sse2, true, 152 DEFINE_bool(enable_sse2, true,
155 "enable use of SSE2 instructions if available") 153 "enable use of SSE2 instructions if available")
156 DEFINE_bool(enable_sse3, true, 154 DEFINE_bool(enable_sse3, true,
157 "enable use of SSE3 instructions if available") 155 "enable use of SSE3 instructions if available")
158 DEFINE_bool(enable_sse4_1, true, 156 DEFINE_bool(enable_sse4_1, true,
159 "enable use of SSE4.1 instructions if available") 157 "enable use of SSE4.1 instructions if available")
160 DEFINE_bool(enable_cmov, true, 158 DEFINE_bool(enable_cmov, true,
161 "enable use of CMOV instruction if available") 159 "enable use of CMOV instruction if available")
162 DEFINE_bool(enable_rdtsc, true, 160 DEFINE_bool(enable_rdtsc, true,
163 "enable use of RDTSC instruction if available") 161 "enable use of RDTSC instruction if available")
(...skipping 18 matching lines...) Expand all
182 180
183 // builtins-ia32.cc 181 // builtins-ia32.cc
184 DEFINE_bool(inline_new, true, "use fast inline allocation") 182 DEFINE_bool(inline_new, true, "use fast inline allocation")
185 183
186 // checks.cc 184 // checks.cc
187 DEFINE_bool(stack_trace_on_abort, true, 185 DEFINE_bool(stack_trace_on_abort, true,
188 "print a stack trace if an assertion failure occurs") 186 "print a stack trace if an assertion failure occurs")
189 187
190 // codegen-ia32.cc / codegen-arm.cc 188 // codegen-ia32.cc / codegen-arm.cc
191 DEFINE_bool(trace, false, "trace function calls") 189 DEFINE_bool(trace, false, "trace function calls")
192 DEFINE_bool(defer_negation, true, "defer negation operation")
193 DEFINE_bool(mask_constants_with_cookie, 190 DEFINE_bool(mask_constants_with_cookie,
194 true, 191 true,
195 "use random jit cookie to mask large constants") 192 "use random jit cookie to mask large constants")
196 193
197 // codegen.cc 194 // codegen.cc
198 DEFINE_bool(lazy, true, "use lazy compilation") 195 DEFINE_bool(lazy, true, "use lazy compilation")
199 DEFINE_bool(trace_opt, false, "trace lazy optimization") 196 DEFINE_bool(trace_opt, false, "trace lazy optimization")
200 DEFINE_bool(trace_opt_stats, false, "trace lazy optimization statistics") 197 DEFINE_bool(trace_opt_stats, false, "trace lazy optimization statistics")
201 DEFINE_bool(opt, true, "use adaptive optimizations") 198 DEFINE_bool(opt, true, "use adaptive optimizations")
202 DEFINE_bool(opt_eagerly, false, "be more eager when adaptively optimizing") 199 DEFINE_bool(opt_eagerly, false, "be more eager when adaptively optimizing")
203 DEFINE_bool(always_opt, false, "always try to optimize functions") 200 DEFINE_bool(always_opt, false, "always try to optimize functions")
204 DEFINE_bool(prepare_always_opt, false, "prepare for turning on always opt") 201 DEFINE_bool(prepare_always_opt, false, "prepare for turning on always opt")
205 DEFINE_bool(debug_info, true, "add debug information to compiled functions")
206 DEFINE_bool(deopt, true, "support deoptimization") 202 DEFINE_bool(deopt, true, "support deoptimization")
207 DEFINE_bool(trace_deopt, false, "trace deoptimization") 203 DEFINE_bool(trace_deopt, false, "trace deoptimization")
208 204
209 // compiler.cc 205 // compiler.cc
210 DEFINE_bool(strict, false, "strict error checking")
211 DEFINE_int(min_preparse_length, 1024, 206 DEFINE_int(min_preparse_length, 1024,
212 "minimum length for automatic enable preparsing") 207 "minimum length for automatic enable preparsing")
213 DEFINE_bool(full_compiler, true, "enable dedicated backend for run-once code")
214 DEFINE_bool(always_full_compiler, false, 208 DEFINE_bool(always_full_compiler, false,
215 "try to use the dedicated run-once backend for all code") 209 "try to use the dedicated run-once backend for all code")
216 DEFINE_bool(trace_bailout, false, 210 DEFINE_bool(trace_bailout, false,
217 "print reasons for falling back to using the classic V8 backend") 211 "print reasons for falling back to using the classic V8 backend")
218 DEFINE_bool(safe_int32_compiler, true,
219 "enable optimized side-effect-free int32 expressions.")
220 DEFINE_bool(use_flow_graph, false, "perform flow-graph based optimizations")
221 212
222 // compilation-cache.cc 213 // compilation-cache.cc
223 DEFINE_bool(compilation_cache, true, "enable compilation cache") 214 DEFINE_bool(compilation_cache, true, "enable compilation cache")
224 215
225 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions") 216 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions")
226 217
227 // data-flow.cc
228 DEFINE_bool(loop_peeling, false, "Peel off the first iteration of loops.")
229
230 // debug.cc 218 // debug.cc
231 DEFINE_bool(remote_debugging, false, "enable remote debugging")
232 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") 219 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response")
233 DEFINE_bool(debugger_auto_break, true, 220 DEFINE_bool(debugger_auto_break, true,
234 "automatically set the debug break flag when debugger commands are " 221 "automatically set the debug break flag when debugger commands are "
235 "in the queue") 222 "in the queue")
236 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature") 223 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature")
237 224
238 // execution.cc 225 // execution.cc
239 DEFINE_int(stack_size, kPointerSize * 128, 226 DEFINE_int(stack_size, kPointerSize * 128,
240 "default size of stack region v8 is allowed to use (in KkBytes)") 227 "default size of stack region v8 is allowed to use (in KkBytes)")
241 228
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 DEFINE_bool(h, false, "print this message") 308 DEFINE_bool(h, false, "print this message")
322 DEFINE_bool(new_snapshot, true, "use new snapshot implementation") 309 DEFINE_bool(new_snapshot, true, "use new snapshot implementation")
323 310
324 // objects.cc 311 // objects.cc
325 DEFINE_bool(use_verbose_printer, true, "allows verbose printing") 312 DEFINE_bool(use_verbose_printer, true, "allows verbose printing")
326 313
327 // parser.cc 314 // parser.cc
328 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") 315 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax")
329 DEFINE_bool(strict_mode, true, "allow strict mode directives") 316 DEFINE_bool(strict_mode, true, "allow strict mode directives")
330 317
331 // rewriter.cc
332 DEFINE_bool(optimize_ast, true, "optimize the ast")
333
334 // simulator-arm.cc and simulator-mips.cc 318 // simulator-arm.cc and simulator-mips.cc
335 DEFINE_bool(trace_sim, false, "Trace simulator execution") 319 DEFINE_bool(trace_sim, false, "Trace simulator execution")
336 DEFINE_bool(check_icache, false, "Check icache flushes in ARM simulator") 320 DEFINE_bool(check_icache, false, "Check icache flushes in ARM simulator")
337 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") 321 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions")
338 DEFINE_int(sim_stack_alignment, 8, 322 DEFINE_int(sim_stack_alignment, 8,
339 "Stack alingment in bytes in simulator (4 or 8, 8 is default)") 323 "Stack alingment in bytes in simulator (4 or 8, 8 is default)")
340 324
341 // isolate.cc 325 // isolate.cc
342 DEFINE_bool(trace_exception, false, 326 DEFINE_bool(trace_exception, false,
343 "print stack trace when throwing exceptions") 327 "print stack trace when throwing exceptions")
344 DEFINE_bool(preallocate_message_memory, false, 328 DEFINE_bool(preallocate_message_memory, false,
345 "preallocate some memory to build stack traces.") 329 "preallocate some memory to build stack traces.")
346 330
347 // v8.cc 331 // v8.cc
348 DEFINE_bool(preemption, false, 332 DEFINE_bool(preemption, false,
349 "activate a 100ms timer that switches between V8 threads") 333 "activate a 100ms timer that switches between V8 threads")
350 334
351 // Regexp 335 // Regexp
352 DEFINE_bool(trace_regexps, false, "trace regexp execution")
353 DEFINE_bool(regexp_optimization, true, "generate optimized regexp code") 336 DEFINE_bool(regexp_optimization, true, "generate optimized regexp code")
354 DEFINE_bool(regexp_entry_native, true, "use native code to enter regexp") 337 DEFINE_bool(regexp_entry_native, true, "use native code to enter regexp")
355 338
356 // Testing flags test/cctest/test-{flags,api,serialization}.cc 339 // Testing flags test/cctest/test-{flags,api,serialization}.cc
357 DEFINE_bool(testing_bool_flag, true, "testing_bool_flag") 340 DEFINE_bool(testing_bool_flag, true, "testing_bool_flag")
358 DEFINE_int(testing_int_flag, 13, "testing_int_flag") 341 DEFINE_int(testing_int_flag, 13, "testing_int_flag")
359 DEFINE_float(testing_float_flag, 2.5, "float-flag") 342 DEFINE_float(testing_float_flag, 2.5, "float-flag")
360 DEFINE_string(testing_string_flag, "Hello, world!", "string-flag") 343 DEFINE_string(testing_string_flag, "Hello, world!", "string-flag")
361 DEFINE_int(testing_prng_seed, 42, "Seed used for threading test randomness") 344 DEFINE_int(testing_prng_seed, 42, "Seed used for threading test randomness")
362 #ifdef WIN32 345 #ifdef WIN32
(...skipping 30 matching lines...) Expand all
393 #endif 376 #endif
394 377
395 378
396 // 379 //
397 // GDB JIT integration flags. 380 // GDB JIT integration flags.
398 // 381 //
399 382
400 DEFINE_bool(gdbjit, false, "enable GDBJIT interface (disables compacting GC)") 383 DEFINE_bool(gdbjit, false, "enable GDBJIT interface (disables compacting GC)")
401 DEFINE_bool(gdbjit_full, false, "enable GDBJIT interface for all code objects") 384 DEFINE_bool(gdbjit_full, false, "enable GDBJIT interface for all code objects")
402 DEFINE_bool(gdbjit_dump, false, "dump elf objects with debug info to disk") 385 DEFINE_bool(gdbjit_dump, false, "dump elf objects with debug info to disk")
386 DEFINE_string(gdbjit_dump_filter, "",
387 "dump only objects containing this substring")
403 388
404 // 389 //
405 // Debug only flags 390 // Debug only flags
406 // 391 //
407 #undef FLAG 392 #undef FLAG
408 #ifdef DEBUG 393 #ifdef DEBUG
409 #define FLAG FLAG_FULL 394 #define FLAG FLAG_FULL
410 #else 395 #else
411 #define FLAG FLAG_READONLY 396 #define FLAG FLAG_READONLY
412 #endif 397 #endif
413 398
414 // checks.cc 399 // checks.cc
415 DEFINE_bool(enable_slow_asserts, false, 400 DEFINE_bool(enable_slow_asserts, false,
416 "enable asserts that are slow to execute") 401 "enable asserts that are slow to execute")
417 402
418 // codegen-ia32.cc / codegen-arm.cc 403 // codegen-ia32.cc / codegen-arm.cc
419 DEFINE_bool(trace_codegen, false, 404 DEFINE_bool(trace_codegen, false,
420 "print name of functions for which code is generated") 405 "print name of functions for which code is generated")
421 DEFINE_bool(print_source, false, "pretty print source code") 406 DEFINE_bool(print_source, false, "pretty print source code")
422 DEFINE_bool(print_builtin_source, false, 407 DEFINE_bool(print_builtin_source, false,
423 "pretty print source code for builtins") 408 "pretty print source code for builtins")
424 DEFINE_bool(print_ast, false, "print source AST") 409 DEFINE_bool(print_ast, false, "print source AST")
425 DEFINE_bool(print_builtin_ast, false, "print source AST for builtins") 410 DEFINE_bool(print_builtin_ast, false, "print source AST for builtins")
426 DEFINE_bool(print_json_ast, false, "print source AST as JSON") 411 DEFINE_bool(print_json_ast, false, "print source AST as JSON")
427 DEFINE_bool(print_builtin_json_ast, false, 412 DEFINE_bool(print_builtin_json_ast, false,
428 "print source AST for builtins as JSON") 413 "print source AST for builtins as JSON")
429 DEFINE_bool(trace_calls, false, "trace calls")
430 DEFINE_bool(trace_builtin_calls, false, "trace builtins calls")
431 DEFINE_string(stop_at, "", "function name where to insert a breakpoint") 414 DEFINE_string(stop_at, "", "function name where to insert a breakpoint")
432 415
433 // compiler.cc 416 // compiler.cc
434 DEFINE_bool(print_builtin_scopes, false, "print scopes for builtins") 417 DEFINE_bool(print_builtin_scopes, false, "print scopes for builtins")
435 DEFINE_bool(print_scopes, false, "print scopes") 418 DEFINE_bool(print_scopes, false, "print scopes")
436 DEFINE_bool(print_ir, false, "print the AST as seen by the backend")
437 DEFINE_bool(print_graph_text, false,
438 "print a text representation of the flow graph")
439 419
440 // contexts.cc 420 // contexts.cc
441 DEFINE_bool(trace_contexts, false, "trace contexts operations") 421 DEFINE_bool(trace_contexts, false, "trace contexts operations")
442 422
443 // heap.cc 423 // heap.cc
444 DEFINE_bool(gc_greedy, false, "perform GC prior to some allocations") 424 DEFINE_bool(gc_greedy, false, "perform GC prior to some allocations")
445 DEFINE_bool(gc_verbose, false, "print stuff during garbage collection") 425 DEFINE_bool(gc_verbose, false, "print stuff during garbage collection")
446 DEFINE_bool(heap_stats, false, "report heap statistics before and after GC") 426 DEFINE_bool(heap_stats, false, "report heap statistics before and after GC")
447 DEFINE_bool(code_stats, false, "report code statistics after GC") 427 DEFINE_bool(code_stats, false, "report code statistics after GC")
448 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") 428 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC")
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
507 DEFINE_bool(log_runtime, false, "Activate runtime system %Log call.") 487 DEFINE_bool(log_runtime, false, "Activate runtime system %Log call.")
508 DEFINE_bool(log_api, false, "Log API events to the log file.") 488 DEFINE_bool(log_api, false, "Log API events to the log file.")
509 DEFINE_bool(log_code, false, 489 DEFINE_bool(log_code, false,
510 "Log code events to the log file without profiling.") 490 "Log code events to the log file without profiling.")
511 DEFINE_bool(log_gc, false, 491 DEFINE_bool(log_gc, false,
512 "Log heap samples on garbage collection for the hp2ps tool.") 492 "Log heap samples on garbage collection for the hp2ps tool.")
513 DEFINE_bool(log_handles, false, "Log global handle events.") 493 DEFINE_bool(log_handles, false, "Log global handle events.")
514 DEFINE_bool(log_snapshot_positions, false, 494 DEFINE_bool(log_snapshot_positions, false,
515 "log positions of (de)serialized objects in the snapshot.") 495 "log positions of (de)serialized objects in the snapshot.")
516 DEFINE_bool(log_suspect, false, "Log suspect operations.") 496 DEFINE_bool(log_suspect, false, "Log suspect operations.")
517 DEFINE_bool(log_producers, false, "Log stack traces of JS objects allocations.")
518 DEFINE_bool(prof, false, 497 DEFINE_bool(prof, false,
519 "Log statistical profiling information (implies --log-code).") 498 "Log statistical profiling information (implies --log-code).")
520 DEFINE_bool(prof_auto, true, 499 DEFINE_bool(prof_auto, true,
521 "Used with --prof, starts profiling automatically") 500 "Used with --prof, starts profiling automatically")
522 DEFINE_bool(prof_lazy, false, 501 DEFINE_bool(prof_lazy, false,
523 "Used with --prof, only does sampling and logging" 502 "Used with --prof, only does sampling and logging"
524 " when profiler is active (implies --noprof_auto).") 503 " when profiler is active (implies --noprof_auto).")
525 DEFINE_bool(prof_browser_mode, true, 504 DEFINE_bool(prof_browser_mode, true,
526 "Used with --prof, turns on browser-compatible mode for profiling.") 505 "Used with --prof, turns on browser-compatible mode for profiling.")
527 DEFINE_bool(log_regexp, false, "Log regular expression execution.") 506 DEFINE_bool(log_regexp, false, "Log regular expression execution.")
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
570 #undef FLAG 549 #undef FLAG
571 550
572 #undef DEFINE_bool 551 #undef DEFINE_bool
573 #undef DEFINE_int 552 #undef DEFINE_int
574 #undef DEFINE_string 553 #undef DEFINE_string
575 554
576 #undef FLAG_MODE_DECLARE 555 #undef FLAG_MODE_DECLARE
577 #undef FLAG_MODE_DEFINE 556 #undef FLAG_MODE_DEFINE
578 #undef FLAG_MODE_DEFINE_DEFAULTS 557 #undef FLAG_MODE_DEFINE_DEFAULTS
579 #undef FLAG_MODE_META 558 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/factory.cc ('k') | src/frames.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698