log truffle/com.oracle.truffle.api/src/com/oracle/truffle/api/debug/LineBreakpointFactory.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, 11 Nov 2015 15:59:56 -0800 Michael Van De Vanter Merge with a647534602a6b70deb64b9d96c2798d7e36e1e0e
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.
Wed, 04 Nov 2015 16:54:36 +0100 Jaroslav Tulach Adding Map<String,Object> parameter to the attach(Eval*Listener) method to allow passing parameter values that the evaluated Source can reference.
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 20:33:24 -0700 Michael Van De Vanter Truffle/Instrumentation: eclipseformat
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 17:03:27 -0700 Michael Van De Vanter Truffle/Instrumentation: generify Instrumenter.install(Tool) in the type of the tool.
Mon, 21 Sep 2015 16:29:45 -0700 Michael Van De Vanter Truffle/Instrumentation: change the installation sequence for instances of Intrumenter.Tool
Sun, 20 Sep 2015 16:48:50 -0700 Michael Van De Vanter Truffle/Instrumentation: rename the methods in the Instrument listener classes to use the "on" convention, e.g. onEnter(), add Javadoc
Sat, 19 Sep 2015 16:29:32 -0700 Michael Van De Vanter Truffle/Instrumentation: remove static Instrument factory methods, now supported by Instrumenter
Wed, 16 Sep 2015 15:36:22 -0700 Michael Van De Vanter Merge with f47b601edbc626dcfe8b3636933b4834c89f7779
Mon, 14 Sep 2015 22:59:51 -0700 Michael Van De Vanter Truffle/Instrumentation: first large merge of instrumentation code into the TruffleVM framework
Wed, 16 Sep 2015 11:33:22 +0200 Jaroslav Tulach Using fully qualified imports
Wed, 26 Aug 2015 15:22:31 +0200 Jaroslav Tulach Replacing the langClass.newInstance() hack in Debugger with proper way to obtain the language instance
Thu, 06 Aug 2015 08:31:49 +0200 Jaroslav Tulach Clearly separating the TruffleLanguage definition from context used during its execution. TruffleLanguage now has to have public static field INSTANCE and override createContext method.
Thu, 23 Jul 2015 17:23:05 +0200 Andreas Woess add more truffle boundaries
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.