simpoint.cc (11359:b0b976a1ceda) simpoint.cc (11793:ef606668d247)
1/*
2 * Copyright (c) 2012-2014 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

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

33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 *
37 * Authors: Dam Sunwoo
38 * Curtis Dunham
39 */
40
1/*
2 * Copyright (c) 2012-2014 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

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

33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 *
37 * Authors: Dam Sunwoo
38 * Curtis Dunham
39 */
40
41#include "base/output.hh"
42#include "cpu/simple/probes/simpoint.hh"
43
41#include "cpu/simple/probes/simpoint.hh"
42
43#include "base/output.hh"
44
44SimPoint::SimPoint(const SimPointParams *p)
45 : ProbeListenerObject(p),
46 intervalSize(p->interval),
47 intervalCount(0),
48 intervalDrift(0),
49 simpointStream(NULL),
50 currentBBV(0, 0),
51 currentBBVInstCount(0)

--- 97 unchanged lines hidden ---
45SimPoint::SimPoint(const SimPointParams *p)
46 : ProbeListenerObject(p),
47 intervalSize(p->interval),
48 intervalCount(0),
49 intervalDrift(0),
50 simpointStream(NULL),
51 currentBBV(0, 0),
52 currentBBVInstCount(0)

--- 97 unchanged lines hidden ---