Richard Uhler | 3524472 | 2015-09-10 16:45:54 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | import dalvik.system.VMDebug; |
| 18 | import java.io.IOException; |
Richard Uhler | b357730 | 2015-10-29 13:02:42 -0700 | [diff] [blame] | 19 | import java.lang.ref.PhantomReference; |
| 20 | import java.lang.ref.ReferenceQueue; |
| 21 | import java.lang.ref.WeakReference; |
Richard Uhler | 1a5baaa | 2015-12-21 12:47:26 -0800 | [diff] [blame] | 22 | import libcore.util.NativeAllocationRegistry; |
Richard Uhler | 3524472 | 2015-09-10 16:45:54 -0700 | [diff] [blame] | 23 | |
| 24 | /** |
| 25 | * Program used to create a heap dump for test purposes. |
| 26 | */ |
| 27 | public class Main { |
| 28 | // Keep a reference to the DumpedStuff instance so that it is not garbage |
| 29 | // collected before we take the heap dump. |
| 30 | public static DumpedStuff stuff; |
| 31 | |
| 32 | // We will take a heap dump that includes a single instance of this |
| 33 | // DumpedStuff class. Objects stored as fields in this class can be easily |
| 34 | // found in the hprof dump by searching for the instance of the DumpedStuff |
| 35 | // class and reading the desired field. |
| 36 | public static class DumpedStuff { |
| 37 | public String basicString = "hello, world"; |
| 38 | public String nullString = null; |
| 39 | public Object anObject = new Object(); |
Richard Uhler | b357730 | 2015-10-29 13:02:42 -0700 | [diff] [blame] | 40 | public ReferenceQueue<Object> referenceQueue = new ReferenceQueue<Object>(); |
| 41 | public PhantomReference aPhantomReference = new PhantomReference(anObject, referenceQueue); |
| 42 | public WeakReference aWeakReference = new WeakReference(anObject, referenceQueue); |
Richard Uhler | 1af86f1 | 2015-10-29 14:55:00 -0700 | [diff] [blame] | 43 | public byte[] bigArray; |
| 44 | |
| 45 | DumpedStuff() { |
| 46 | int N = 1000000; |
| 47 | bigArray = new byte[N]; |
| 48 | for (int i = 0; i < N; i++) { |
| 49 | bigArray[i] = (byte)((i*i) & 0xFF); |
| 50 | } |
Richard Uhler | 1a5baaa | 2015-12-21 12:47:26 -0800 | [diff] [blame] | 51 | |
| 52 | NativeAllocationRegistry registry = new NativeAllocationRegistry(0x12345, 42); |
| 53 | registry.registerNativeAllocation(anObject, 0xABCDABCD); |
Richard Uhler | 1af86f1 | 2015-10-29 14:55:00 -0700 | [diff] [blame] | 54 | } |
Richard Uhler | 3524472 | 2015-09-10 16:45:54 -0700 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | public static void main(String[] args) throws IOException { |
| 58 | if (args.length < 1) { |
| 59 | System.err.println("no output file specified"); |
| 60 | return; |
| 61 | } |
| 62 | String file = args[0]; |
| 63 | |
| 64 | // Allocate the instance of DumpedStuff. |
| 65 | stuff = new DumpedStuff(); |
| 66 | |
| 67 | // Take a heap dump that will include that instance of DumpedStuff. |
| 68 | System.err.println("Dumping hprof data to " + file); |
| 69 | VMDebug.dumpHprofData(file); |
| 70 | } |
| 71 | } |