SConscript (2932:eba74420a01c) SConscript (3187:7eefad0aed11)
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

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

153 o3/lsq.cc
154 o3/mem_dep_unit.cc
155 o3/rename.cc
156 o3/rename_map.cc
157 o3/rob.cc
158 o3/scoreboard.cc
159 o3/store_set.cc
160 ''')
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

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

153 o3/lsq.cc
154 o3/mem_dep_unit.cc
155 o3/rename.cc
156 o3/rename_map.cc
157 o3/rob.cc
158 o3/scoreboard.cc
159 o3/store_set.cc
160 ''')
161 sources += Split('memtest/memtest.cc')
161 if env['USE_CHECKER']:
162 sources += Split('o3/checker_builder.cc')
163 else:
164 env['SMT_CPU_MODELS'].append('O3CPU') # Checker doesn't support SMT right now
165
166if 'OzoneCPU' in env['CPU_MODELS']:
167 need_bp_unit = True
168 sources += Split('''

--- 44 unchanged lines hidden ---
162 if env['USE_CHECKER']:
163 sources += Split('o3/checker_builder.cc')
164 else:
165 env['SMT_CPU_MODELS'].append('O3CPU') # Checker doesn't support SMT right now
166
167if 'OzoneCPU' in env['CPU_MODELS']:
168 need_bp_unit = True
169 sources += Split('''

--- 44 unchanged lines hidden ---