Deleted Added
sdiff udiff text old ( 11793:ef606668d247 ) new ( 14298:e1c8c253ce95 )
full compact
1/*
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
44DummyChecker *
45DummyCheckerParams::create()
46{
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");
53
54 return new DummyChecker(this);
55}