Deleted Added
sdiff udiff text old ( 8484:3c641509bf3e ) new ( 8502:f1fc7102c970 )
full compact
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

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

40 * Authors: Kevin Lim
41 */
42
43#include "base/cp_annotate.hh"
44#include "cpu/o3/dyn_inst.hh"
45
46template <class Impl>
47BaseO3DynInst<Impl>::BaseO3DynInst(StaticInstPtr staticInst,
48 StaticInstPtr macroop,
49 TheISA::PCState pc, TheISA::PCState predPC,
50 InstSeqNum seq_num, O3CPU *cpu)
51 : BaseDynInst<Impl>(staticInst, macroop, pc, predPC, seq_num, cpu)
52{
53 initVars();
54}
55
56template <class Impl>
57BaseO3DynInst<Impl>::BaseO3DynInst(StaticInstPtr _staticInst,
58 StaticInstPtr _macroop)
59 : BaseDynInst<Impl>(_staticInst, _macroop)
60{
61 initVars();
62}
63
64template <class Impl>
65void
66BaseO3DynInst<Impl>::initVars()
67{

--- 140 unchanged lines hidden ---