src/share/vm/services/memTracker.cpp

Print this page
rev 6521 : 8044775: Improve usage of umbrella header atomic.inline.hpp.


   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 #include "precompiled.hpp"
  25 
  26 #include "oops/instanceKlass.hpp"
  27 #include "runtime/atomic.hpp"
  28 #include "runtime/interfaceSupport.hpp"
  29 #include "runtime/mutexLocker.hpp"
  30 #include "runtime/safepoint.hpp"
  31 #include "runtime/threadCritical.hpp"
  32 #include "runtime/thread.inline.hpp"
  33 #include "runtime/vm_operations.hpp"
  34 #include "services/memPtr.hpp"
  35 #include "services/memReporter.hpp"
  36 #include "services/memTracker.hpp"
  37 #include "utilities/decoder.hpp"
  38 #include "utilities/defaultStream.hpp"
  39 #include "utilities/globalDefinitions.hpp"
  40 
  41 bool NMT_track_callsite = false;
  42 
  43 // walk all 'known' threads at NMT sync point, and collect their recorders
  44 void SyncThreadRecorderClosure::do_thread(Thread* thread) {
  45   assert(SafepointSynchronize::is_at_safepoint(), "Safepoint required");
  46   if (thread->is_Java_thread()) {
  47     JavaThread* javaThread = (JavaThread*)thread;




   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 #include "precompiled.hpp"
  25 
  26 #include "oops/instanceKlass.hpp"
  27 #include "runtime/atomic.inline.hpp"
  28 #include "runtime/interfaceSupport.hpp"
  29 #include "runtime/mutexLocker.hpp"
  30 #include "runtime/safepoint.hpp"
  31 #include "runtime/threadCritical.hpp"
  32 #include "runtime/thread.inline.hpp"
  33 #include "runtime/vm_operations.hpp"
  34 #include "services/memPtr.hpp"
  35 #include "services/memReporter.hpp"
  36 #include "services/memTracker.hpp"
  37 #include "utilities/decoder.hpp"
  38 #include "utilities/defaultStream.hpp"
  39 #include "utilities/globalDefinitions.hpp"
  40 
  41 bool NMT_track_callsite = false;
  42 
  43 // walk all 'known' threads at NMT sync point, and collect their recorders
  44 void SyncThreadRecorderClosure::do_thread(Thread* thread) {
  45   assert(SafepointSynchronize::is_at_safepoint(), "Safepoint required");
  46   if (thread->is_Java_thread()) {
  47     JavaThread* javaThread = (JavaThread*)thread;