All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.adoptopenjdk.jitwatch.jarscan.nextinstruction.NextInstructionCount Maven / Gradle / Ivy

Go to download

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.nextinstruction;

import org.adoptopenjdk.jitwatch.model.bytecode.Opcode;

public class NextInstructionCount
{
	private Opcode opcode;
	
	private int count;

	public NextInstructionCount(Opcode opcode, int count)
	{
		this.opcode = opcode;
		this.count = count;
	}

	public Opcode getOpcode()
	{
		return opcode;
	}

	public int getCount()
	{
		return count;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy