com.oracle.truffle.api.debug.BreakpointLocation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of truffle-api Show documentation
Show all versions of truffle-api Show documentation
Truffle is a multi-language framework for executing dynamic languages
that achieves high performance when combined with Graal.
The newest version!
/*
* Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* The Universal Permissive License (UPL), Version 1.0
*
* Subject to the condition set forth below, permission is hereby granted to any
* person obtaining a copy of this software, associated documentation and/or
* data (collectively the "Software"), free of charge and under any and all
* copyright rights in the Software, and any and all patent rights owned or
* freely licensable by each licensor hereunder covering either (i) the
* unmodified Software as contributed to or provided by such licensor, or (ii)
* the Larger Works (as defined below), to deal in both
*
* (a) the Software, and
*
* (b) any piece of software and/or hardware listed in the lrgrwrks.txt file if
* one is included with the Software each a "Larger Work" to which the Software
* is contributed by such licensors),
*
* without restriction, including without limitation the rights to copy, create
* derivative works of, display, perform, and distribute the Software and make,
* use, sell, offer for sale, import, export, have made, and have sold the
* Software and the Larger Work(s), and to sublicense the foregoing rights on
* either these or other terms.
*
* This license is subject to the following condition:
*
* The above copyright notice and either this complete permission notice or at a
* minimum a reference to the UPL must be included in all copies or substantial
* portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package com.oracle.truffle.api.debug;
import java.net.URI;
import java.util.function.Predicate;
import com.oracle.truffle.api.instrumentation.SourceFilter;
import com.oracle.truffle.api.instrumentation.SourceSectionFilter;
import com.oracle.truffle.api.instrumentation.SourceSectionFilter.IndexRange;
import com.oracle.truffle.api.instrumentation.TruffleInstrument;
import com.oracle.truffle.api.source.Source;
import com.oracle.truffle.api.source.SourceSection;
/**
* Description of a textual location in guest language source code where a {@link Breakpoint} can be
* installed.
*
* The location's key identifies a particular unit of source code, for example a
* {@link Source} or {@link URI}. It can be optionally specialized to a 1-based line number and if
* it is, then it may also be optionally specialized to a 1-based column number.
*
*
*/
abstract class BreakpointLocation {
/**
* A source location with {@code key == null} that always matches.
*/
static final BreakpointLocation ANY = new BreakpointSourceLocation();
static BreakpointLocation create(Object key, SourceElement[] sourceElements, SourceSection sourceSection) {
return new BreakpointSourceLocation(key, sourceElements, sourceSection);
}
static BreakpointLocation create(Object key, SourceElement[] sourceElements, int line, int column) {
return new BreakpointSourceLocation(key, sourceElements, line, column);
}
static BreakpointLocation create(SourceElement[] sourceElements, SuspensionFilter filter) {
return new BreakpointFilteredLocation(sourceElements, filter);
}
abstract SourceFilter createSourceFilter();
abstract SourceSection adjustLocation(Source source, TruffleInstrument.Env env, SuspendAnchor suspendAnchor);
abstract SourceSectionFilter createLocationFilter(Source source, SuspendAnchor suspendAnchor);
private static void setTags(SourceSectionFilter.Builder f, SourceElement[] sourceElements) {
Class>[] elementTags = new Class>[sourceElements.length];
for (int i = 0; i < elementTags.length; i++) {
elementTags[i] = sourceElements[i].getTag();
}
f.tagIs(elementTags);
}
private static final class BreakpointSourceLocation extends BreakpointLocation {
private final Object key;
private final SourceElement[] sourceElements;
private final SourceSection sourceSection;
private int line;
private int column;
/**
* @param key non-null source identifier
* @param line 1-based line number, -1 for unspecified
*/
BreakpointSourceLocation(Object key, SourceElement[] sourceElements, SourceSection sourceSection) {
assert key instanceof Source || key instanceof URI;
this.key = key;
this.sourceElements = sourceElements;
this.sourceSection = sourceSection;
this.line = -1;
this.column = -1;
}
/**
* @param key non-null source identifier
* @param line 1-based line number
* @param column 1-based column number, -1 for unspecified
*/
BreakpointSourceLocation(Object key, SourceElement[] sourceElements, int line, int column) {
assert key instanceof Source || key instanceof URI;
assert line > 0;
assert column > 0 || column == -1;
this.key = key;
this.sourceElements = sourceElements;
this.line = line;
this.column = column;
this.sourceSection = null;
}
private BreakpointSourceLocation() {
this.key = null;
this.sourceElements = null;
this.line = -1;
this.column = -1;
this.sourceSection = null;
}
@Override
SourceFilter createSourceFilter() {
if (key == null) {
return SourceFilter.ANY;
}
SourceFilter.Builder f = SourceFilter.newBuilder();
if (key instanceof URI) {
final URI sourceUri = (URI) key;
f.sourceIs(new Predicate
© 2015 - 2024 Weber Informatics LLC | Privacy Policy