dummy_checker.cc (9340:40f8c6a8f38d) dummy_checker.cc (9384:877293183bdf)
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

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

64 temp = max_loads_all_threads;
65 temp++;
66 Tick temp2 = progress_interval;
67 params->progress_interval = 0;
68 temp2++;
69
70 params->itb = itb;
71 params->dtb = dtb;
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

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

64 temp = max_loads_all_threads;
65 temp++;
66 Tick temp2 = progress_interval;
67 params->progress_interval = 0;
68 temp2++;
69
70 params->itb = itb;
71 params->dtb = dtb;
72 params->isa = isa;
72 params->system = system;
73 params->cpu_id = cpu_id;
74 params->profile = profile;
75 params->interrupts = NULL;
76 params->workload = workload;
77
78 DummyChecker *cpu = new DummyChecker(params);
79 return cpu;
80}
73 params->system = system;
74 params->cpu_id = cpu_id;
75 params->profile = profile;
76 params->interrupts = NULL;
77 params->workload = workload;
78
79 DummyChecker *cpu = new DummyChecker(params);
80 return cpu;
81}