src/share/vm/utilities/events.cpp

Print this page


   1 /*
   2  * Copyright (c) 1997, 2006, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   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 #include "incls/_precompiled.incl"
  26 #include "incls/_events.cpp.incl"














  27 
  28 
  29 #ifndef PRODUCT
  30 
  31 ////////////////////////////////////////////////////////////////////////////
  32 // Event
  33 
  34 typedef u4 EventID;
  35 
  36 class Event VALUE_OBJ_CLASS_SPEC  {
  37  private:
  38   jlong       _time_tick;
  39   intx        _thread_id;
  40   const char* _format;
  41   int         _indent;
  42   intptr_t    _arg_1;
  43   intptr_t    _arg_2;
  44   intptr_t    _arg_3;
  45 
  46   // only EventBuffer::add_event() can assign event id


   1 /*
   2  * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   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 #include "precompiled.hpp"
  26 #include "memory/allocation.inline.hpp"
  27 #include "runtime/mutexLocker.hpp"
  28 #include "runtime/osThread.hpp"
  29 #include "runtime/threadLocalStorage.hpp"
  30 #include "runtime/timer.hpp"
  31 #include "utilities/events.hpp"
  32 #ifdef TARGET_OS_FAMILY_linux
  33 # include "thread_linux.inline.hpp"
  34 #endif
  35 #ifdef TARGET_OS_FAMILY_solaris
  36 # include "thread_solaris.inline.hpp"
  37 #endif
  38 #ifdef TARGET_OS_FAMILY_windows
  39 # include "thread_windows.inline.hpp"
  40 #endif
  41 
  42 
  43 #ifndef PRODUCT
  44 
  45 ////////////////////////////////////////////////////////////////////////////
  46 // Event
  47 
  48 typedef u4 EventID;
  49 
  50 class Event VALUE_OBJ_CLASS_SPEC  {
  51  private:
  52   jlong       _time_tick;
  53   intx        _thread_id;
  54   const char* _format;
  55   int         _indent;
  56   intptr_t    _arg_1;
  57   intptr_t    _arg_2;
  58   intptr_t    _arg_3;
  59 
  60   // only EventBuffer::add_event() can assign event id