dyn_inst_impl.hh (10379:c00f6d7e2681) dyn_inst_impl.hh (10417:710ee116eb68)
1/*
2 * Copyright (c) 2010-2011 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

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

44#define __CPU_O3_DYN_INST_IMPL_HH__
45
46#include "base/cp_annotate.hh"
47#include "cpu/o3/dyn_inst.hh"
48#include "sim/full_system.hh"
49#include "debug/O3PipeView.hh"
50
51template <class Impl>
1/*
2 * Copyright (c) 2010-2011 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

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

44#define __CPU_O3_DYN_INST_IMPL_HH__
45
46#include "base/cp_annotate.hh"
47#include "cpu/o3/dyn_inst.hh"
48#include "sim/full_system.hh"
49#include "debug/O3PipeView.hh"
50
51template <class Impl>
52BaseO3DynInst<Impl>::BaseO3DynInst(StaticInstPtr staticInst,
53 StaticInstPtr macroop,
52BaseO3DynInst<Impl>::BaseO3DynInst(const StaticInstPtr &staticInst,
53 const StaticInstPtr &macroop,
54 TheISA::PCState pc, TheISA::PCState predPC,
55 InstSeqNum seq_num, O3CPU *cpu)
56 : BaseDynInst<Impl>(staticInst, macroop, pc, predPC, seq_num, cpu)
57{
58 initVars();
59}
60
61template <class Impl>
54 TheISA::PCState pc, TheISA::PCState predPC,
55 InstSeqNum seq_num, O3CPU *cpu)
56 : BaseDynInst<Impl>(staticInst, macroop, pc, predPC, seq_num, cpu)
57{
58 initVars();
59}
60
61template <class Impl>
62BaseO3DynInst<Impl>::BaseO3DynInst(StaticInstPtr _staticInst,
63 StaticInstPtr _macroop)
62BaseO3DynInst<Impl>::BaseO3DynInst(const StaticInstPtr &_staticInst,
63 const StaticInstPtr &_macroop)
64 : BaseDynInst<Impl>(_staticInst, _macroop)
65{
66 initVars();
67}
68
69template <class Impl>BaseO3DynInst<Impl>::~BaseO3DynInst()
70{
71#if TRACING_ON

--- 190 unchanged lines hidden ---
64 : BaseDynInst<Impl>(_staticInst, _macroop)
65{
66 initVars();
67}
68
69template <class Impl>BaseO3DynInst<Impl>::~BaseO3DynInst()
70{
71#if TRACING_ON

--- 190 unchanged lines hidden ---