mem.hh (7720:65d338a8dba4) mem.hh (7747:2b65eb281f5f)
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

105 IntRegIndex _base, AddrMode _mode, bool _wb)
106 : MightBeMicro(mnem, _machInst, __opClass),
107 base(_base), mode(_mode), wb(_wb), uops(NULL)
108 {}
109
110 virtual
111 ~RfeOp()
112 {
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

105 IntRegIndex _base, AddrMode _mode, bool _wb)
106 : MightBeMicro(mnem, _machInst, __opClass),
107 base(_base), mode(_mode), wb(_wb), uops(NULL)
108 {}
109
110 virtual
111 ~RfeOp()
112 {
113 delete uops;
113 delete [] uops;
114 }
115
116 StaticInstPtr
117 fetchMicroop(MicroPC microPC) const
118 {
119 assert(uops != NULL && microPC < numMicroops);
120 return uops[microPC];
121 }

--- 374 unchanged lines hidden ---
114 }
115
116 StaticInstPtr
117 fetchMicroop(MicroPC microPC) const
118 {
119 assert(uops != NULL && microPC < numMicroops);
120 return uops[microPC];
121 }

--- 374 unchanged lines hidden ---