events.cc revision 3535
12212SN/A/* 22212SN/A * Copyright (c) 2004-2006 The Regents of The University of Michigan 32212SN/A * All rights reserved. 42212SN/A * 52212SN/A * Redistribution and use in source and binary forms, with or without 62212SN/A * modification, are permitted provided that the following conditions are 72212SN/A * met: redistributions of source code must retain the above copyright 82212SN/A * notice, this list of conditions and the following disclaimer; 92212SN/A * redistributions in binary form must reproduce the above copyright 102212SN/A * notice, this list of conditions and the following disclaimer in the 112212SN/A * documentation and/or other materials provided with the distribution; 122212SN/A * neither the name of the copyright holders nor the names of its 132212SN/A * contributors may be used to endorse or promote products derived from 142212SN/A * this software without specific prior written permission. 152212SN/A * 162212SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 172212SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 182212SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 192212SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 202212SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 212212SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 222212SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 232212SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 242212SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 252212SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 262212SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 272665Ssaidi@eecs.umich.edu * 282760Sbinkertn@umich.edu * Authors: Nathan Binkert 292760Sbinkertn@umich.edu * Ali Saidi 302212SN/A */ 312212SN/A 322212SN/A#include "arch/arguments.hh" 332212SN/A#include "base/trace.hh" 342680Sktlim@umich.edu#include "cpu/thread_context.hh" 352212SN/A#include "kern/linux/events.hh" 362212SN/A#include "kern/linux/printk.hh" 372212SN/A#include "kern/system_events.hh" 382235SN/A#include "sim/system.hh" 392212SN/A 402212SN/A 412212SN/Anamespace Linux { 422212SN/A 432212SN/Avoid 442680Sktlim@umich.eduDebugPrintkEvent::process(ThreadContext *tc) 452212SN/A{ 462212SN/A if (DTRACE(DebugPrintf)) { 472212SN/A if (!raw) { 482680Sktlim@umich.edu StringWrap name(tc->getSystemPtr()->name() + ".dprintk"); 492212SN/A DPRINTFN(""); 502212SN/A } 512212SN/A 523535Sgblack@eecs.umich.edu TheISA::Arguments args(tc); 532212SN/A Printk(args); 542680Sktlim@umich.edu SkipFuncEvent::process(tc); 552212SN/A } 562212SN/A} 572212SN/A 582212SN/A} // namespace linux 59