comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/instrument/AdvancedInstrumentRoot.java @ 21356:e34bc00733d1

Truffle/Instrumentation: an Advanced Instrument can now be created that requires the evaluation result be of a specified type, reporting a failure if not
author Michael Van De Vanter <michael.van.de.vanter@oracle.com>
date Tue, 12 May 2015 17:29:49 -0700
parents 442b57a7f208
children 28cbfacd0518
comparison
equal deleted inserted replaced
21355:442b57a7f208 21356:e34bc00733d1
28 import com.oracle.truffle.api.nodes.*; 28 import com.oracle.truffle.api.nodes.*;
29 29
30 /** 30 /**
31 * Root of a client-provided AST fragment that can be executed efficiently, subject to full Truffle 31 * Root of a client-provided AST fragment that can be executed efficiently, subject to full Truffle
32 * optimization, by an 32 * optimization, by an
33 * {@linkplain Instrument#create(AdvancedInstrumentResultListener, AdvancedInstrumentRootFactory, String) 33 * {@linkplain Instrument#create(AdvancedInstrumentResultListener, AdvancedInstrumentRootFactory, Class, String)
34 * Advanced Instrument}. 34 * Advanced Instrument}.
35 * 35 *
36 * @see Instrument 36 * @see Instrument
37 * @see AdvancedInstrumentRootFactory 37 * @see AdvancedInstrumentRootFactory
38 * @see AdvancedInstrumentResultListener 38 * @see AdvancedInstrumentResultListener