blob: f16d9eedd9f09f613a737f80ec119c3a90e1f842 [file] [log] [blame]
/*
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
* 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. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* 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.
*/
package jdk.jfr.event.allocation;
import java.util.concurrent.CountDownLatch;
import jdk.jfr.consumer.RecordedEvent;
import jdk.jfr.consumer.RecordingStream;
import jdk.test.lib.Asserts;
import jdk.test.lib.jfr.EventNames;
import jdk.test.lib.jfr.Events;
/**
* @test
* @summary Tests ObjectAllocationSampleEvent
* @key jfr
* @requires vm.hasJFR
* @library /test/lib
* @run main/othervm -XX:+UseTLAB -XX:TLABSize=2k -XX:-ResizeTLAB jdk.jfr.event.allocation.TestObjectAllocationSampleEvent
*/
public class TestObjectAllocationSampleEvent {
private static final String EVENT_NAME = EventNames.ObjectAllocationSample;
private static final int OBJECT_SIZE = 4 * 1024;
private static final int OBJECTS_TO_ALLOCATE = 16;
private static final String BYTE_ARRAY_CLASS_NAME = new byte[0].getClass().getName();
// Make sure allocation isn't dead code eliminated.
public static byte[] tmp;
public static void main(String... args) throws Exception {
CountDownLatch delivered = new CountDownLatch(1);
Thread current = Thread.currentThread();
try (RecordingStream rs = new RecordingStream()) {
rs.enable(EVENT_NAME);
rs.onEvent(EVENT_NAME, e -> {
if (verify(e, current)) {
delivered.countDown();
}
});
rs.startAsync();
for (int i = 0; i < OBJECTS_TO_ALLOCATE; ++i) {
tmp = new byte[OBJECT_SIZE];
}
delivered.await();
}
}
private static boolean verify(RecordedEvent event, Thread thread) {
if (thread.getId() != event.getThread().getJavaThreadId()) {
return false;
}
if (Events.assertField(event, "objectClass.name").notEmpty().getValue().equals(BYTE_ARRAY_CLASS_NAME)) {
Events.assertField(event, "weight").atLeast(1L);
return true;
}
return false;
}
}