src/share/vm/runtime/fprofiler.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hsx-gc Sdiff src/share/vm/runtime

src/share/vm/runtime/fprofiler.hpp

Print this page
rev 3849 : imported patch thread.inline.hpp


   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_RUNTIME_FPROFILER_HPP
  26 #define SHARE_VM_RUNTIME_FPROFILER_HPP
  27 
  28 #include "runtime/timer.hpp"
  29 #ifdef TARGET_OS_FAMILY_linux
  30 # include "thread_linux.inline.hpp"
  31 #endif
  32 #ifdef TARGET_OS_FAMILY_solaris
  33 # include "thread_solaris.inline.hpp"
  34 #endif
  35 #ifdef TARGET_OS_FAMILY_windows
  36 # include "thread_windows.inline.hpp"
  37 #endif
  38 #ifdef TARGET_OS_FAMILY_bsd
  39 # include "thread_bsd.inline.hpp"
  40 #endif
  41 
  42 // a simple flat profiler for Java
  43 
  44 
  45 // Forward declaration of classes defined in this header file
  46 class ThreadProfiler;
  47 class ThreadProfilerMark;
  48 class FlatProfiler;
  49 class IntervalData;
  50 
  51 // Declarations of classes defined only in the implementation.
  52 class ProfilerNode;
  53 class FlatProfilerTask;
  54 
  55 enum TickPosition {
  56   tp_code,
  57   tp_native
  58 };
  59 
  60 // One of these guys is constructed as we enter interesting regions




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_RUNTIME_FPROFILER_HPP
  26 #define SHARE_VM_RUNTIME_FPROFILER_HPP
  27 
  28 #include "runtime/timer.hpp"












  29 
  30 // a simple flat profiler for Java
  31 
  32 
  33 // Forward declaration of classes defined in this header file
  34 class ThreadProfiler;
  35 class ThreadProfilerMark;
  36 class FlatProfiler;
  37 class IntervalData;
  38 
  39 // Declarations of classes defined only in the implementation.
  40 class ProfilerNode;
  41 class FlatProfilerTask;
  42 
  43 enum TickPosition {
  44   tp_code,
  45   tp_native
  46 };
  47 
  48 // One of these guys is constructed as we enter interesting regions


src/share/vm/runtime/fprofiler.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File