本文整理汇总了Java中sun.jvm.hotspot.HotSpotAgent类的典型用法代码示例。如果您正苦于以下问题:Java HotSpotAgent类的具体用法?Java HotSpotAgent怎么用?Java HotSpotAgent使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
HotSpotAgent类属于sun.jvm.hotspot包,在下文中一共展示了HotSpotAgent类的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: SAInstanceKlassSize
import sun.jvm.hotspot.HotSpotAgent; //导入依赖的package包/类
private static void SAInstanceKlassSize(int lingeredAppPid,
String[] instanceKlassNames) {
HotSpotAgent agent = new HotSpotAgent();
try {
agent.attach(lingeredAppPid);
}
catch (DebuggerException e) {
System.out.println(e.getMessage());
System.err.println("Unable to connect to process ID: " + lingeredAppPid);
agent.detach();
e.printStackTrace();
}
for (String instanceKlassName : instanceKlassNames) {
InstanceKlass iKlass = SystemDictionaryHelper.findInstanceKlass(
instanceKlassName);
Asserts.assertNotNull(iKlass,
String.format("Unable to find instance klass for %s", instanceKlassName));
System.out.println("SA: The size of " + instanceKlassName +
" is " + iKlass.getSize());
}
agent.detach();
}
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:26,代码来源:TestInstanceKlassSizeForInterface.java
示例2: SAInstanceKlassSize
import sun.jvm.hotspot.HotSpotAgent; //导入依赖的package包/类
private static void SAInstanceKlassSize(int pid,
String[] SAInstanceKlassNames) {
HotSpotAgent agent = new HotSpotAgent();
try {
agent.attach(pid);
}
catch (DebuggerException e) {
System.out.println(e.getMessage());
System.err.println("Unable to connect to process ID: " + pid);
agent.detach();
e.printStackTrace();
}
for (String SAInstanceKlassName : SAInstanceKlassNames) {
InstanceKlass ik = SystemDictionaryHelper.findInstanceKlass(
SAInstanceKlassName);
Asserts.assertNotNull(ik,
String.format("Unable to find instance klass for %s", ik));
System.out.println("SA: The size of " + SAInstanceKlassName +
" is " + ik.getSize());
}
agent.detach();
}
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:25,代码来源:TestInstanceKlassSize.java
示例3: start
import sun.jvm.hotspot.HotSpotAgent; //导入依赖的package包/类
public void start() {
if (jvmDebugger == null) {
throw new RuntimeException("Tool.start() called with no JVMDebugger set.");
}
agent = new HotSpotAgent();
agent.attach(jvmDebugger);
startInternal();
}
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:10,代码来源:Tool.java
示例4: printBytecodes
import sun.jvm.hotspot.HotSpotAgent; //导入依赖的package包/类
private static void printBytecodes(String pid,
String[] instanceKlassNames) {
HotSpotAgent agent = new HotSpotAgent();
try {
agent.attach(Integer.parseInt(pid));
}
catch (DebuggerException e) {
System.out.println(e.getMessage());
System.err.println("Unable to connect to process ID: " + pid);
agent.detach();
e.printStackTrace();
}
for (String instanceKlassName : instanceKlassNames) {
InstanceKlass iKlass = SystemDictionaryHelper.findInstanceKlass(instanceKlassName);
MethodArray methods = iKlass.getMethods();
for (int i = 0; i < methods.length(); i++) {
Method m = methods.at(i);
System.out.println("Method: " + m.getName().asString() +
" in instance klass: " + instanceKlassName);
HTMLGenerator gen = new HTMLGenerator(false);
System.out.println(gen.genHTML(m));
}
}
agent.detach();
}
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:28,代码来源:TestCpoolForInvokeDynamic.java
示例5: printDefaultMethods
import sun.jvm.hotspot.HotSpotAgent; //导入依赖的package包/类
private static void printDefaultMethods(String pid,
String[] instanceKlassNames) {
HotSpotAgent agent = new HotSpotAgent();
try {
agent.attach(Integer.parseInt(pid));
}
catch (DebuggerException e) {
System.out.println(e.getMessage());
System.err.println("Unable to connect to process ID: " + pid);
agent.detach();
e.printStackTrace();
}
for (String instanceKlassName : instanceKlassNames) {
InstanceKlass iKlass = SystemDictionaryHelper.findInstanceKlass(instanceKlassName);
MethodArray methods = iKlass.getMethods();
MethodArray defaultMethods = iKlass.getDefaultMethods();
for (int i = 0; i < methods.length(); i++) {
Method m = methods.at(i);
System.out.println("Method: " + m.getName().asString() +
" in instance klass: " + instanceKlassName);
}
if (defaultMethods != null) {
for (int j = 0; j < defaultMethods.length(); j++) {
Method dm = defaultMethods.at(j);
System.out.println("Default method: " + dm.getName().asString() +
" in instance klass: " + instanceKlassName);
}
} else {
System.out.println("No default methods in " + instanceKlassName);
}
}
agent.detach();
}
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:37,代码来源:TestDefaultMethods.java
示例6: setAgent
import sun.jvm.hotspot.HotSpotAgent; //导入依赖的package包/类
protected void setAgent(HotSpotAgent a) {
agent = a;
}
开发者ID:ojdkbuild,项目名称:lookaside_java-1.8.0-openjdk,代码行数:4,代码来源:Tool.java
示例7: getAgent
import sun.jvm.hotspot.HotSpotAgent; //导入依赖的package包/类
protected HotSpotAgent getAgent() {
return agent;
}
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:4,代码来源:Tool.java
示例8: HotSpotServiceabilityAgentContext
import sun.jvm.hotspot.HotSpotAgent; //导入依赖的package包/类
public HotSpotServiceabilityAgentContext(HotSpotAgent hotSpotAgent, VM vm) {
this.hotSpotAgent = hotSpotAgent;
this.vm = vm;
}
开发者ID:serkan-ozal,项目名称:jemstone,代码行数:5,代码来源:HotSpotServiceabilityAgentContext.java
示例9: getHotSpotAgentInstance
import sun.jvm.hotspot.HotSpotAgent; //导入依赖的package包/类
public static HotSpotAgent getHotSpotAgentInstance() {
return new HotSpotAgent();
}
开发者ID:serkan-ozal,项目名称:jemstone,代码行数:4,代码来源:HotSpotServiceabilityAgentUtil.java
示例10: attachSAAgent
import sun.jvm.hotspot.HotSpotAgent; //导入依赖的package包/类
public static VM attachSAAgent(String pid) {
HotSpotAgent agent = new HotSpotAgent();
agent.attach(Integer.parseInt(pid));
return VM.getVM();
}
开发者ID:d0k1,项目名称:jdi-tool,代码行数:7,代码来源:SimpleHeapWalk.java
示例11: getHotSpotAgent
import sun.jvm.hotspot.HotSpotAgent; //导入依赖的package包/类
/**
* Gets the {@link HotSpotAgent} instance.
*
* @return the {@link HotSpotAgent} instance
*/
public HotSpotAgent getHotSpotAgent() {
return hotSpotAgent;
}
开发者ID:serkan-ozal,项目名称:jemstone,代码行数:9,代码来源:HotSpotServiceabilityAgentContext.java
注:本文中的sun.jvm.hotspot.HotSpotAgent类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论