Deleted Added
sdiff udiff text old ( 2921:e6bb350c3fa5 ) new ( 2929:f986dc04e25f )
full compact
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

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

109
110#################################################################
111#
112# Include CPU-model-specific files based on set of models
113# specified in CPU_MODELS build option.
114#
115#################################################################
116
117sources = []
118
119need_simple_base = False
120if 'AtomicSimpleCPU' in env['CPU_MODELS']:
121 need_simple_base = True
122 sources += Split('simple/atomic.cc')
123
124if 'TimingSimpleCPU' in env['CPU_MODELS']:

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

152 o3/rename.cc
153 o3/rename_map.cc
154 o3/rob.cc
155 o3/scoreboard.cc
156 o3/store_set.cc
157 ''')
158 if env['USE_CHECKER']:
159 sources += Split('o3/checker_builder.cc')
160
161if 'OzoneCPU' in env['CPU_MODELS']:
162 need_bp_unit = True
163 sources += Split('''
164 ozone/base_dyn_inst.cc
165 ozone/bpred_unit.cc
166 ozone/cpu.cc
167 ozone/cpu_builder.cc

--- 40 unchanged lines hidden ---