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

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

Issue 22903028: Make x87 stack tracking more robust and avoid spilling (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 3 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 | « no previous file | src/ia32/assembler-ia32.h » ('j') | src/ia32/lithium-codegen-ia32.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 DEFINE_bool(collect_megamorphic_maps_from_stub_cache, 235 DEFINE_bool(collect_megamorphic_maps_from_stub_cache,
236 true, 236 true,
237 "crankshaft harvests type feedback from stub cache") 237 "crankshaft harvests type feedback from stub cache")
238 DEFINE_bool(hydrogen_stats, false, "print statistics for hydrogen") 238 DEFINE_bool(hydrogen_stats, false, "print statistics for hydrogen")
239 DEFINE_bool(trace_hydrogen, false, "trace generated hydrogen to file") 239 DEFINE_bool(trace_hydrogen, false, "trace generated hydrogen to file")
240 DEFINE_bool(trace_hydrogen_stubs, false, "trace generated hydrogen for stubs") 240 DEFINE_bool(trace_hydrogen_stubs, false, "trace generated hydrogen for stubs")
241 DEFINE_string(trace_hydrogen_file, NULL, "trace hydrogen to given file name") 241 DEFINE_string(trace_hydrogen_file, NULL, "trace hydrogen to given file name")
242 DEFINE_string(trace_phase, "HLZ", "trace generated IR for specified phases") 242 DEFINE_string(trace_phase, "HLZ", "trace generated IR for specified phases")
243 DEFINE_bool(trace_inlining, false, "trace inlining decisions") 243 DEFINE_bool(trace_inlining, false, "trace inlining decisions")
244 DEFINE_bool(trace_alloc, false, "trace register allocator") 244 DEFINE_bool(trace_alloc, false, "trace register allocator")
245 DEFINE_bool(trace_x87, false, "trace x87 stack tracking")
245 DEFINE_bool(trace_all_uses, false, "trace all use positions") 246 DEFINE_bool(trace_all_uses, false, "trace all use positions")
246 DEFINE_bool(trace_range, false, "trace range analysis") 247 DEFINE_bool(trace_range, false, "trace range analysis")
247 DEFINE_bool(trace_gvn, false, "trace global value numbering") 248 DEFINE_bool(trace_gvn, false, "trace global value numbering")
248 DEFINE_bool(trace_representation, false, "trace representation types") 249 DEFINE_bool(trace_representation, false, "trace representation types")
249 DEFINE_bool(trace_escape_analysis, false, "trace hydrogen escape analysis") 250 DEFINE_bool(trace_escape_analysis, false, "trace hydrogen escape analysis")
250 DEFINE_bool(trace_allocation_folding, false, "trace allocation folding") 251 DEFINE_bool(trace_allocation_folding, false, "trace allocation folding")
251 DEFINE_bool(trace_track_allocation_sites, false, 252 DEFINE_bool(trace_track_allocation_sites, false,
252 "trace the tracking of allocation sites") 253 "trace the tracking of allocation sites")
253 DEFINE_bool(trace_migration, false, "trace object migration") 254 DEFINE_bool(trace_migration, false, "trace object migration")
254 DEFINE_bool(trace_generalization, false, "trace map generalization") 255 DEFINE_bool(trace_generalization, false, "trace map generalization")
(...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after
811 #undef DEFINE_bool 812 #undef DEFINE_bool
812 #undef DEFINE_int 813 #undef DEFINE_int
813 #undef DEFINE_string 814 #undef DEFINE_string
814 #undef DEFINE_implication 815 #undef DEFINE_implication
815 816
816 #undef FLAG_MODE_DECLARE 817 #undef FLAG_MODE_DECLARE
817 #undef FLAG_MODE_DEFINE 818 #undef FLAG_MODE_DEFINE
818 #undef FLAG_MODE_DEFINE_DEFAULTS 819 #undef FLAG_MODE_DEFINE_DEFAULTS
819 #undef FLAG_MODE_META 820 #undef FLAG_MODE_META
820 #undef FLAG_MODE_DEFINE_IMPLICATIONS 821 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « no previous file | src/ia32/assembler-ia32.h » ('j') | src/ia32/lithium-codegen-ia32.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698