Deleted Added
sdiff udiff text old ( 3570:aacc19068f25 ) new ( 6214:1ec0ec8933ae )
full compact
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;

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

30
31#ifndef __CPU_PROFILE_HH__
32#define __CPU_PROFILE_HH__
33
34#include <map>
35
36#include "arch/stacktrace.hh"
37#include "cpu/static_inst.hh"
38#include "base/types.hh"
39
40class ThreadContext;
41
42class ProfileNode
43{
44 private:
45 friend class FunctionProfile;
46

--- 45 unchanged lines hidden ---