cpu.cc (8809:bb10807da889) cpu.cc (8818:8f354c5a1634)
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

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

79
80 exitOnError = p->exitOnError;
81 warnOnlyOnLoadError = p->warnOnlyOnLoadError;
82 itb = p->itb;
83 dtb = p->dtb;
84 systemPtr = NULL;
85 workload = p->workload;
86 // XXX: This is a hack to get this to work some
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

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

79
80 exitOnError = p->exitOnError;
81 warnOnlyOnLoadError = p->warnOnlyOnLoadError;
82 itb = p->itb;
83 dtb = p->dtb;
84 systemPtr = NULL;
85 workload = p->workload;
86 // XXX: This is a hack to get this to work some
87 thread = new SimpleThread(this, /* thread_num */ 0, workload[0], itb, dtb);
87 thread = new SimpleThread(this, /* thread_num */ 0,
88 workload.size() ? workload[0] : NULL, itb, dtb);
88
89 tc = thread->getTC();
90 threadContexts.push_back(tc);
91
92 updateOnError = true;
93}
94
95CheckerCPU::~CheckerCPU()

--- 252 unchanged lines hidden ---
89
90 tc = thread->getTC();
91 threadContexts.push_back(tc);
92
93 updateOnError = true;
94}
95
96CheckerCPU::~CheckerCPU()

--- 252 unchanged lines hidden ---