comparison agent/src/os/linux/mapfile @ 6782:5a98bf7d847b

6879063: SA should use hsdis for disassembly Summary: We should in SA to use hsdis for it like the JVM does to replace the current java based disassembler. Reviewed-by: twisti, jrose, sla Contributed-by: yumin.qi@oracle.com
author minqi
date Mon, 24 Sep 2012 12:44:00 -0700
parents c18cbe5936b8
children
comparison
equal deleted inserted replaced
6780:8440414b0fd8 6782:5a98bf7d847b
1 # 1 #
2 2 # Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
3 #
4 # Copyright (c) 2003, 2006, Oracle and/or its affiliates. All rights reserved.
5 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 # 4 #
7 # This code is free software; you can redistribute it and/or modify it 5 # This code is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License version 2 only, as 6 # under the terms of the GNU General Public License version 2 only, as
9 # published by the Free Software Foundation. 7 # published by the Free Software Foundation.
20 # 18 #
21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 # or visit www.oracle.com if you need additional information or have any 20 # or visit www.oracle.com if you need additional information or have any
23 # questions. 21 # questions.
24 # 22 #
25 #
26 23
27 # Define public interface. 24 # Define public interface.
28 25
29 SUNWprivate_1.1 { 26 SUNWprivate_1.1 {
30 global: 27 global:
38 Java_sun_jvm_hotspot_debugger_linux_LinuxDebuggerLocal_lookupByName0; 35 Java_sun_jvm_hotspot_debugger_linux_LinuxDebuggerLocal_lookupByName0;
39 Java_sun_jvm_hotspot_debugger_linux_LinuxDebuggerLocal_lookupByAddress0; 36 Java_sun_jvm_hotspot_debugger_linux_LinuxDebuggerLocal_lookupByAddress0;
40 Java_sun_jvm_hotspot_debugger_linux_LinuxDebuggerLocal_readBytesFromProcess0; 37 Java_sun_jvm_hotspot_debugger_linux_LinuxDebuggerLocal_readBytesFromProcess0;
41 Java_sun_jvm_hotspot_debugger_linux_LinuxDebuggerLocal_getThreadIntegerRegisterSet0; 38 Java_sun_jvm_hotspot_debugger_linux_LinuxDebuggerLocal_getThreadIntegerRegisterSet0;
42 39
40 # Disassembler interface
41 Java_sun_jvm_hotspot_asm_Disassembler_decode;
42 Java_sun_jvm_hotspot_asm_Disassembler_load_1library;
43
43 # proc_service.h functions - to be used by libthread_db 44 # proc_service.h functions - to be used by libthread_db
44 ps_getpid; 45 ps_getpid;
45 ps_pglobal_lookup; 46 ps_pglobal_lookup;
46 ps_pdread; 47 ps_pdread;
47 ps_pdwrite; 48 ps_pdwrite;