debug.cc revision 8231
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"
3956SN/A#include "sim/eventq.hh"
4056SN/A#include "sim/sim_events.hh"
412SN/A
422SN/Ausing namespace std;
432SN/A
442SN/A//
452SN/A// Debug event: place a breakpoint on the process function and
462SN/A// schedule the event to break at a particular cycle
472SN/A//
485606Snate@binkert.orgstruct DebugBreakEvent : public Event
492SN/A{
505606Snate@binkert.org    DebugBreakEvent();
515543Ssaidi@eecs.umich.edu    void process();     // process event
525336Shines@cs.fsu.edu    virtual const char *description() const;
532SN/A};
542SN/A
552SN/A//
562SN/A// constructor: schedule at specified time
572SN/A//
585606Snate@binkert.orgDebugBreakEvent::DebugBreakEvent()
595606Snate@binkert.org    : Event(Debug_Break_Pri)
602SN/A{
61381SN/A    setFlags(AutoDelete);
622SN/A}
632SN/A
642SN/A//
652SN/A// handle debug event: set debugger breakpoint on this function
662SN/A//
672SN/Avoid
682SN/ADebugBreakEvent::process()
692SN/A{
708231Snate@binkert.org    Debug::breakpoint();
712SN/A}
722SN/A
732SN/A
742SN/Aconst char *
755336Shines@cs.fsu.eduDebugBreakEvent::description() const
762SN/A{
778231Snate@binkert.org    return "debug breakpoint";
782SN/A}
792SN/A
802SN/A//
812SN/A// handy function to schedule DebugBreakEvent on main event queue
822SN/A// (callable from debugger)
832SN/A//
843645Sbinkertn@umich.eduvoid
853645Sbinkertn@umich.eduschedBreakCycle(Tick when)
862SN/A{
875606Snate@binkert.org    mainEventQueue.schedule(new DebugBreakEvent, when);
885606Snate@binkert.org    warn("need to stop all queues");
892SN/A}
902SN/A
913645Sbinkertn@umich.eduvoid
923645Sbinkertn@umich.edueventqDump()
932SN/A{
942SN/A    mainEventQueue.dump();
955606Snate@binkert.org    warn("need to dump all queues");
962SN/A}
972SN/A
985619Snate@binkert.orgvoid
995619Snate@binkert.orgpy_interact()
1005619Snate@binkert.org{
1015619Snate@binkert.org    PyObject *globals;
1025619Snate@binkert.org    PyObject *locals;
1035619Snate@binkert.org
1045619Snate@binkert.org    globals = PyEval_GetGlobals();
1055619Snate@binkert.org    Py_INCREF(globals);
1065619Snate@binkert.org    locals = PyDict_New();
1075619Snate@binkert.org    PyRun_String("import code", Py_file_input, globals, locals);
1085619Snate@binkert.org    PyRun_String("code.interact(local=globals())", Py_file_input,
1095619Snate@binkert.org                 globals, locals);
1105619Snate@binkert.org    Py_DECREF(globals);
1115619Snate@binkert.org    Py_DECREF(locals);
1125619Snate@binkert.org}
1135512SMichael.Adler@intel.com
1145512SMichael.Adler@intel.comint remote_gdb_base_port = 7000;
1155512SMichael.Adler@intel.com
1165512SMichael.Adler@intel.comint
1175512SMichael.Adler@intel.comgetRemoteGDBPort()
1185512SMichael.Adler@intel.com{
1195512SMichael.Adler@intel.com    return remote_gdb_base_port;
1205512SMichael.Adler@intel.com}
1215512SMichael.Adler@intel.com
1225512SMichael.Adler@intel.com// Set remote GDB base port.  0 means disable remote GDB.
1235512SMichael.Adler@intel.com// Callable from python.
1245512SMichael.Adler@intel.comvoid
1255512SMichael.Adler@intel.comsetRemoteGDBPort(int port)
1265512SMichael.Adler@intel.com{
1275512SMichael.Adler@intel.com    remote_gdb_base_port = port;
1285512SMichael.Adler@intel.com}
1295512SMichael.Adler@intel.com
130