checker.cc (9340:40f8c6a8f38d) 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

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

77 temp = max_loads_all_threads;
78 temp++;
79 Tick temp2 = progress_interval;
80 params->progress_interval = 0;
81 temp2++;
82
83 params->itb = itb;
84 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

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

77 temp = max_loads_all_threads;
78 temp++;
79 Tick temp2 = progress_interval;
80 params->progress_interval = 0;
81 temp2++;
82
83 params->itb = itb;
84 params->dtb = dtb;
85 params->isa = isa;
85 params->system = system;
86 params->cpu_id = cpu_id;
87 params->profile = profile;
88 params->interrupts = NULL;
89 params->workload = workload;
90
91 O3Checker *cpu = new O3Checker(params);
92 return cpu;
93}
86 params->system = system;
87 params->cpu_id = cpu_id;
88 params->profile = profile;
89 params->interrupts = NULL;
90 params->workload = workload;
91
92 O3Checker *cpu = new O3Checker(params);
93 return cpu;
94}