dummy_checker.cc (9384:877293183bdf) dummy_checker.cc (9793:6e6cefc1db1f)
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

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

49{
50 DummyChecker::Params *params = new DummyChecker::Params();
51 params->name = name;
52 params->numThreads = numThreads;
53 params->max_insts_any_thread = 0;
54 params->max_insts_all_threads = 0;
55 params->max_loads_any_thread = 0;
56 params->max_loads_all_threads = 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

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

49{
50 DummyChecker::Params *params = new DummyChecker::Params();
51 params->name = name;
52 params->numThreads = numThreads;
53 params->max_insts_any_thread = 0;
54 params->max_insts_all_threads = 0;
55 params->max_loads_any_thread = 0;
56 params->max_loads_all_threads = 0;
57 params->clock = clock;
57 params->clk_domain = clk_domain;
58 // Hack to touch all parameters. Consider not deriving Checker
59 // from BaseCPU..it's not really a CPU in the end.
60 Counter temp;
61 temp = max_insts_any_thread;
62 temp = max_insts_all_threads;
63 temp = max_loads_any_thread;
64 temp = max_loads_all_threads;
65 temp++;

--- 16 unchanged lines hidden ---
58 // Hack to touch all parameters. Consider not deriving Checker
59 // from BaseCPU..it's not really a CPU in the end.
60 Counter temp;
61 temp = max_insts_any_thread;
62 temp = max_insts_all_threads;
63 temp = max_loads_any_thread;
64 temp = max_loads_all_threads;
65 temp++;

--- 16 unchanged lines hidden ---