O3CPU.py (8796:a2ae5c378d0a) O3CPU.py (8799:dac1e33e07b0)
1# Copyright (c) 2005-2007 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

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

44 exitOnError=False,
45 updateOnError=True,
46 warnOnlyOnLoadError=False),
47 "checker")
48 checker.itb = Parent.itb
49 checker.dtb = Parent.dtb
50
51 cachePorts = Param.Unsigned(200, "Cache Ports")
1# Copyright (c) 2005-2007 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

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

44 exitOnError=False,
45 updateOnError=True,
46 warnOnlyOnLoadError=False),
47 "checker")
48 checker.itb = Parent.itb
49 checker.dtb = Parent.dtb
50
51 cachePorts = Param.Unsigned(200, "Cache Ports")
52 icache_port = Port("Instruction Port")
53 dcache_port = Port("Data Port")
54 _cached_ports = BaseCPU._cached_ports + ['icache_port', 'dcache_port']
55
56 decodeToFetchDelay = Param.Unsigned(1, "Decode to fetch delay")
57 renameToFetchDelay = Param.Unsigned(1 ,"Rename to fetch delay")
58 iewToFetchDelay = Param.Unsigned(1, "Issue/Execute/Writeback to fetch "
59 "delay")
60 commitToFetchDelay = Param.Unsigned(1, "Commit to fetch delay")
61 fetchWidth = Param.Unsigned(8, "Fetch width")
62

--- 82 unchanged lines hidden ---
52
53 decodeToFetchDelay = Param.Unsigned(1, "Decode to fetch delay")
54 renameToFetchDelay = Param.Unsigned(1 ,"Rename to fetch delay")
55 iewToFetchDelay = Param.Unsigned(1, "Issue/Execute/Writeback to fetch "
56 "delay")
57 commitToFetchDelay = Param.Unsigned(1, "Commit to fetch delay")
58 fetchWidth = Param.Unsigned(8, "Fetch width")
59

--- 82 unchanged lines hidden ---