diff graal/com.oracle.truffle.api/src/com/oracle/truffle/api/ExecutionContext.java @ 16181:da146f137cf7

Truffle/Instrumentation: add method boolean ExecutionContext.hasProbe(SourceSection)
author Michael Van De Vanter <michael.van.de.vanter@oracle.com>
date Tue, 24 Jun 2014 09:35:18 -0700
parents 915ebb306fcc
children 50d79ad439f1
line wrap: on
line diff
--- a/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/ExecutionContext.java	Tue Jun 24 13:12:26 2014 +0200
+++ b/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/ExecutionContext.java	Tue Jun 24 09:35:18 2014 -0700
@@ -109,6 +109,16 @@
     }
 
     /**
+     * Has a {@link Probe} been created that is uniquely associated with a particular source code
+     * location.
+     *
+     * @return a probe uniquely associated with an extent of guest language source code.
+     */
+    public final boolean hasProbe(SourceSection sourceSection) {
+        return probeManager.hasProbe(sourceSection);
+    }
+
+    /**
      * Returns all existing probes with specific tag, or all probes if {@code tag = null}; empty
      * collection if no probes found.
      */