debug.cc revision 11164
12SN/A/*
21762SN/A * Copyright (c) 2003-2005 The Regents of The University of Michigan
32SN/A * All rights reserved.
42SN/A *
52SN/A * Redistribution and use in source and binary forms, with or without
62SN/A * modification, are permitted provided that the following conditions are
72SN/A * met: redistributions of source code must retain the above copyright
82SN/A * notice, this list of conditions and the following disclaimer;
92SN/A * redistributions in binary form must reproduce the above copyright
102SN/A * notice, this list of conditions and the following disclaimer in the
112SN/A * documentation and/or other materials provided with the distribution;
122SN/A * neither the name of the copyright holders nor the names of its
132SN/A * contributors may be used to endorse or promote products derived from
142SN/A * this software without specific prior written permission.
152SN/A *
162SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
172SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
182SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
192SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
202SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
212SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
222SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
232SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
242SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
252SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
262SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272665Ssaidi@eecs.umich.edu *
282665Ssaidi@eecs.umich.edu * Authors: Nathan Binkert
292665Ssaidi@eecs.umich.edu *          Steve Reinhardt
302SN/A */
312SN/A
322SN/A#include <string>
332SN/A#include <vector>
342SN/A
355882Snate@binkert.org#include "base/debug.hh"
3656SN/A#include "sim/debug.hh"
379356Snilay@cs.wisc.edu#include "sim/eventq_impl.hh"
389983Sstever@gmail.com#include "sim/global_event.hh"
3956SN/A#include "sim/sim_events.hh"
408278SAli.Saidi@ARM.com#include "sim/sim_exit.hh"
4111157SDylan.Johnson@ARM.com#include "cpu/pc_event.hh"
4211157SDylan.Johnson@ARM.com#include "sim/system.hh"
432SN/A
442SN/Ausing namespace std;
452SN/A
462SN/A//
472SN/A// Debug event: place a breakpoint on the process function and
482SN/A// schedule the event to break at a particular cycle
492SN/A//
509983Sstever@gmail.comstruct DebugBreakEvent : public GlobalEvent
512SN/A{
529983Sstever@gmail.com    DebugBreakEvent(Tick when);
535543Ssaidi@eecs.umich.edu    void process();     // process event
545336Shines@cs.fsu.edu    virtual const char *description() const;
552SN/A};
562SN/A
572SN/A//
582SN/A// constructor: schedule at specified time
592SN/A//
609983Sstever@gmail.comDebugBreakEvent::DebugBreakEvent(Tick when)
619983Sstever@gmail.com    : GlobalEvent(when, Debug_Break_Pri, AutoDelete)
622SN/A{
632SN/A}
642SN/A
652SN/A//
662SN/A// handle debug event: set debugger breakpoint on this function
672SN/A//
682SN/Avoid
692SN/ADebugBreakEvent::process()
702SN/A{
718231Snate@binkert.org    Debug::breakpoint();
722SN/A}
732SN/A
742SN/A
752SN/Aconst char *
765336Shines@cs.fsu.eduDebugBreakEvent::description() const
772SN/A{
788231Snate@binkert.org    return "debug breakpoint";
792SN/A}
802SN/A
812SN/A//
822SN/A// handy function to schedule DebugBreakEvent on main event queue
832SN/A// (callable from debugger)
842SN/A//
853645Sbinkertn@umich.eduvoid
869960Sandreas.hansson@arm.comschedBreak(Tick when)
872SN/A{
889983Sstever@gmail.com    new DebugBreakEvent(when);
895606Snate@binkert.org    warn("need to stop all queues");
902SN/A}
912SN/A
9211157SDylan.Johnson@ARM.comvoid
9311164SDylan.Johnson@ARM.comschedRelBreak(Tick delta)
9411164SDylan.Johnson@ARM.com{
9511164SDylan.Johnson@ARM.com    schedBreak(curTick() + delta);
9611164SDylan.Johnson@ARM.com}
9711164SDylan.Johnson@ARM.com
9811164SDylan.Johnson@ARM.comvoid
9911157SDylan.Johnson@ARM.combreakAtKernelFunction(const char* funcName)
10011157SDylan.Johnson@ARM.com{
10111157SDylan.Johnson@ARM.com    System* curSystem = System::systemList[0];
10211157SDylan.Johnson@ARM.com    curSystem->addKernelFuncEvent<BreakPCEvent>(funcName,
10311157SDylan.Johnson@ARM.com                                                "GDB scheduled break", true);
10411157SDylan.Johnson@ARM.com}
10511157SDylan.Johnson@ARM.com
1068278SAli.Saidi@ARM.com///
1078278SAli.Saidi@ARM.com/// Function to cause the simulator to take a checkpoint from the debugger
1088278SAli.Saidi@ARM.com///
1098278SAli.Saidi@ARM.comvoid
1108278SAli.Saidi@ARM.comtakeCheckpoint(Tick when)
1118278SAli.Saidi@ARM.com{
1128278SAli.Saidi@ARM.com    if (!when)
1138278SAli.Saidi@ARM.com        when = curTick() + 1;
1148278SAli.Saidi@ARM.com    exitSimLoop("checkpoint", 0, when, 0);
1158278SAli.Saidi@ARM.com}
1168278SAli.Saidi@ARM.com
1173645Sbinkertn@umich.eduvoid
1183645Sbinkertn@umich.edueventqDump()
1192SN/A{
1209983Sstever@gmail.com    for (uint32_t i = 0; i < numMainEventQueues; ++i) {
1219983Sstever@gmail.com        mainEventQueue[i]->dump();
1229983Sstever@gmail.com    }
1232SN/A}
1242SN/A
1255512SMichael.Adler@intel.comint remote_gdb_base_port = 7000;
1265512SMichael.Adler@intel.com
1275512SMichael.Adler@intel.comint
1285512SMichael.Adler@intel.comgetRemoteGDBPort()
1295512SMichael.Adler@intel.com{
1305512SMichael.Adler@intel.com    return remote_gdb_base_port;
1315512SMichael.Adler@intel.com}
1325512SMichael.Adler@intel.com
1335512SMichael.Adler@intel.com// Set remote GDB base port.  0 means disable remote GDB.
1345512SMichael.Adler@intel.com// Callable from python.
1355512SMichael.Adler@intel.comvoid
1365512SMichael.Adler@intel.comsetRemoteGDBPort(int port)
1375512SMichael.Adler@intel.com{
1385512SMichael.Adler@intel.com    remote_gdb_base_port = port;
1395512SMichael.Adler@intel.com}
1405512SMichael.Adler@intel.com
141