Interface TruffleCompilerListener.CompilationResultInfo

Enclosing interface:
TruffleCompilerListener

public static interface TruffleCompilerListener.CompilationResultInfo
Summary information for the result of a compilation.
  • Method Details

    • getTargetCodeSize

      int getTargetCodeSize()
      Gets the size of the machine code generated.
    • getTotalFrameSize

      int getTotalFrameSize()
      Gets the total frame size of compiled code in bytes. This includes the return address pushed onto the stack, if any.
    • getExceptionHandlersCount

      int getExceptionHandlersCount()
      Gets the number of ExceptionHandlers in the compiled code.
    • getInfopointsCount

      int getInfopointsCount()
      Gets the number of Infopoints in the compiled code.
    • getInfopoints

      String[] getInfopoints()
      Gets the infopoint reasons in the compiled code.
    • getMarksCount

      int getMarksCount()
      Gets the number of Marks in the compiled code.
    • getDataPatchesCount

      int getDataPatchesCount()
      Gets the number of DataPatches in the compiled code.