faults.cc (10417:710ee116eb68) faults.cc (10664:61a0b02aa800)
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 29 unchanged lines hidden (view full) ---

38#include "sim/faults.hh"
39#include "sim/full_system.hh"
40#include "sim/process.hh"
41
42void FaultBase::invoke(ThreadContext * tc, const StaticInstPtr &inst)
43{
44 if (FullSystem) {
45 DPRINTF(Fault, "Fault %s at PC: %s\n", name(), tc->pcState());
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 29 unchanged lines hidden (view full) ---

38#include "sim/faults.hh"
39#include "sim/full_system.hh"
40#include "sim/process.hh"
41
42void FaultBase::invoke(ThreadContext * tc, const StaticInstPtr &inst)
43{
44 if (FullSystem) {
45 DPRINTF(Fault, "Fault %s at PC: %s\n", name(), tc->pcState());
46 assert(!tc->misspeculating());
47 } else {
48 panic("fault (%s) detected @ PC %s", name(), tc->pcState());
49 }
50}
51
52void UnimpFault::invoke(ThreadContext * tc, const StaticInstPtr &inst)
53{
54 panic("Unimpfault: %s\n", panicStr.c_str());

--- 23 unchanged lines hidden ---
46 } else {
47 panic("fault (%s) detected @ PC %s", name(), tc->pcState());
48 }
49}
50
51void UnimpFault::invoke(ThreadContext * tc, const StaticInstPtr &inst)
52{
53 panic("Unimpfault: %s\n", panicStr.c_str());

--- 23 unchanged lines hidden ---