Path: blob/aarch64-shenandoah-jdk8u272-b10/hotspot/test/serviceability/sa/jmap-hprof/JMapHProfLargeHeapProc.java
32285 views
/*1* Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*/2223import java.lang.management.ManagementFactory;24import java.lang.management.RuntimeMXBean;25import java.lang.reflect.Field;26import java.lang.reflect.Method;27import java.util.ArrayList;28import java.util.List;2930import sun.management.VMManagement;3132public class JMapHProfLargeHeapProc {33private static final List<byte[]> heapGarbage = new ArrayList<>();3435public static void main(String[] args) throws Exception {3637buildLargeHeap(args);3839// Print our pid on stdout40System.out.println("PID[" + getProcessId() + "]");4142// Wait for input before termination43System.in.read();44}4546private static void buildLargeHeap(String[] args) {47for (long i = 0; i < Integer.parseInt(args[0]); i++) {48heapGarbage.add(new byte[1024]);49}50}5152public static int getProcessId() throws Exception {5354// Get the current process id using a reflection hack55RuntimeMXBean runtime = ManagementFactory.getRuntimeMXBean();56Field jvm = runtime.getClass().getDeclaredField("jvm");5758jvm.setAccessible(true);59VMManagement mgmt = (sun.management.VMManagement) jvm.get(runtime);6061Method pid_method = mgmt.getClass().getDeclaredMethod("getProcessId");6263pid_method.setAccessible(true);6465int pid = (Integer) pid_method.invoke(mgmt);6667return pid;68}6970}717273