stacktrace.cc (8852:c744483edfcf) 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;

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

116 return comm;
117 }
118
119 StackTrace::StackTrace()
120 : tc(0), stack(64)
121 {
122 }
123
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;

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

116 return comm;
117 }
118
119 StackTrace::StackTrace()
120 : tc(0), stack(64)
121 {
122 }
123
124 StackTrace::StackTrace(ThreadContext *_tc, StaticInstPtr inst)
124 StackTrace::StackTrace(ThreadContext *_tc, const StaticInstPtr &inst)
125 : tc(0), stack(64)
126 {
127 trace(_tc, inst);
128 }
129
130 StackTrace::~StackTrace()
131 {
132 }

--- 89 unchanged lines hidden ---
125 : tc(0), stack(64)
126 {
127 trace(_tc, inst);
128 }
129
130 StackTrace::~StackTrace()
131 {
132 }

--- 89 unchanged lines hidden ---