debug.cc revision 9983
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
325619Snate@binkert.org#include <Python.h>
332SN/A
342SN/A#include <string>
352SN/A#include <vector>
362SN/A
375882Snate@binkert.org#include "base/debug.hh"
3856SN/A#include "sim/debug.hh"
399356Snilay@cs.wisc.edu#include "sim/eventq_impl.hh"
409983Sstever@gmail.com#include "sim/global_event.hh"
4156SN/A#include "sim/sim_events.hh"
428278SAli.Saidi@ARM.com#include "sim/sim_exit.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
928278SAli.Saidi@ARM.com///
938278SAli.Saidi@ARM.com/// Function to cause the simulator to take a checkpoint from the debugger
948278SAli.Saidi@ARM.com///
958278SAli.Saidi@ARM.comvoid
968278SAli.Saidi@ARM.comtakeCheckpoint(Tick when)
978278SAli.Saidi@ARM.com{
988278SAli.Saidi@ARM.com    if (!when)
998278SAli.Saidi@ARM.com        when = curTick() + 1;
1008278SAli.Saidi@ARM.com    exitSimLoop("checkpoint", 0, when, 0);
1018278SAli.Saidi@ARM.com}
1028278SAli.Saidi@ARM.com
1033645Sbinkertn@umich.eduvoid
1043645Sbinkertn@umich.edueventqDump()
1052SN/A{
1069983Sstever@gmail.com    for (uint32_t i = 0; i < numMainEventQueues; ++i) {
1079983Sstever@gmail.com        mainEventQueue[i]->dump();
1089983Sstever@gmail.com    }
1092SN/A}
1102SN/A
1115619Snate@binkert.orgvoid
1125619Snate@binkert.orgpy_interact()
1135619Snate@binkert.org{
1145619Snate@binkert.org    PyObject *globals;
1155619Snate@binkert.org    PyObject *locals;
1165619Snate@binkert.org
1175619Snate@binkert.org    globals = PyEval_GetGlobals();
1185619Snate@binkert.org    Py_INCREF(globals);
1195619Snate@binkert.org    locals = PyDict_New();
1205619Snate@binkert.org    PyRun_String("import code", Py_file_input, globals, locals);
1215619Snate@binkert.org    PyRun_String("code.interact(local=globals())", Py_file_input,
1225619Snate@binkert.org                 globals, locals);
1235619Snate@binkert.org    Py_DECREF(globals);
1245619Snate@binkert.org    Py_DECREF(locals);
1255619Snate@binkert.org}
1265512SMichael.Adler@intel.com
1275512SMichael.Adler@intel.comint remote_gdb_base_port = 7000;
1285512SMichael.Adler@intel.com
1295512SMichael.Adler@intel.comint
1305512SMichael.Adler@intel.comgetRemoteGDBPort()
1315512SMichael.Adler@intel.com{
1325512SMichael.Adler@intel.com    return remote_gdb_base_port;
1335512SMichael.Adler@intel.com}
1345512SMichael.Adler@intel.com
1355512SMichael.Adler@intel.com// Set remote GDB base port.  0 means disable remote GDB.
1365512SMichael.Adler@intel.com// Callable from python.
1375512SMichael.Adler@intel.comvoid
1385512SMichael.Adler@intel.comsetRemoteGDBPort(int port)
1395512SMichael.Adler@intel.com{
1405512SMichael.Adler@intel.com    remote_gdb_base_port = port;
1415512SMichael.Adler@intel.com}
1425512SMichael.Adler@intel.com
143