test/jdk/jdk/jfr/event/compiler/TestAllocOutsideTLAB.java
changeset 50113 caf115bb98ad
child 51214 67736b4846a0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/jdk/jdk/jfr/event/compiler/TestAllocOutsideTLAB.java	Tue May 15 20:24:34 2018 +0200
@@ -0,0 +1,103 @@
+/*
+ * Copyright (c) 2013, 2018, 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.compiler;
+
+import static java.lang.Math.floor;
+import static jdk.test.lib.Asserts.assertGreaterThanOrEqual;
+import static jdk.test.lib.Asserts.assertLessThanOrEqual;
+
+import java.time.Duration;
+
+import jdk.jfr.Recording;
+import jdk.jfr.consumer.RecordedEvent;
+import jdk.test.lib.jfr.EventNames;
+import jdk.test.lib.jfr.Events;
+
+/*
+ * @test
+ * @summary Test that when an object is allocated outside a TLAB an event will be triggered.
+ * @key jfr
+ * @library /test/lib
+ * @run main/othervm -XX:+UseTLAB -XX:-FastTLABRefill -XX:TLABSize=90k -XX:-ResizeTLAB -XX:TLABRefillWasteFraction=256 jdk.jfr.event.compiler.TestAllocOutsideTLAB
+ * @run main/othervm -XX:+UseTLAB -XX:-FastTLABRefill -XX:TLABSize=90k -XX:-ResizeTLAB -XX:TLABRefillWasteFraction=256 jdk.jfr.event.compiler.TestAllocOutsideTLAB
+ * @run main/othervm -XX:+UseTLAB -XX:-FastTLABRefill -XX:TLABSize=90k -XX:-ResizeTLAB -XX:TLABRefillWasteFraction=256 -Xint jdk.jfr.event.compiler.TestAllocOutsideTLAB
+ */
+
+/**
+ * Test that an event is triggered when an object is allocated outside a
+ * Thread Local Allocation Buffer (TLAB). The test is done for C1-compiler,
+ * C2-compiler (-XX:-FastTLABRefill) and interpreted mode (-Xint).
+ *
+ * To force objects to be allocated outside TLAB:
+ *      the size of TLAB is set to 90k (-XX:TLABSize=90k);
+ *      the size of allocated objects is set to 100k.
+ *      max TLAB waste at refill is set to 256 (-XX:TLABRefillWasteFraction=256),
+ *          to prevent a new TLAB creation.
+*/
+public class TestAllocOutsideTLAB {
+    private static final String EVENT_NAME = EventNames.ObjectAllocationOutsideTLAB;
+
+    private static final int BYTE_ARRAY_OVERHEAD = 16; // Extra bytes used by a byte array
+    private static final int OBJECT_SIZE = 100 * 1024;
+    private static final int OBJECT_SIZE_ALT = OBJECT_SIZE + 8; // Object size in case of disabled CompressedOops
+    private static final int OBJECTS_TO_ALLOCATE = 100;
+    private static final String BYTE_ARRAY_CLASS_NAME = new byte[0].getClass().getName();
+
+    public static byte[] tmp; // Used to prevent optimizer from removing code.
+
+    public static void main(String[] args) throws Exception {
+        Recording recording = new Recording();
+        recording.enable(EVENT_NAME).withThreshold(Duration.ofMillis(0));
+        recording.start();
+        for (int i = 0; i < OBJECTS_TO_ALLOCATE; ++i) {
+            tmp = new byte[OBJECT_SIZE - BYTE_ARRAY_OVERHEAD];
+        }
+        recording.stop();
+
+        int countEvents = 0;
+        for (RecordedEvent event : Events.fromRecording(recording)) {
+            if (!EVENT_NAME.equals(event.getEventType().getName())) {
+                continue;
+            }
+            System.out.println("Event:" + event);
+
+            long allocationSize = Events.assertField(event, "allocationSize").atLeast(1L).getValue();
+            String className = Events.assertField(event, "objectClass.name").notEmpty().getValue();
+
+            boolean isMyEvent = Thread.currentThread().getId() == event.getThread().getJavaThreadId()
+                && className.equals(BYTE_ARRAY_CLASS_NAME)
+                 && (allocationSize == OBJECT_SIZE || allocationSize == OBJECT_SIZE_ALT);
+            if (isMyEvent) {
+                ++countEvents;
+            }
+        }
+
+        int minCount = (int) floor(OBJECTS_TO_ALLOCATE * 0.80);
+        assertGreaterThanOrEqual(countEvents, minCount, "Too few tlab objects allocated");
+        assertLessThanOrEqual(countEvents, OBJECTS_TO_ALLOCATE, "Too many tlab objects allocated");
+    }
+
+}