stacktrace.cc (10279:faa9dfc465ef) stacktrace.cc (10417:710ee116eb68)
1/*
2 * Copyright (c) 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;

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

64}
65
66StackTrace::StackTrace()
67 : tc(0), stack(64)
68{
69 panic("StackTrace constructor not implemented.\n");
70}
71
1/*
2 * Copyright (c) 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;

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

64}
65
66StackTrace::StackTrace()
67 : tc(0), stack(64)
68{
69 panic("StackTrace constructor not implemented.\n");
70}
71
72StackTrace::StackTrace(ThreadContext *_tc, StaticInstPtr inst)
72StackTrace::StackTrace(ThreadContext *_tc, const StaticInstPtr &inst)
73 : tc(0), stack(64)
74{
75 panic("StackTrace constructor not implemented.\n");
76}
77
78StackTrace::~StackTrace()
79{
80 panic("StackTrace destructor not implemented.\n");

--- 50 unchanged lines hidden ---
73 : tc(0), stack(64)
74{
75 panic("StackTrace constructor not implemented.\n");
76}
77
78StackTrace::~StackTrace()
79{
80 panic("StackTrace destructor not implemented.\n");

--- 50 unchanged lines hidden ---