Deleted Added
sdiff udiff text old ( 4762:c94e103c83ad ) new ( 5034:6186ef720dd4 )
full compact
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;

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

27 *
28 * Authors: Steve Raasch
29 */
30
31#include <sstream>
32
33#include "base/misc.hh"
34#include "cpu/func_unit.hh"
35
36using namespace std;
37
38
39////////////////////////////////////////////////////////////////////////////
40//
41// The funciton unit
42//

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

113
114
115//
116// The operation-class description object
117//
118OpDesc *
119OpDescParams::create()
120{
121 return new OpDesc(this);
122}
123
124//
125// The FuDesc object
126//
127FUDesc *
128FUDescParams::create()
129{
130 return new FUDesc(this);
131}