Merge ktlim@zizzer.eecs.umich.edu:/bk/m5
[gem5.git] / SConscript
1 # -*- mode:python -*-
2
3 # Copyright (c) 2004 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
9 # notice, this list of conditions and the following disclaimer;
10 # redistributions in binary form must reproduce the above copyright
11 # notice, this list of conditions and the following disclaimer in the
12 # documentation and/or other materials provided with the distribution;
13 # neither the name of the copyright holders nor the names of its
14 # contributors may be used to endorse or promote products derived from
15 # this software without specific prior written permission.
16 #
17 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
29 import os
30 import sys
31
32 # This file defines how to build a particular configuration of M5
33 # based on variable settings in the 'env' build environment.
34
35 # Import build environment variable from SConstruct.
36 Import('env')
37
38 ###################################################
39 #
40 # Define needed sources.
41 #
42 ###################################################
43
44 # Base sources used by all configurations.
45 base_sources = Split('''
46 arch/alpha/decoder.cc
47 arch/alpha/alpha_full_cpu_exec.cc
48 arch/alpha/fast_cpu_exec.cc
49 arch/alpha/simple_cpu_exec.cc
50 arch/alpha/inorder_cpu_exec.cc
51 arch/alpha/full_cpu_exec.cc
52 arch/alpha/faults.cc
53 arch/alpha/isa_traits.cc
54 arch/alpha/ooo_cpu_exec.cc
55
56 base/circlebuf.cc
57 base/copyright.cc
58 base/cprintf.cc
59 base/embedfile.cc
60 base/fast_alloc.cc
61 base/fifo_buffer.cc
62 base/hostinfo.cc
63 base/hybrid_pred.cc
64 base/inifile.cc
65 base/intmath.cc
66 base/match.cc
67 base/misc.cc
68 base/output.cc
69 base/pollevent.cc
70 base/python.cc
71 base/range.cc
72 base/random.cc
73 base/sat_counter.cc
74 base/socket.cc
75 base/statistics.cc
76 base/str.cc
77 base/time.cc
78 base/trace.cc
79 base/traceflags.cc
80 base/userinfo.cc
81 base/compression/lzss_compression.cc
82 base/loader/aout_object.cc
83 base/loader/ecoff_object.cc
84 base/loader/elf_object.cc
85 base/loader/object_file.cc
86 base/loader/symtab.cc
87 base/stats/events.cc
88 base/stats/python.cc
89 base/stats/statdb.cc
90 base/stats/visit.cc
91 base/stats/text.cc
92
93 cpu/base_cpu.cc
94 cpu/base_dyn_inst.cc
95 cpu/exec_context.cc
96 cpu/exetrace.cc
97 cpu/pc_event.cc
98 cpu/static_inst.cc
99 cpu/beta_cpu/2bit_local_pred.cc
100 cpu/beta_cpu/alpha_dyn_inst.cc
101 cpu/beta_cpu/alpha_full_cpu.cc
102 cpu/beta_cpu/alpha_full_cpu_builder.cc
103 cpu/beta_cpu/bpred_unit.cc
104 cpu/beta_cpu/btb.cc
105 cpu/beta_cpu/commit.cc
106 cpu/beta_cpu/decode.cc
107 cpu/beta_cpu/fetch.cc
108 cpu/beta_cpu/free_list.cc
109 cpu/beta_cpu/full_cpu.cc
110 cpu/beta_cpu/iew.cc
111 cpu/beta_cpu/inst_queue.cc
112 cpu/beta_cpu/ldstq.cc
113 cpu/beta_cpu/mem_dep_unit.cc
114 cpu/beta_cpu/ras.cc
115 cpu/beta_cpu/rename.cc
116 cpu/beta_cpu/rename_map.cc
117 cpu/beta_cpu/rob.cc
118 cpu/beta_cpu/sat_counter.cc
119 cpu/beta_cpu/store_set.cc
120 cpu/beta_cpu/tournament_pred.cc
121 cpu/fast_cpu/fast_cpu.cc
122 cpu/full_cpu/bpred.cc
123 cpu/full_cpu/commit.cc
124 cpu/full_cpu/create_vector.cc
125 cpu/full_cpu/cv_spec_state.cc
126 cpu/full_cpu/dd_queue.cc
127 cpu/full_cpu/dep_link.cc
128 cpu/full_cpu/dispatch.cc
129 cpu/full_cpu/dyn_inst.cc
130 cpu/full_cpu/execute.cc
131 cpu/full_cpu/fetch.cc
132 cpu/full_cpu/floss_reasons.cc
133 cpu/full_cpu/fu_pool.cc
134 cpu/full_cpu/full_cpu.cc
135 cpu/full_cpu/inst_fifo.cc
136 cpu/full_cpu/instpipe.cc
137 cpu/full_cpu/issue.cc
138 cpu/full_cpu/ls_queue.cc
139 cpu/full_cpu/machine_queue.cc
140 cpu/full_cpu/pc_sample_profile.cc
141 cpu/full_cpu/pipetrace.cc
142 cpu/full_cpu/readyq.cc
143 cpu/full_cpu/reg_info.cc
144 cpu/full_cpu/rob_station.cc
145 cpu/full_cpu/spec_memory.cc
146 cpu/full_cpu/spec_state.cc
147 cpu/full_cpu/storebuffer.cc
148 cpu/full_cpu/writeback.cc
149 cpu/full_cpu/iq/iq_station.cc
150 cpu/full_cpu/iq/iqueue.cc
151 cpu/full_cpu/iq/segmented/chain_info.cc
152 cpu/full_cpu/iq/segmented/chain_wire.cc
153 cpu/full_cpu/iq/segmented/iq_seg.cc
154 cpu/full_cpu/iq/segmented/iq_segmented.cc
155 cpu/full_cpu/iq/segmented/seg_chain.cc
156 cpu/full_cpu/iq/seznec/iq_seznec.cc
157 cpu/full_cpu/iq/standard/iq_standard.cc
158 cpu/inorder_cpu/inorder_cpu.cc
159 cpu/ooo_cpu/ea_list.cc
160 cpu/ooo_cpu/ooo_cpu.cc
161 cpu/ooo_cpu/ooo_dyn_inst.cc
162 cpu/ooo_cpu/ooo_sim_obj.cc
163 cpu/sampling_cpu/sampling_cpu.cc
164 cpu/simple_cpu/simple_cpu.cc
165 cpu/trace/reader/mem_trace_reader.cc
166 cpu/trace/reader/ibm_reader.cc
167 cpu/trace/reader/itx_reader.cc
168 cpu/trace/reader/m5_reader.cc
169
170 mem/base_hier.cc
171 mem/base_mem.cc
172 mem/hier_params.cc
173 mem/mem_cmd.cc
174 mem/mem_debug.cc
175 mem/mem_req.cc
176 mem/memory_interface.cc
177 mem/bus/base_interface.cc
178 mem/bus/bus.cc
179 mem/bus/bus_bridge.cc
180 mem/bus/bus_bridge_master.cc
181 mem/bus/bus_bridge_slave.cc
182 mem/bus/bus_interface.cc
183 mem/bus/dma_bus_interface.cc
184 mem/bus/dma_interface.cc
185 mem/bus/master_interface.cc
186 mem/bus/slave_interface.cc
187 mem/cache/base_cache.cc
188 mem/cache/cache.cc
189 mem/cache/cache_builder.cc
190 mem/cache/coherence/coherence_protocol.cc
191 mem/cache/coherence/uni_coherence.cc
192 mem/cache/miss/blocking_buffer.cc
193 mem/cache/miss/miss_queue.cc
194 mem/cache/miss/mshr.cc
195 mem/cache/miss/mshr_queue.cc
196 mem/cache/tags/base_tags.cc
197 mem/cache/tags/cache_tags.cc
198 mem/cache/tags/fa_lru.cc
199 mem/cache/tags/iic.cc
200 mem/cache/tags/lru.cc
201 mem/cache/tags/split.cc
202 mem/cache/tags/split_lifo.cc
203 mem/cache/tags/split_lru.cc
204 mem/cache/tags/repl/gen.cc
205 mem/cache/tags/repl/repl.cc
206 mem/functional_mem/functional_memory.cc
207 mem/functional_mem/main_memory.cc
208 mem/timing_mem/base_memory.cc
209 mem/timing_mem/memory_builder.cc
210 mem/timing_mem/simple_mem_bank.cc
211 mem/trace/itx_writer.cc
212 mem/trace/mem_trace_writer.cc
213 mem/trace/m5_writer.cc
214
215 python/pyconfig.cc
216 python/embedded_py.cc
217
218 sim/builder.cc
219 sim/configfile.cc
220 sim/debug.cc
221 sim/eventq.cc
222 sim/main.cc
223 sim/param.cc
224 sim/profile.cc
225 sim/serialize.cc
226 sim/sim_events.cc
227 sim/sim_exit.cc
228 sim/sim_object.cc
229 sim/startup.cc
230 sim/stat_context.cc
231 sim/stat_control.cc
232 sim/trace_context.cc
233 sim/universe.cc
234 ''')
235
236 # MySql sources
237 mysql_sources = Split('''
238 base/mysql.cc
239 base/stats/mysql.cc
240 ''')
241
242 # Full-system sources
243 full_system_sources = Split('''
244 arch/alpha/alpha_memory.cc
245 arch/alpha/arguments.cc
246 arch/alpha/ev5.cc
247 arch/alpha/osfpal.cc
248 arch/alpha/pseudo_inst.cc
249 arch/alpha/vtophys.cc
250
251 base/crc.cc
252 base/inet.cc
253 base/remote_gdb.cc
254
255 cpu/intr_control.cc
256
257 dev/alpha_console.cc
258 dev/baddev.cc
259 dev/simconsole.cc
260 dev/disk_image.cc
261 dev/dma.cc
262 dev/etherbus.cc
263 dev/etherdump.cc
264 dev/etherint.cc
265 dev/etherlink.cc
266 dev/etherpkt.cc
267 dev/ethertap.cc
268 dev/ide_ctrl.cc
269 dev/ide_disk.cc
270 dev/io_device.cc
271 dev/ns_gige.cc
272 dev/etherdev.cc
273 dev/pciconfigall.cc
274 dev/pcidev.cc
275 dev/pktfifo.cc
276 dev/scsi.cc
277 dev/scsi_ctrl.cc
278 dev/scsi_disk.cc
279 dev/scsi_none.cc
280 dev/sinic.cc
281 dev/simple_disk.cc
282 dev/tlaser_clock.cc
283 dev/tlaser_ipi.cc
284 dev/tlaser_mbox.cc
285 dev/tlaser_mc146818.cc
286 dev/tlaser_node.cc
287 dev/tlaser_pcia.cc
288 dev/tlaser_pcidev.cc
289 dev/tlaser_serial.cc
290 dev/turbolaser.cc
291 dev/tsunami.cc
292 dev/tsunami_cchip.cc
293 dev/tsunami_fake.cc
294 dev/tsunami_io.cc
295 dev/tsunami_pchip.cc
296 dev/uart.cc
297
298 kern/kernel_binning.cc
299 kern/kernel_stats.cc
300 kern/system_events.cc
301 kern/linux/linux_events.cc
302 kern/linux/linux_syscalls.cc
303 kern/linux/linux_system.cc
304 kern/linux/printk.cc
305 kern/tru64/dump_mbuf.cc
306 kern/tru64/printf.cc
307 kern/tru64/tru64_events.cc
308 kern/tru64/tru64_syscalls.cc
309 kern/tru64/tru64_system.cc
310
311 mem/functional_mem/memory_control.cc
312 mem/functional_mem/physical_memory.cc
313 dev/platform.cc
314
315 sim/system.cc
316 ''')
317
318 # Syscall emulation (non-full-system) sources
319 syscall_emulation_sources = Split('''
320 arch/alpha/alpha_common_syscall_emul.cc
321 arch/alpha/alpha_linux_process.cc
322 arch/alpha/alpha_tru64_process.cc
323 cpu/memtest/memtest.cc
324 cpu/trace/opt_cpu.cc
325 cpu/trace/trace_cpu.cc
326 eio/eio.cc
327 eio/exolex.cc
328 eio/libexo.cc
329 sim/process.cc
330 sim/syscall_emul.cc
331 ''')
332
333 targetarch_files = Split('''
334 alpha_common_syscall_emul.hh
335 alpha_linux_process.hh
336 alpha_memory.hh
337 alpha_tru64_process.hh
338 aout_machdep.h
339 arguments.hh
340 byte_swap.hh
341 ecoff_machdep.h
342 elf_machdep.h
343 ev5.hh
344 faults.hh
345 isa_fullsys_traits.hh
346 isa_traits.hh
347 machine_exo.h
348 osfpal.hh
349 pseudo_inst.hh
350 vptr.hh
351 vtophys.hh
352 ''')
353
354 for f in targetarch_files:
355 env.Command('targetarch/' + f, 'arch/alpha/' + f,
356 '''echo '#include "arch/alpha/%s"' > $TARGET''' % f)
357
358
359 # Set up complete list of sources based on configuration.
360 sources = base_sources
361
362 if env['FULL_SYSTEM']:
363 sources += full_system_sources
364 else:
365 sources += syscall_emulation_sources
366
367 extra_libraries = []
368 env.Append(LIBS=['z'])
369 if env['USE_MYSQL']:
370 sources += mysql_sources
371 env.Append(CPPDEFINES = 'USE_MYSQL')
372 env.Append(CPPDEFINES = 'STATS_BINNING')
373 env.Append(CPPPATH=['/usr/local/include/mysql', '/usr/include/mysql'])
374 if os.path.isdir('/usr/lib64'):
375 env.Append(LIBPATH=['/usr/lib64/mysql'])
376 else:
377 env.Append(LIBPATH=['/usr/lib/mysql/'])
378 env.Append(LIBS=['mysqlclient'])
379
380
381 ###################################################
382 #
383 # Special build rules.
384 #
385 ###################################################
386
387 # base/traceflags.{cc,hh} are generated from base/traceflags.py.
388 # $TARGET.base will expand to "<build-dir>/base/traceflags".
389 env.Command(Split('base/traceflags.hh base/traceflags.cc'),
390 'base/traceflags.py',
391 'python $SOURCE $TARGET.base')
392
393 # several files are generated from arch/$TARGET_ISA/isa_desc.
394 env.Command(Split('''arch/alpha/decoder.cc
395 arch/alpha/decoder.hh
396 arch/alpha/alpha_full_cpu_exec.cc
397 arch/alpha/fast_cpu_exec.cc
398 arch/alpha/simple_cpu_exec.cc
399 arch/alpha/inorder_cpu_exec.cc
400 arch/alpha/full_cpu_exec.cc
401 arch/alpha/ooo_cpu_exec.cc'''),
402 Split('''arch/alpha/isa_desc
403 arch/isa_parser.py'''),
404 '$SRCDIR/arch/isa_parser.py $SOURCE $TARGET.dir arch/alpha')
405
406
407 # libelf build is described in its own SConscript file.
408 # SConscript-local is the per-config build, which just copies some
409 # header files into a place where they can be found.
410 SConscript('libelf/SConscript-local', exports = 'env', duplicate=0)
411 SConscript('python/SConscript', exports = ['env'], duplicate=0)
412 SConscript('simobj/SConscript', exports = 'env', duplicate=0)
413
414 # This function adds the specified sources to the given build
415 # environment, and returns a list of all the corresponding SCons
416 # Object nodes (including an extra one for date.cc). We explicitly
417 # add the Object nodes so we can set up special dependencies for
418 # date.cc.
419 def make_objs(sources, env):
420 objs = [env.Object(s) for s in sources]
421 # make date.cc depend on all other objects so it always gets
422 # recompiled whenever anything else does
423 date_obj = env.Object('base/date.cc')
424 env.Depends(date_obj, objs)
425 objs.append(date_obj)
426 objs.extend(extra_libraries)
427 return objs
428
429 ###################################################
430 #
431 # Define binaries. Each different build type (debug, opt, etc.) gets
432 # a slightly different build environment.
433 #
434 ###################################################
435
436 # Include file paths are rooted in this directory. SCons will
437 # automatically expand '.' to refer to both the source directory and
438 # the corresponding build directory to pick up generated include
439 # files.
440 env.Append(CPPPATH='.')
441
442 # Debug binary
443 debug = env.Copy(OBJSUFFIX='.do')
444 debug.Append(CCFLAGS=Split('-g -gstabs+ -O0'))
445 debug.Append(CPPDEFINES='DEBUG')
446 debug.Program(target = 'm5.debug', source = make_objs(sources, debug))
447
448 # Optimized binary
449 opt = env.Copy()
450 opt.Append(CCFLAGS=Split('-g -O5'))
451 opt.Program(target = 'm5.opt', source = make_objs(sources, opt))
452
453 # "Fast" binary
454 fast = env.Copy(OBJSUFFIX='.fo')
455 fast.Append(CCFLAGS=Split('-O5'))
456 fast.Append(CPPDEFINES='NDEBUG')
457 fast.Program(target = 'm5.fast.unstripped', source = make_objs(sources, fast))
458 fast.Command(target = 'm5.fast', source = 'm5.fast.unstripped',
459 action = 'strip $SOURCE -o $TARGET')
460
461 # Profiled binary
462 prof = env.Copy(OBJSUFFIX='.po')
463 prof.Append(CCFLAGS=Split('-O5 -g -pg'), LINKFLAGS='-pg')
464 prof.Program(target = 'm5.prof', source = make_objs(sources, prof))