SConscript (4679:0b39fa8f5eb8) | SConscript (4997:e7380529bd2d) |
---|---|
1# -*- mode:python -*- 2 3# Copyright (c) 2005-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 --- 82 unchanged lines hidden (view full) --- 91 Source('insts/microregop.cc') 92 Source('insts/static_inst.cc') 93 Source('intregfile.cc') 94 Source('miscregfile.cc') 95 Source('predecoder.cc') 96 Source('predecoder_tables.cc') 97 Source('regfile.cc') 98 Source('remote_gdb.cc') | 1# -*- mode:python -*- 2 3# Copyright (c) 2005-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 --- 82 unchanged lines hidden (view full) --- 91 Source('insts/microregop.cc') 92 Source('insts/static_inst.cc') 93 Source('intregfile.cc') 94 Source('miscregfile.cc') 95 Source('predecoder.cc') 96 Source('predecoder_tables.cc') 97 Source('regfile.cc') 98 Source('remote_gdb.cc') |
99 Source('tlb.cc') |
|
99 | 100 |
101 SimObject('X86TLB.py') 102 |
|
100 if env['FULL_SYSTEM']: 101 # Full-system sources 102 pass 103 else: 104 Source('process.cc') 105 106 Source('linux/linux.cc') 107 Source('linux/process.cc') 108 Source('linux/syscalls.cc') 109 110 # Add in files generated by the ISA description. 111 isa_desc_files = env.ISADesc('isa/main.isa') 112 # Only non-header files need to be compiled. 113 for f in isa_desc_files: 114 if not f.path.endswith('.hh'): 115 Source(f) | 103 if env['FULL_SYSTEM']: 104 # Full-system sources 105 pass 106 else: 107 Source('process.cc') 108 109 Source('linux/linux.cc') 110 Source('linux/process.cc') 111 Source('linux/syscalls.cc') 112 113 # Add in files generated by the ISA description. 114 isa_desc_files = env.ISADesc('isa/main.isa') 115 # Only non-header files need to be compiled. 116 for f in isa_desc_files: 117 if not f.path.endswith('.hh'): 118 Source(f) |