main.py (3127:c56885d6dc6d) main.py (3131:60738ee4e547)
1# Copyright (c) 2005 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

--- 264 unchanged lines hidden (view full) ---

273 objects.Statistics.text_file = options.stats_file
274
275 # set debugging options
276 objects.Debug.break_cycles = options.debug_break
277
278 # set tracing options
279 objects.Trace.flags = options.trace_flags
280 objects.Trace.start = options.trace_start
1# Copyright (c) 2005 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

--- 264 unchanged lines hidden (view full) ---

273 objects.Statistics.text_file = options.stats_file
274
275 # set debugging options
276 objects.Debug.break_cycles = options.debug_break
277
278 # set tracing options
279 objects.Trace.flags = options.trace_flags
280 objects.Trace.start = options.trace_start
281 objects.Trace.cycle = options.trace_cycle
281 objects.Trace.file = options.trace_file
282 objects.Trace.bufsize = options.trace_circlebuf
283 objects.Trace.dump_on_exit = options.trace_dumponexit
284 objects.Trace.ignore = options.trace_ignore
285
286 # set execution trace options
287 objects.ExecutionTrace.speculative = options.speculative
288 objects.ExecutionTrace.print_cycle = options.print_cycle

--- 44 unchanged lines hidden ---
282 objects.Trace.file = options.trace_file
283 objects.Trace.bufsize = options.trace_circlebuf
284 objects.Trace.dump_on_exit = options.trace_dumponexit
285 objects.Trace.ignore = options.trace_ignore
286
287 # set execution trace options
288 objects.ExecutionTrace.speculative = options.speculative
289 objects.ExecutionTrace.print_cycle = options.print_cycle

--- 44 unchanged lines hidden ---