SimpleNetwork.hh (6154:6bb54dcb940e) SimpleNetwork.hh (6284:a63d1dc4c820)
1
2/*
3 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
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

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

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
30/*
1
2/*
3 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
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

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

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
30/*
31 * SimpleNetwork.h
31 * SimpleNetwork.hh
32 *
33 * Description: The SimpleNetwork class implements the interconnection
34 * SimpleNetwork between components (processor/cache components and
35 * memory/directory components). The interconnection network as
36 * described here is not a physical network, but a programming concept
37 * used to implement all communication between components. Thus parts
38 * of this 'network' may model the on-chip connections between cache
39 * controllers and directory controllers as well as the links between

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

50 *
51 * The network encapsulates all notion of virtual global time and is
52 * responsible for ordering the network transactions received. This
53 * hides all of these ordering details from the processor/cache and
54 * directory/memory modules.
55 *
56 * FIXME: Various flavor of networks are provided as a compiler time
57 * configurable. We currently include this SimpleNetwork in the
32 *
33 * Description: The SimpleNetwork class implements the interconnection
34 * SimpleNetwork between components (processor/cache components and
35 * memory/directory components). The interconnection network as
36 * described here is not a physical network, but a programming concept
37 * used to implement all communication between components. Thus parts
38 * of this 'network' may model the on-chip connections between cache
39 * controllers and directory controllers as well as the links between

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

50 *
51 * The network encapsulates all notion of virtual global time and is
52 * responsible for ordering the network transactions received. This
53 * hides all of these ordering details from the processor/cache and
54 * directory/memory modules.
55 *
56 * FIXME: Various flavor of networks are provided as a compiler time
57 * configurable. We currently include this SimpleNetwork in the
58 * makefile's vpath, so that SimpleNetwork.C can provide an alternative
58 * makefile's vpath, so that SimpleNetwork.cc can provide an alternative
59 * version constructor for the abstract Network class. It is easy to
60 * modify this to make network a runtime configuable. Just make the
61 * abstract Network class take a enumeration parameter, and based on
62 * that to initial proper network. Or even better, just make the ruby
63 * system initializer choose the proper network to initiate.
64 *
65 * $Id$
66 *

--- 91 unchanged lines hidden ---
59 * version constructor for the abstract Network class. It is easy to
60 * modify this to make network a runtime configuable. Just make the
61 * abstract Network class take a enumeration parameter, and based on
62 * that to initial proper network. Or even better, just make the ruby
63 * system initializer choose the proper network to initiate.
64 *
65 * $Id$
66 *

--- 91 unchanged lines hidden ---