debug.cc revision 5619
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#include <sys/types.h>
342SN/A#include <signal.h>
352SN/A#include <unistd.h>
362SN/A
372SN/A#include <string>
382SN/A#include <vector>
392SN/A
4056SN/A#include "sim/debug.hh"
4156SN/A#include "sim/eventq.hh"
4256SN/A#include "sim/sim_events.hh"
432SN/A
442SN/Ausing namespace std;
452SN/A
462SN/Avoid
472SN/Adebug_break()
482SN/A{
491252SN/A#ifndef NDEBUG
502SN/A    kill(getpid(), SIGTRAP);
511252SN/A#else
521252SN/A    cprintf("debug_break suppressed, compiled with NDEBUG\n");
531252SN/A#endif
542SN/A}
552SN/A
562SN/A//
572SN/A// Debug event: place a breakpoint on the process function and
582SN/A// schedule the event to break at a particular cycle
592SN/A//
605606Snate@binkert.orgstruct DebugBreakEvent : public Event
612SN/A{
625606Snate@binkert.org    DebugBreakEvent();
635543Ssaidi@eecs.umich.edu    void process();     // process event
645336Shines@cs.fsu.edu    virtual const char *description() const;
652SN/A};
662SN/A
672SN/A//
682SN/A// constructor: schedule at specified time
692SN/A//
705606Snate@binkert.orgDebugBreakEvent::DebugBreakEvent()
715606Snate@binkert.org    : Event(Debug_Break_Pri)
722SN/A{
73381SN/A    setFlags(AutoDelete);
742SN/A}
752SN/A
762SN/A//
772SN/A// handle debug event: set debugger breakpoint on this function
782SN/A//
792SN/Avoid
802SN/ADebugBreakEvent::process()
812SN/A{
822SN/A    debug_break();
832SN/A}
842SN/A
852SN/A
862SN/Aconst char *
875336Shines@cs.fsu.eduDebugBreakEvent::description() const
882SN/A{
892SN/A    return "debug break";
902SN/A}
912SN/A
922SN/A//
932SN/A// handy function to schedule DebugBreakEvent on main event queue
942SN/A// (callable from debugger)
952SN/A//
963645Sbinkertn@umich.eduvoid
973645Sbinkertn@umich.eduschedBreakCycle(Tick when)
982SN/A{
995606Snate@binkert.org    mainEventQueue.schedule(new DebugBreakEvent, when);
1005606Snate@binkert.org    warn("need to stop all queues");
1012SN/A}
1022SN/A
1033645Sbinkertn@umich.eduvoid
1043645Sbinkertn@umich.edueventqDump()
1052SN/A{
1062SN/A    mainEventQueue.dump();
1075606Snate@binkert.org    warn("need to dump all queues");
1082SN/A}
1092SN/A
1105619Snate@binkert.orgvoid
1115619Snate@binkert.orgpy_interact()
1125619Snate@binkert.org{
1135619Snate@binkert.org    PyObject *globals;
1145619Snate@binkert.org    PyObject *locals;
1155619Snate@binkert.org
1165619Snate@binkert.org    globals = PyEval_GetGlobals();
1175619Snate@binkert.org    Py_INCREF(globals);
1185619Snate@binkert.org    locals = PyDict_New();
1195619Snate@binkert.org    PyRun_String("import code", Py_file_input, globals, locals);
1205619Snate@binkert.org    PyRun_String("code.interact(local=globals())", Py_file_input,
1215619Snate@binkert.org                 globals, locals);
1225619Snate@binkert.org    Py_DECREF(globals);
1235619Snate@binkert.org    Py_DECREF(locals);
1245619Snate@binkert.org}
1255512SMichael.Adler@intel.com
1265512SMichael.Adler@intel.comint remote_gdb_base_port = 7000;
1275512SMichael.Adler@intel.com
1285512SMichael.Adler@intel.comint
1295512SMichael.Adler@intel.comgetRemoteGDBPort()
1305512SMichael.Adler@intel.com{
1315512SMichael.Adler@intel.com    return remote_gdb_base_port;
1325512SMichael.Adler@intel.com}
1335512SMichael.Adler@intel.com
1345512SMichael.Adler@intel.com// Set remote GDB base port.  0 means disable remote GDB.
1355512SMichael.Adler@intel.com// Callable from python.
1365512SMichael.Adler@intel.comvoid
1375512SMichael.Adler@intel.comsetRemoteGDBPort(int port)
1385512SMichael.Adler@intel.com{
1395512SMichael.Adler@intel.com    remote_gdb_base_port = port;
1405512SMichael.Adler@intel.com}
1415512SMichael.Adler@intel.com
142