* src/vm/breakpoint.hpp: Added header file for breakpoint handling.
[cacao.git] / src / vm / method.hpp
index 6fbc0c153d9a71e6d6020230a41eae21fcee2965..7d3b81a475b9bea710b62779a1812bcd2d4ab3a0 100644 (file)
@@ -40,6 +40,7 @@ typedef struct codeinfo            codeinfo;
 
 #include "threads/mutex.hpp"
 
+#include "vm/breakpoint.hpp"
 #include "vm/jit/builtin.hpp"
 #include "vm/descriptor.hpp"
 #include "vm/global.h"
@@ -100,6 +101,8 @@ struct methodinfo {                 /* method structure                       */
        methodinfo   *overwrites;       /* method that is directly overwritten    */
        method_assumption *assumptions; /* list of assumptions about this method  */
 
+       BreakpointTable* breakpoints;   /* breakpoints in this method             */
+
 #if defined(ENABLE_REPLACEMENT)
        s4            hitcountdown;     /* decreased for each hit                 */
 #endif