hotspot/src/share/vm/memory/metaspaceTracer.cpp
author ehelin
Thu, 20 Mar 2014 15:53:17 +0100
changeset 23473 d94be023b00d
parent 23469 0a4d02776968
child 42639 762117d57d05
permissions -rw-r--r--
8037962: metaspaceTracer.cpp misses a symbol Reviewed-by: tschatzl, mgerdin Contributed-by: goetz.lindenmaier@sap.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
23465
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
     1
/*
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
     2
 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
     4
 *
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
     7
 * published by the Free Software Foundation.
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
     8
 *
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
    13
 * accompanied this code).
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
    14
 *
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
    18
 *
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
    21
 * questions.
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
    22
 *
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
    23
 */
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
    24
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
    25
#include "precompiled.hpp"
23468
6bb416a59349 8036699: Add trace event when a metaspace allocation fails
ehelin
parents: 23465
diff changeset
    26
#include "classfile/classLoaderData.hpp"
23465
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
    27
#include "memory/metaspaceTracer.hpp"
23473
d94be023b00d 8037962: metaspaceTracer.cpp misses a symbol
ehelin
parents: 23469
diff changeset
    28
#include "oops/oop.inline.hpp"
23465
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
    29
#include "trace/tracing.hpp"
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
    30
#include "trace/traceBackend.hpp"
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
    31
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
    32
void MetaspaceTracer::report_gc_threshold(size_t old_val,
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
    33
                                          size_t new_val,
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
    34
                                          MetaspaceGCThresholdUpdater::Type updater) const {
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
    35
  EventMetaspaceGCThreshold event;
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
    36
  if (event.should_commit()) {
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
    37
    event.set_oldValue(old_val);
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
    38
    event.set_newValue(new_val);
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
    39
    event.set_updater((u1)updater);
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
    40
    event.commit();
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
    41
  }
14790e4d53ec 8036698: Add trace event for updates to metaspace gc threshold
ehelin
parents:
diff changeset
    42
}
23468
6bb416a59349 8036699: Add trace event when a metaspace allocation fails
ehelin
parents: 23465
diff changeset
    43
6bb416a59349 8036699: Add trace event when a metaspace allocation fails
ehelin
parents: 23465
diff changeset
    44
void MetaspaceTracer::report_metaspace_allocation_failure(ClassLoaderData *cld,
6bb416a59349 8036699: Add trace event when a metaspace allocation fails
ehelin
parents: 23465
diff changeset
    45
                                                          size_t word_size,
6bb416a59349 8036699: Add trace event when a metaspace allocation fails
ehelin
parents: 23465
diff changeset
    46
                                                          MetaspaceObj::Type objtype,
6bb416a59349 8036699: Add trace event when a metaspace allocation fails
ehelin
parents: 23465
diff changeset
    47
                                                          Metaspace::MetadataType mdtype) const {
23469
0a4d02776968 8036701: Add trace event when a metaspace throws out of memory error
ehelin
parents: 23468
diff changeset
    48
  send_allocation_failure_event<EventMetaspaceAllocationFailure>(cld, word_size, objtype, mdtype);
0a4d02776968 8036701: Add trace event when a metaspace throws out of memory error
ehelin
parents: 23468
diff changeset
    49
}
0a4d02776968 8036701: Add trace event when a metaspace throws out of memory error
ehelin
parents: 23468
diff changeset
    50
0a4d02776968 8036701: Add trace event when a metaspace throws out of memory error
ehelin
parents: 23468
diff changeset
    51
void MetaspaceTracer::report_metadata_oom(ClassLoaderData *cld,
0a4d02776968 8036701: Add trace event when a metaspace throws out of memory error
ehelin
parents: 23468
diff changeset
    52
                                         size_t word_size,
0a4d02776968 8036701: Add trace event when a metaspace throws out of memory error
ehelin
parents: 23468
diff changeset
    53
                                         MetaspaceObj::Type objtype,
0a4d02776968 8036701: Add trace event when a metaspace throws out of memory error
ehelin
parents: 23468
diff changeset
    54
                                         Metaspace::MetadataType mdtype) const {
0a4d02776968 8036701: Add trace event when a metaspace throws out of memory error
ehelin
parents: 23468
diff changeset
    55
  send_allocation_failure_event<EventMetaspaceOOM>(cld, word_size, objtype, mdtype);
0a4d02776968 8036701: Add trace event when a metaspace throws out of memory error
ehelin
parents: 23468
diff changeset
    56
}
0a4d02776968 8036701: Add trace event when a metaspace throws out of memory error
ehelin
parents: 23468
diff changeset
    57
0a4d02776968 8036701: Add trace event when a metaspace throws out of memory error
ehelin
parents: 23468
diff changeset
    58
template <typename E>
0a4d02776968 8036701: Add trace event when a metaspace throws out of memory error
ehelin
parents: 23468
diff changeset
    59
void MetaspaceTracer::send_allocation_failure_event(ClassLoaderData *cld,
0a4d02776968 8036701: Add trace event when a metaspace throws out of memory error
ehelin
parents: 23468
diff changeset
    60
                                                    size_t word_size,
0a4d02776968 8036701: Add trace event when a metaspace throws out of memory error
ehelin
parents: 23468
diff changeset
    61
                                                    MetaspaceObj::Type objtype,
0a4d02776968 8036701: Add trace event when a metaspace throws out of memory error
ehelin
parents: 23468
diff changeset
    62
                                                    Metaspace::MetadataType mdtype) const {
0a4d02776968 8036701: Add trace event when a metaspace throws out of memory error
ehelin
parents: 23468
diff changeset
    63
  E event;
23468
6bb416a59349 8036699: Add trace event when a metaspace allocation fails
ehelin
parents: 23465
diff changeset
    64
  if (event.should_commit()) {
6bb416a59349 8036699: Add trace event when a metaspace allocation fails
ehelin
parents: 23465
diff changeset
    65
    if (cld->is_anonymous()) {
6bb416a59349 8036699: Add trace event when a metaspace allocation fails
ehelin
parents: 23465
diff changeset
    66
      event.set_classLoader(NULL);
6bb416a59349 8036699: Add trace event when a metaspace allocation fails
ehelin
parents: 23465
diff changeset
    67
      event.set_anonymousClassLoader(true);
6bb416a59349 8036699: Add trace event when a metaspace allocation fails
ehelin
parents: 23465
diff changeset
    68
    } else {
6bb416a59349 8036699: Add trace event when a metaspace allocation fails
ehelin
parents: 23465
diff changeset
    69
      if (cld->is_the_null_class_loader_data()) {
6bb416a59349 8036699: Add trace event when a metaspace allocation fails
ehelin
parents: 23465
diff changeset
    70
        event.set_classLoader((Klass*) NULL);
6bb416a59349 8036699: Add trace event when a metaspace allocation fails
ehelin
parents: 23465
diff changeset
    71
      } else {
6bb416a59349 8036699: Add trace event when a metaspace allocation fails
ehelin
parents: 23465
diff changeset
    72
        event.set_classLoader(cld->class_loader()->klass());
6bb416a59349 8036699: Add trace event when a metaspace allocation fails
ehelin
parents: 23465
diff changeset
    73
      }
6bb416a59349 8036699: Add trace event when a metaspace allocation fails
ehelin
parents: 23465
diff changeset
    74
      event.set_anonymousClassLoader(false);
6bb416a59349 8036699: Add trace event when a metaspace allocation fails
ehelin
parents: 23465
diff changeset
    75
    }
6bb416a59349 8036699: Add trace event when a metaspace allocation fails
ehelin
parents: 23465
diff changeset
    76
6bb416a59349 8036699: Add trace event when a metaspace allocation fails
ehelin
parents: 23465
diff changeset
    77
    event.set_size(word_size * BytesPerWord);
6bb416a59349 8036699: Add trace event when a metaspace allocation fails
ehelin
parents: 23465
diff changeset
    78
    event.set_metadataType((u1) mdtype);
6bb416a59349 8036699: Add trace event when a metaspace allocation fails
ehelin
parents: 23465
diff changeset
    79
    event.set_metaspaceObjectType((u1) objtype);
6bb416a59349 8036699: Add trace event when a metaspace allocation fails
ehelin
parents: 23465
diff changeset
    80
    event.commit();
6bb416a59349 8036699: Add trace event when a metaspace allocation fails
ehelin
parents: 23465
diff changeset
    81
  }
6bb416a59349 8036699: Add trace event when a metaspace allocation fails
ehelin
parents: 23465
diff changeset
    82
}