org.adoptopenjdk.jitwatch.ui.report.inlining.InliningRowBean Maven / Gradle / Ivy
/*
* Copyright (c) 2017 Chris Newland.
* Licensed under https://github.com/AdoptOpenJDK/jitwatch/blob/master/LICENSE-BSD
* Instructions: https://github.com/AdoptOpenJDK/jitwatch/wiki
*/
package org.adoptopenjdk.jitwatch.ui.report.inlining;
import static org.adoptopenjdk.jitwatch.core.JITWatchConstants.S_EMPTY;
import org.adoptopenjdk.jitwatch.model.Compilation;
import org.adoptopenjdk.jitwatch.report.Report;
import org.adoptopenjdk.jitwatch.report.ReportType;
import org.adoptopenjdk.jitwatch.ui.report.AbstractReportRowBean;
public class InliningRowBean extends AbstractReportRowBean
{
public InliningRowBean(Report report)
{
super(report);
}
public String getCompilation()
{
Compilation compilation = report.getCaller().getCompilation(report.getCompilationIndex());
return compilation != null ? compilation.getSignature() : S_EMPTY;
}
public String getMetaClass()
{
return report.getCaller().getMetaClass().getFullyQualifiedName();
}
public String getMember()
{
return report.getCaller().toStringUnqualifiedMethodName(false, false);
}
public String getSuccess()
{
return (report.getType() == ReportType.INLINE_SUCCESS) ? "Yes" : "No";
}
public String getReason()
{
String[] lines = report.getText().split("\n");
String result = "Unknown";
String search = "Inlined: ";
for (String line : lines)
{
if (line.startsWith(search))
{
result = line.substring(search.length()).trim();
}
}
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy