1# -*- mode:python -*-
2
3# Copyright (c) 2006 The Regents of The University of Michigan
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright

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

143 if i in env['CPU_MODELS']:
144 checker_supports = True
145 if not checker_supports:
146 print "Checker only supports CPU models",
147 for i in CheckerSupportedCPUList:
148 print i,
149 print ", please set USE_CHECKER=False or use one of those CPU models"
150 Exit(1)
151else:
152 Dir('checker')
153
154TraceFlag('Activity')
155TraceFlag('Commit')
156TraceFlag('Context')
157TraceFlag('Decode')
158TraceFlag('DynInst')
159TraceFlag('ExecEnable')
160TraceFlag('ExecCPSeq')

--- 16 unchanged lines hidden ---