log truffle/com.oracle.truffle.api/src/com/oracle/truffle/api/debug/Breakpoint.java @ 22548:6b76a24fffbd default tip

age author description
Mon, 07 Dec 2015 18:19:25 -0800 Michael Van De Vanter Truffle/Debugging: backout the changes in 1c3deda60a9e to the Breakpoint classes
Wed, 04 Nov 2015 16:33:40 -0800 Michael Van De Vanter Truffle/Debugging: the REPL debugger now remembers breakpoint requests it receives from the command line client when there have been no executions yet (which means breakpoints cannot be set in the engine/debugger). When the first execution event arrives (with a reference to the Debugger), any "pending" breakpoints are created with the Debugger. This involved a bit of refactoring on the Breakpoint class hierarchy.
Thu, 08 Oct 2015 16:48:42 -0400 Michael Van De Vanter Truffle/Instrumentation: replace (non-functional) AdvancedInstrument kind with new EvalInstrument
Wed, 30 Sep 2015 16:33:56 -0700 Michael Van De Vanter Merge revised Instrumentation framework into the Polyglot API
Mon, 28 Sep 2015 12:34:51 -0700 Michael Van De Vanter Truffle/Instrumentation: javadoc
Fri, 25 Sep 2015 14:58:35 -0700 Michael Van De Vanter Truffle/Instrumentation: rename Instrument to ProbeInstrument to distinguish from another kind to be added.
Mon, 21 Sep 2015 11:21:03 +0200 Jaroslav Tulach Merging in changes in default branch
Mon, 21 Sep 2015 10:55:36 +0200 Jaroslav Tulach Replacing more TruffleVM references in comments with the new PolyglotEngine name
Wed, 16 Sep 2015 11:33:22 +0200 Jaroslav Tulach Using fully qualified imports
Thu, 03 Sep 2015 16:38:45 +0200 Jaroslav Tulach Separating the TruffleVM into its own project makes it possible to cleanup various system parts interations
Wed, 22 Jul 2015 14:25:03 +0200 Jaroslav Tulach Providing a bit more meaningful documentation to our recent debugging improvements
Sat, 18 Jul 2015 18:03:36 +0200 Jaroslav Tulach Making debugger always on for each TruffleVM execution. Introducing EventConsumer to process such debugger events. Requesting each RootNode to be associated with a TruffleLanguage, so debugger can find out proper context for each Node where executions gets suspended.