allocTracer.cpp 2.2 KB
Newer Older
1
/*
卓昂 已提交
2
 * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 *
 */

25
#include "gc_implementation/shared/gcId.hpp"
S
sla 已提交
26 27 28 29
#include "gc_interface/allocTracer.hpp"
#include "trace/tracing.hpp"
#include "runtime/handles.hpp"
#include "utilities/globalDefinitions.hpp"
30

卓昂 已提交
31 32 33
void AllocTracer::send_allocation_outside_tlab_event(KlassHandle klass, HeapWord* obj, size_t alloc_size, Thread* thread) {
  TRACE_ALLOCATION(obj, alloc_size, thread);
  EventObjectAllocationOutsideTLAB event;
S
sla 已提交
34
  if (event.should_commit()) {
卓昂 已提交
35
    event.set_objectClass(klass());
S
sla 已提交
36 37 38 39
    event.set_allocationSize(alloc_size);
    event.commit();
  }
}
40

卓昂 已提交
41 42 43
void AllocTracer::send_allocation_in_new_tlab_event(KlassHandle klass, HeapWord* obj, size_t tlab_size, size_t alloc_size, Thread* thread) {
  TRACE_ALLOCATION(obj, alloc_size, thread);
  EventObjectAllocationInNewTLAB event;
S
sla 已提交
44
  if (event.should_commit()) {
卓昂 已提交
45
    event.set_objectClass(klass());
S
sla 已提交
46 47 48 49 50
    event.set_allocationSize(alloc_size);
    event.set_tlabSize(tlab_size);
    event.commit();
  }
}
51 52 53 54 55 56 57 58 59

void AllocTracer::send_allocation_requiring_gc_event(size_t size, const GCId& gcId) {
  EventAllocationRequiringGC event;
  if (event.should_commit()) {
    event.set_gcId(gcId.id());
    event.set_size(size);
    event.commit();
  }
}