1 /*
2 * Copyright (c) 2015, 2025, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
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 package jdk.jfr.event.oldobject;
24
25 import java.io.IOException;
26 import java.nio.file.Path;
27 import java.nio.file.Paths;
28 import java.util.ArrayList;
29 import java.util.List;
30
31 import jdk.jfr.Recording;
32 import jdk.jfr.consumer.RecordedEvent;
33 import jdk.jfr.consumer.RecordingFile;
34 import jdk.jfr.internal.test.WhiteBox;
35 import jdk.test.lib.jfr.EventNames;
36 import jdk.test.lib.jfr.Events;
37
38 /**
39 * @test
40 * @requires vm.flagless
41 * @requires vm.hasJFR
42 * @requires !(vm.opt.final.UseCompactObjectHeaders == true | vm.opt.final.UseShenandoahGC == true)
43 * @library /test/lib /test/jdk
44 * @modules jdk.jfr/jdk.jfr.internal.test
45 * @run main/othervm -XX:TLABSize=2k jdk.jfr.event.oldobject.TestLastKnownHeapUsage
46 */
47 public class TestLastKnownHeapUsage {
48
49 public final static List<Object> heap = new ArrayList<>();
50
51 public static void main(String[] args) throws Exception {
52 WhiteBox.setWriteAllObjectSamples(true);
53 long last = 0;
54 for (int i = 1; i <= 5; i++) {
55 long heapUsage = recordOldObjects(i);
56 System.out.println("Recording: " + i + " heapUsage=" + heapUsage);
57 if (heapUsage < last) {
58 throw new Exception("Unexpect decrease of heap usage");
59 }
60 }
61 }
62
63 private static long recordOldObjects(int index) throws IOException {
64 try (Recording r = new Recording()) {
65 r.enable(EventNames.OldObjectSample).withStackTrace().with("cutoff", "infinity");
66 r.start();
67 System.gc();
68 for (int i = 0; i < 20; i++) {
69 heap.add(new byte[1_000_000]);
70 }
71 System.gc();
72 r.stop();
73 Path p = Paths.get("recording-" + index + ".jfr");
74 r.dump(p);
75 List<RecordedEvent> events = RecordingFile.readAllEvents(p);
76 Events.hasEvents(events);
77 long max = 0;
78 for (RecordedEvent e : RecordingFile.readAllEvents(p)) {
79 long heapUsage = Events.assertField(e, "lastKnownHeapUsage").atLeast(0L).below(1_000_000_000L).getValue();
80 max = Math.max(max, heapUsage);
81 }
82 return max;
83 }
84 }
85 }