Updates for OzoneCPU.
authorKevin Lim <ktlim@umich.edu>
Sat, 22 Apr 2006 22:45:01 +0000 (18:45 -0400)
committerKevin Lim <ktlim@umich.edu>
Sat, 22 Apr 2006 22:45:01 +0000 (18:45 -0400)
commit759ff4b91024835d3bf436b993b0f39e276c36fe
tree8811d20f2cf2638f8e8fd32afc08492f4b644ff6
parenta8b03e4d017b66d7b5502a101ea5b7115827a107
Updates for OzoneCPU.

build/SConstruct:
    Include Ozone CPU models.
cpu/cpu_models.py:
    Include OzoneCPU models.

--HG--
extra : convert_revision : 51a016c216cacd2cc613eed79653026c2edda4b3
34 files changed:
build/SConstruct
cpu/cpu_models.py
cpu/ozone/back_end.cc [new file with mode: 0644]
cpu/ozone/back_end.hh [new file with mode: 0644]
cpu/ozone/back_end_impl.hh [new file with mode: 0644]
cpu/ozone/cpu.cc
cpu/ozone/cpu.hh
cpu/ozone/cpu_builder.cc [new file with mode: 0644]
cpu/ozone/cpu_impl.hh
cpu/ozone/dyn_inst.cc [new file with mode: 0644]
cpu/ozone/dyn_inst.hh [new file with mode: 0644]
cpu/ozone/dyn_inst_impl.hh [new file with mode: 0644]
cpu/ozone/front_end.cc [new file with mode: 0644]
cpu/ozone/front_end.hh [new file with mode: 0644]
cpu/ozone/front_end_impl.hh [new file with mode: 0644]
cpu/ozone/inorder_back_end.cc [new file with mode: 0644]
cpu/ozone/inorder_back_end.hh [new file with mode: 0644]
cpu/ozone/inorder_back_end_impl.hh [new file with mode: 0644]
cpu/ozone/inst_queue.cc [new file with mode: 0644]
cpu/ozone/inst_queue.hh [new file with mode: 0644]
cpu/ozone/inst_queue_impl.hh [new file with mode: 0644]
cpu/ozone/lsq_unit.cc [new file with mode: 0644]
cpu/ozone/lsq_unit.hh [new file with mode: 0644]
cpu/ozone/lsq_unit_impl.hh [new file with mode: 0644]
cpu/ozone/null_predictor.hh [new file with mode: 0644]
cpu/ozone/ozone_impl.hh [new file with mode: 0644]
cpu/ozone/rename_table.cc [new file with mode: 0644]
cpu/ozone/rename_table.hh [new file with mode: 0644]
cpu/ozone/rename_table_impl.hh [new file with mode: 0644]
cpu/ozone/simple_impl.hh [new file with mode: 0644]
cpu/ozone/simple_params.hh [new file with mode: 0644]
cpu/ozone/thread_state.hh [new file with mode: 0644]
python/m5/objects/OzoneCPU.py [new file with mode: 0644]
python/m5/objects/SimpleOzoneCPU.py [new file with mode: 0644]