dummy_checker.cc (11793:ef606668d247) dummy_checker.cc (14298:e1c8c253ce95)
1/*
1/*
2 * Copyright (c) 2011 ARM Limited
2 * Copyright (c) 2011, 2019 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
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated

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

36 *
37 * Authors: Geoffrey Blake
38 */
39
40#include "cpu/dummy_checker.hh"
41
42#include "params/DummyChecker.hh"
43
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
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated

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

36 *
37 * Authors: Geoffrey Blake
38 */
39
40#include "cpu/dummy_checker.hh"
41
42#include "params/DummyChecker.hh"
43
44////////////////////////////////////////////////////////////////////////
45//
46// DummyChecker Simulation Object
47//
48DummyChecker *
49DummyCheckerParams::create()
50{
44DummyChecker *
45DummyCheckerParams::create()
46{
51 DummyChecker::Params *params = new DummyChecker::Params();
52 params->name = name;
53 params->numThreads = numThreads;
54 params->max_insts_any_thread = 0;
55 params->max_insts_all_threads = 0;
56 params->max_loads_any_thread = 0;
57 params->max_loads_all_threads = 0;
58 params->clk_domain = clk_domain;
59 // Hack to touch all parameters. Consider not deriving Checker
60 // from BaseCPU..it's not really a CPU in the end.
61 Counter temp;
62 temp = max_insts_any_thread;
63 temp = max_insts_all_threads;
64 temp = max_loads_any_thread;
65 temp = max_loads_all_threads;
66 temp++;
67 Tick temp2 = progress_interval;
68 params->progress_interval = 0;
69 temp2++;
47 // The checker should check all instructions executed by the main
48 // cpu and therefore any parameters for early exit don't make much
49 // sense.
50 fatal_if(max_insts_any_thread || max_insts_all_threads ||
51 max_loads_any_thread || max_loads_all_threads ||
52 progress_interval, "Invalid checker parameters");
70
53
71 params->itb = itb;
72 params->dtb = dtb;
73 params->isa = isa;
74 params->system = system;
75 params->cpu_id = cpu_id;
76 params->profile = profile;
77 params->workload = workload;
78
79 DummyChecker *cpu = new DummyChecker(params);
80 return cpu;
54 return new DummyChecker(this);
81}
55}