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

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

91 return comm;
92}
93
94StackTrace::StackTrace()
95 : tc(0), stack(64)
96{
97}
98
1/*
2 * Copyright (c) 2004-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;

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

91 return comm;
92}
93
94StackTrace::StackTrace()
95 : tc(0), stack(64)
96{
97}
98
99StackTrace::StackTrace(ThreadContext *_tc, StaticInstPtr inst)
99StackTrace::StackTrace(ThreadContext *_tc, const StaticInstPtr &inst)
100 : tc(0), stack(64)
101{
102 trace(_tc, inst);
103}
104
105StackTrace::~StackTrace()
106{
107}

--- 126 unchanged lines hidden ---
100 : tc(0), stack(64)
101{
102 trace(_tc, inst);
103}
104
105StackTrace::~StackTrace()
106{
107}

--- 126 unchanged lines hidden ---