func_unit.hh (8737:770ccf3af571) func_unit.hh (9184:a1a8f137b796)
1/*
2 * Copyright (c) 2002-2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

46//
47//
48//
49
50class OpDesc : public SimObject
51{
52 public:
53 OpClass opClass;
1/*
2 * Copyright (c) 2002-2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

46//
47//
48//
49
50class OpDesc : public SimObject
51{
52 public:
53 OpClass opClass;
54 unsigned opLat;
55 unsigned issueLat;
54 Cycles opLat;
55 Cycles issueLat;
56
57 OpDesc(const OpDescParams *p)
58 : SimObject(p), opClass(p->opClass), opLat(p->opLat),
59 issueLat(p->issueLat) {};
60};
61
62class FUDesc : public SimObject
63{

--- 43 unchanged lines hidden ---
56
57 OpDesc(const OpDescParams *p)
58 : SimObject(p), opClass(p->opClass), opLat(p->opLat),
59 issueLat(p->issueLat) {};
60};
61
62class FUDesc : public SimObject
63{

--- 43 unchanged lines hidden ---