base_dyn_inst_impl.hh (10417:710ee116eb68) base_dyn_inst_impl.hh (11097:da477ae38907)
1/*
2 * Copyright (c) 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

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

83}
84
85template <class Impl>
86void
87BaseDynInst<Impl>::initVars()
88{
89 memData = NULL;
90 effAddr = 0;
1/*
2 * Copyright (c) 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

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

83}
84
85template <class Impl>
86void
87BaseDynInst<Impl>::initVars()
88{
89 memData = NULL;
90 effAddr = 0;
91 physEffAddr = 0;
91 physEffAddrLow = 0;
92 physEffAddrHigh = 0;
92 readyRegs = 0;
93 memReqFlags = 0;
94
95 status.reset();
96
97 instFlags.reset();
98 instFlags[RecordResult] = true;
99 instFlags[Predicate] = true;

--- 137 unchanged lines hidden ---
93 readyRegs = 0;
94 memReqFlags = 0;
95
96 status.reset();
97
98 instFlags.reset();
99 instFlags[RecordResult] = true;
100 instFlags[Predicate] = true;

--- 137 unchanged lines hidden ---