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

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

Issue 13127: Initial real implementation of simple merge for frames. Does not yet... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/toiger/
Patch Set: '' Created 12 years 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-ia32.cc ('k') | src/jump-target-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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 // checks.cc 242 // checks.cc
243 DEFINE_bool(enable_slow_asserts, false, 243 DEFINE_bool(enable_slow_asserts, false,
244 "enable asserts that are slow to execute") 244 "enable asserts that are slow to execute")
245 245
246 // code-stubs.cc 246 // code-stubs.cc
247 DEFINE_bool(print_code_stubs, false, "print code stubs") 247 DEFINE_bool(print_code_stubs, false, "print code stubs")
248 248
249 // codegen-ia32.cc / codegen-arm.cc 249 // codegen-ia32.cc / codegen-arm.cc
250 DEFINE_bool(trace_codegen, false, 250 DEFINE_bool(trace_codegen, false,
251 "print name of functions for which code is generated") 251 "print name of functions for which code is generated")
252 DEFINE_bool(print_builtin_code, false, "print generated code for builtins")
253 DEFINE_bool(print_source, false, "pretty print source code") 252 DEFINE_bool(print_source, false, "pretty print source code")
254 DEFINE_bool(print_builtin_source, false, 253 DEFINE_bool(print_builtin_source, false,
255 "pretty print source code for builtins") 254 "pretty print source code for builtins")
256 DEFINE_bool(print_ast, false, "print source AST") 255 DEFINE_bool(print_ast, false, "print source AST")
257 DEFINE_bool(print_builtin_ast, false, "print source AST for builtins") 256 DEFINE_bool(print_builtin_ast, false, "print source AST for builtins")
258 DEFINE_bool(trace_calls, false, "trace calls") 257 DEFINE_bool(trace_calls, false, "trace calls")
259 DEFINE_bool(trace_builtin_calls, false, "trace builtins calls") 258 DEFINE_bool(trace_builtin_calls, false, "trace builtins calls")
260 DEFINE_string(stop_at, "", "function name where to insert a breakpoint") 259 DEFINE_string(stop_at, "", "function name where to insert a breakpoint")
261 260
262 // compiler.cc 261 // compiler.cc
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 // 334 //
336 #undef FLAG 335 #undef FLAG
337 #ifdef ENABLE_DISASSEMBLER 336 #ifdef ENABLE_DISASSEMBLER
338 #define FLAG FLAG_FULL 337 #define FLAG FLAG_FULL
339 #else 338 #else
340 #define FLAG FLAG_READONLY 339 #define FLAG FLAG_READONLY
341 #endif 340 #endif
342 341
343 // codegen-ia32.cc / codegen-arm.cc 342 // codegen-ia32.cc / codegen-arm.cc
344 DEFINE_bool(print_code, false, "print generated code") 343 DEFINE_bool(print_code, false, "print generated code")
344 DEFINE_bool(print_builtin_code, false, "print generated code for builtins")
345 345
346 // Cleanup... 346 // Cleanup...
347 #undef FLAG_FULL 347 #undef FLAG_FULL
348 #undef FLAG_READONLY 348 #undef FLAG_READONLY
349 #undef FLAG 349 #undef FLAG
350 350
351 #undef DEFINE_bool 351 #undef DEFINE_bool
352 #undef DEFINE_int 352 #undef DEFINE_int
353 #undef DEFINE_string 353 #undef DEFINE_string
354 354
355 #undef FLAG_MODE_DECLARE 355 #undef FLAG_MODE_DECLARE
356 #undef FLAG_MODE_DEFINE 356 #undef FLAG_MODE_DEFINE
357 #undef FLAG_MODE_DEFINE_DEFAULTS 357 #undef FLAG_MODE_DEFINE_DEFAULTS
358 #undef FLAG_MODE_META 358 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/codegen-ia32.cc ('k') | src/jump-target-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698