Package org.adoptopenjdk.jitwatch.model
Class CodeCacheEvent
- java.lang.Object
-
- org.adoptopenjdk.jitwatch.model.CodeCacheEvent
-
public class CodeCacheEvent extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCodeCacheEvent.CodeCacheEventType
-
Field Summary
Fields Modifier and Type Field Description private Compilationcompilationprivate intcompilationLevelprivate CodeCacheEvent.CodeCacheEventTypeeventTypeprivate longfreeCodeCacheprivate longnativeAddressprivate longnativeCodeSizeprivate longstamp
-
Constructor Summary
Constructors Constructor Description CodeCacheEvent(CodeCacheEvent.CodeCacheEventType eventType, long stamp, long nativeCodeSize, long freeCodeCache)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CompilationgetCompilation()intgetCompilationLevel()CodeCacheEvent.CodeCacheEventTypegetEventType()longgetFreeCodeCache()longgetNativeAddress()longgetNativeCodeSize()longgetStamp()voidsetCompilation(Compilation compilation)voidsetNativeAddress(long address)
-
-
-
Field Detail
-
eventType
private CodeCacheEvent.CodeCacheEventType eventType
-
stamp
private long stamp
-
nativeCodeSize
private long nativeCodeSize
-
freeCodeCache
private long freeCodeCache
-
nativeAddress
private long nativeAddress
-
compilation
private Compilation compilation
-
compilationLevel
private int compilationLevel
-
-
Constructor Detail
-
CodeCacheEvent
public CodeCacheEvent(CodeCacheEvent.CodeCacheEventType eventType, long stamp, long nativeCodeSize, long freeCodeCache)
-
-
Method Detail
-
setNativeAddress
public void setNativeAddress(long address)
-
getNativeAddress
public long getNativeAddress()
-
getStamp
public long getStamp()
-
getNativeCodeSize
public long getNativeCodeSize()
-
getCompilation
public Compilation getCompilation()
-
setCompilation
public void setCompilation(Compilation compilation)
-
getCompilationLevel
public int getCompilationLevel()
-
getFreeCodeCache
public long getFreeCodeCache()
-
getEventType
public CodeCacheEvent.CodeCacheEventType getEventType()
-
-