stacktrace.cc (9550:e0e2c8f83d08) 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;

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

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

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

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

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

--- 230 unchanged lines hidden ---