org.adoptopenjdk.jitwatch.jarscan.invokecount.InvokeMethodCountMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jitwatch-jarscan-maven-plugin Show documentation
Show all versions of jitwatch-jarscan-maven-plugin Show documentation
A Maven plugin that scans the project artifact and its dependencies for methods that cannot be inlined by the JIT
compiler. It uses the JarScan utility from the JITWatch project to do that.
See https://github.com/AdoptOpenJDK/jitwatch .
The newest version!
/*
* Copyright (c) 2013-2016 Chris Newland.
* Licensed under https://github.com/AdoptOpenJDK/jitwatch/blob/master/LICENSE-BSD
* Instructions: https://github.com/AdoptOpenJDK/jitwatch/wiki
*/
package org.adoptopenjdk.jitwatch.jarscan.invokecount;
import java.util.EnumMap;
import java.util.Map;
import org.adoptopenjdk.jitwatch.model.bytecode.Opcode;
public class InvokeMethodCountMap
{
private Map opcodeMap = new EnumMap<>(Opcode.class);
public void countInvocationOfMethod(Opcode opcode, String method)
{
MethodCountMap invokeCountMap = opcodeMap.get(opcode);
if (invokeCountMap == null)
{
invokeCountMap = new MethodCountMap();
opcodeMap.put(opcode, invokeCountMap);
}
invokeCountMap.count(method);
}
public String toString(int limitPerInvoke)
{
StringBuilder builder = new StringBuilder();
for (Map.Entry entry : opcodeMap.entrySet())
{
Opcode opcode = entry.getKey();
MethodCountMap invokeCountMap = entry.getValue();
builder.append(invokeCountMap.toString(opcode, limitPerInvoke));
}
return builder.toString();
}
}