- Cached - Annotation Type in com.oracle.truffle.api.dsl
-
A parameter annotated with
Cached in a
Specialization refers to a
cached
value of a specialization instance.
- cached(boolean) - Method in class com.oracle.truffle.api.source.Source.LiteralBuilder
-
Enables or disables code caching for this source.
- cached(boolean) - Method in class com.oracle.truffle.api.source.Source.SourceBuilder
-
Enables or disables code caching for this source.
- Cached.Exclusive - Annotation Type in com.oracle.truffle.api.dsl
-
Disallows any sharing with other cached parameters.
- Cached.Shared - Annotation Type in com.oracle.truffle.api.dsl
-
Allows sharing between multiple Cached parameters between multiple specializations or
exported library messages.
- CachedLibrary - Annotation Type in com.oracle.truffle.api.library
-
- calculateContextHeapSize(TruffleContext, long, AtomicBoolean) - Method in class com.oracle.truffle.api.instrumentation.TruffleInstrument.Env
-
Returns heap memory size retained by a polyglot context.
- call(Object...) - Method in interface com.oracle.truffle.api.CallTarget
-
Calls this target as a root method.
- call(Object...) - Method in class com.oracle.truffle.api.nodes.DirectCallNode
-
- call(CallTarget, Object...) - Method in class com.oracle.truffle.api.nodes.IndirectCallNode
-
Performs an indirect call to the given
CallTarget target with the provided arguments.
- CallTarget - Interface in com.oracle.truffle.api
-
Represents the target of a call.
- callTarget - Variable in class com.oracle.truffle.api.nodes.DirectCallNode
-
- canExecute() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Returns true if this value can be executed (represents a guest language
function), else false.
- canonicalizePath(boolean) - Method in class com.oracle.truffle.api.source.Source.LiteralBuilder
-
- canonicalizePath(boolean) - Method in class com.oracle.truffle.api.source.Source.SourceBuilder
-
- canSet(DynamicObject, Object) - Method in class com.oracle.truffle.api.object.Location
-
Returns true if the location can be set to the given value.
- canSet(Object) - Method in class com.oracle.truffle.api.object.Location
-
Returns true if the location can be set to the value.
- canStore(Object) - Method in class com.oracle.truffle.api.object.Location
-
Returns true if the location is compatible with the type of the value.
- cardinality() - Method in class com.oracle.truffle.api.utilities.FinalBitSet
-
Returns the number of bits set to true in this BitSet.
- cast(Object) - Method in class com.oracle.truffle.api.library.DynamicDispatchLibrary
-
Cast the object receiver type to the dispatched type.
- castExact(Object, Class<T>) - Static method in class com.oracle.truffle.api.CompilerDirectives
-
Casts the given object to the exact class represented by clazz.
- CATCHES - Static variable in class com.oracle.truffle.api.instrumentation.StandardTags.TryBlockTag
-
Name of the catches function.
- changeType(ObjectType) - Method in class com.oracle.truffle.api.object.Shape
-
Change the shape's type, yielding a new shape.
- check() - Method in interface com.oracle.truffle.api.Assumption
-
Checks that this assumption is still valid.
- check(DynamicObject) - Method in class com.oracle.truffle.api.object.Shape
-
Checks whether the given object's shape is identical to this shape.
- check() - Method in class com.oracle.truffle.api.utilities.AlwaysValidAssumption
-
- check() - Method in class com.oracle.truffle.api.utilities.NeverValidAssumption
-
- check() - Method in class com.oracle.truffle.api.utilities.UnionAssumption
-
- checkShape(DynamicObject, Shape) - Static method in class com.oracle.truffle.api.object.Location
-
- clear(FrameSlot) - Method in interface com.oracle.truffle.api.frame.Frame
-
Clears the given slot in the frame.
- clearEnvironment(boolean) - Method in class com.oracle.truffle.api.io.TruffleProcessBuilder
-
If true the environment variables are not inherited by the subprocess.
- clone() - Method in class com.oracle.truffle.api.library.Message
- clone() - Method in class com.oracle.truffle.api.nodes.NodeCloneable
-
- clone() - Method in class com.oracle.truffle.api.object.DynamicObject
-
- cloneCallTarget() - Method in class com.oracle.truffle.api.nodes.DirectCallNode
-
- cloneNode(T) - Static method in class com.oracle.truffle.api.nodes.NodeUtil
-
- cloneUninitialized() - Method in class com.oracle.truffle.api.nodes.RootNode
-
Creates an uninitialized copy of an already initialized/executed root node if it is
supported.
- close() - Method in class com.oracle.truffle.api.debug.DebuggerSession
-
Closes the current debugging session and disposes all installed breakpoints.
- close() - Method in class com.oracle.truffle.api.TruffleContext
-
Closes this context and disposes its resources.
- closeCancelled(Node, String) - Method in class com.oracle.truffle.api.TruffleContext
-
Force closes the context as cancelled and stops all the execution on all active threads using
a
ThreadDeath exception.
- closeResourceExhausted(Node, String) - Method in class com.oracle.truffle.api.TruffleContext
-
Force closes the context due to resource exhaustion.
- collectNodes(Node, Node) - Static method in class com.oracle.truffle.api.nodes.NodeUtil
-
- columnEndsIn(SourceSectionFilter.IndexRange...) - Method in class com.oracle.truffle.api.instrumentation.SourceSectionFilter.Builder
-
Add a filter for all sources sections where the column ends in one of the given index
ranges.
- columnIn(SourceSectionFilter.IndexRange...) - Method in class com.oracle.truffle.api.instrumentation.SourceSectionFilter.Builder
-
Add a filter for all source sections where the columns are contained in one of the given
index ranges.
- columnIn(int, int) - Method in class com.oracle.truffle.api.instrumentation.SourceSectionFilter.Builder
-
Add a filter for all source sections where the column is inside a startColumn (first
index inclusive) plus a given length (last index exclusive).
- columnIs(int) - Method in class com.oracle.truffle.api.debug.Breakpoint.Builder
-
Specifies the breakpoint's column number.
- columnNotIn(SourceSectionFilter.IndexRange...) - Method in class com.oracle.truffle.api.instrumentation.SourceSectionFilter.Builder
-
Add a filter for all source sections where columns are not contained in one of the given
index ranges.
- columnStartsIn(SourceSectionFilter.IndexRange...) - Method in class com.oracle.truffle.api.instrumentation.SourceSectionFilter.Builder
-
Add a filter for all source sections where the column starts in one of the given index
ranges.
- com.oracle.truffle.api - package com.oracle.truffle.api
-
- com.oracle.truffle.api.debug - package com.oracle.truffle.api.debug
-
The debug package contains a debugger API that can be used to install breakpoints, step through
and control the execution of Truffle guest language applications.
- com.oracle.truffle.api.dsl - package com.oracle.truffle.api.dsl
-
Domain specific language that allows to specify specializing AST nodes in a declarative way.
- com.oracle.truffle.api.exception - package com.oracle.truffle.api.exception
-
This package contains a Truffle exception base class.
- com.oracle.truffle.api.frame - package com.oracle.truffle.api.frame
-
Package containing stack frame representation classes.
- com.oracle.truffle.api.instrumentation - package com.oracle.truffle.api.instrumentation
-
The instrumentation API provides a way to introspect and inject behavior into interpreters
written using the Truffle framework.
- com.oracle.truffle.api.interop - package com.oracle.truffle.api.interop
-
This package contains classes that specify the contract for inter-operability between Truffle
guest languages and tools.
- com.oracle.truffle.api.io - package com.oracle.truffle.api.io
-
This package contains I/O related classes used by
TruffleLanguage
implementations.
- com.oracle.truffle.api.library - package com.oracle.truffle.api.library
-
Truffle Libraries allow language implementations to use polymorphic dispatch for receiver types
with support for implementation specific caching/profiling and customization of the dispatch.
- com.oracle.truffle.api.memory - package com.oracle.truffle.api.memory
-
This package contains memory related classes used by
TruffleLanguage implementations.
- com.oracle.truffle.api.nodes - package com.oracle.truffle.api.nodes
-
- com.oracle.truffle.api.object - package com.oracle.truffle.api.object
-
Dynamic object storage model.
- com.oracle.truffle.api.profiles - package com.oracle.truffle.api.profiles
-
A profile is a Truffle utility class that uses the
Truffle compiler directives to guard for and/or
forward runtime information to the compiler.
- com.oracle.truffle.api.source - package com.oracle.truffle.api.source
-
- com.oracle.truffle.api.staticobject - package com.oracle.truffle.api.staticobject
-
Static Object Model APIs to represent the layout of objects that, once defined, do not change the
number and the type of their properties.
- com.oracle.truffle.api.utilities - package com.oracle.truffle.api.utilities
-
Various utility classes that aim to make the development of TruffleLanguage guest languages
easier.
- command(List<String>) - Method in class com.oracle.truffle.api.io.TruffleProcessBuilder
-
Sets the executable and arguments.
- command(String...) - Method in class com.oracle.truffle.api.io.TruffleProcessBuilder
-
Sets the executable and arguments.
- compareAndExchangeBoolean(Object, boolean, boolean) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Atomically sets the boolean value represented by this StaticProperty and stored in the
specified static object to newValue if the current value, referred to as the
witness value, == the expected value.
- compareAndExchangeByte(Object, byte, byte) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Atomically sets the byte value represented by this StaticProperty and stored in the specified
static object to newValue if the current value, referred to as the witness
value, == the expected value.
- compareAndExchangeChar(Object, char, char) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Atomically sets the char value represented by this StaticProperty and stored in the specified
static object to newValue if the current value, referred to as the witness value
, == the expected value.
- compareAndExchangeDouble(Object, double, double) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Atomically sets the double value represented by this StaticProperty and stored in the
specified static object to newValue if the current value, referred to as the
witness value, == the expected value.
- compareAndExchangeFloat(Object, float, float) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Atomically sets the float value represented by this StaticProperty and stored in the
specified static object to newValue if the current value, referred to as the
witness value, == the expected value.
- compareAndExchangeInt(Object, int, int) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Atomically sets the int value represented by this StaticProperty and stored in the specified
static object to newValue if the current value, referred to as the witness
value, == the expected value.
- compareAndExchangeLong(Object, long, long) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Atomically sets the long value represented by this StaticProperty and stored in the specified
static object to newValue if the current value, referred to as the witness
value, == the expected value.
- compareAndExchangeObject(Object, Object, Object) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Atomically sets the
Object value represented by this StaticProperty and stored in the
specified static object to
newValue if the current value, referred to as the
witness value ,
== the expected value.
- compareAndExchangeShort(Object, short, short) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Atomically sets the short value represented by this StaticProperty and stored in the
specified static object to newValue if the current value, referred to as the
witness value, == the expected value.
- compareAndSwapBoolean(Object, boolean, boolean) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Atomically sets the boolean value represented by this StaticProperty and stored in the
specified static object to the given updated value if the current value == the
expected value.
- compareAndSwapByte(Object, byte, byte) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Atomically sets the byte value represented by this StaticProperty and stored in the specified
static object to the given updated value if the current value == the expected value.
- compareAndSwapChar(Object, char, char) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Atomically sets the char value represented by this StaticProperty and stored in the specified
static object to the given updated value if the current value == the expected value.
- compareAndSwapDouble(Object, double, double) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Atomically sets the double value represented by this StaticProperty and stored in the
specified static object to the given updated value if the current value == the
expected value.
- compareAndSwapFloat(Object, float, float) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Atomically sets the float value represented by this StaticProperty and stored in the
specified static object to the given updated value if the current value == the
expected value.
- compareAndSwapInt(Object, int, int) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Atomically sets the int value represented by this StaticProperty and stored in the specified
static object to the given updated value if the current value == the expected value.
- compareAndSwapLong(Object, long, long) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Atomically sets the long value represented by this StaticProperty and stored in the specified
static object to the given updated value if the current value == the expected value.
- compareAndSwapObject(Object, Object, Object) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Atomically sets the
Object value represented by this StaticProperty and stored in the
specified static object to the given updated value if the current value
== the
expected value.
- compareAndSwapShort(Object, short, short) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Atomically sets the short value represented by this StaticProperty and stored in the
specified static object to the given updated value if the current value == the
expected value.
- compilationConstant(Object) - Static method in class com.oracle.truffle.api.CompilerAsserts
-
Assertion that the corresponding value is reduced to a constant during compilation.
- CompilerAsserts - Class in com.oracle.truffle.api
-
Assertions about the code produced by the Truffle compiler.
- CompilerDirectives - Class in com.oracle.truffle.api
-
Directives that influence the optimizations of the Truffle compiler.
- CompilerDirectives.CompilationFinal - Annotation Type in com.oracle.truffle.api
-
Marks fields that should be considered final for a Truffle compilation although they are not
final while executing in the interpreter.
- CompilerDirectives.TruffleBoundary - Annotation Type in com.oracle.truffle.api
-
Marks a method that it is considered as a boundary for Truffle partial evaluation.
- CompilerDirectives.ValueType - Annotation Type in com.oracle.truffle.api
-
Marks classes as value types.
- CompilerOptions - Interface in com.oracle.truffle.api
-
Allows options to be set to control the compilation of a specific
RootNode, without
creating a dependency on the specific compiler used.
- concat(T[], T[]) - Static method in class com.oracle.truffle.api.nodes.NodeUtil
-
- ConditionProfile - Class in com.oracle.truffle.api.profiles
-
ConditionProfiles are useful to profile the outcome of conditions.
- config(String, Object) - Method in class com.oracle.truffle.api.TruffleContext.Builder
-
- config(String) - Method in class com.oracle.truffle.api.TruffleLogger
-
- config(Supplier<String>) - Method in class com.oracle.truffle.api.TruffleLogger
-
- connectNodes(Object, Object) - Method in class com.oracle.truffle.api.nodes.GraphPrintVisitor.GraphPrintAdapter
-
Deprecated.
- connectNodes(Object, Object, String) - Method in class com.oracle.truffle.api.nodes.GraphPrintVisitor.GraphPrintAdapter
-
Deprecated.
- constantLocation(Object) - Method in class com.oracle.truffle.api.object.Shape.Allocator
-
Creates a new location from a constant value.
- containsKey(DynamicObject, Object) - Method in class com.oracle.truffle.api.object.DynamicObjectLibrary
-
Returns true if this object contains a property with the given key.
- content(CharSequence) - Method in class com.oracle.truffle.api.source.Source.LiteralBuilder
-
- content(ByteSequence) - Method in class com.oracle.truffle.api.source.Source.LiteralBuilder
-
- content(CharSequence) - Method in class com.oracle.truffle.api.source.Source.SourceBuilder
-
- content(ByteSequence) - Method in class com.oracle.truffle.api.source.Source.SourceBuilder
-
- CONTENT_NONE - Static variable in class com.oracle.truffle.api.source.Source
-
- contextClosed(DebugContext) - Method in interface com.oracle.truffle.api.debug.DebugContextsListener
-
Notifies about close of a polyglot context.
- contextCreated(DebugContext) - Method in interface com.oracle.truffle.api.debug.DebugContextsListener
-
Notifies about creation of a new polyglot context.
- ContextLocal<T> - Class in com.oracle.truffle.api
-
A context local reference that refers to a value that is created for each polyglot context.
- ContextLocal(Object) - Constructor for class com.oracle.truffle.api.ContextLocal
-
Custom subclasses of context local are not allowed.
- ContextReference() - Constructor for class com.oracle.truffle.api.TruffleLanguage.ContextReference
-
Constructors for subclasses.
- ContextsListener - Interface in com.oracle.truffle.api.instrumentation
-
Listener to be notified about changes of contexts in guest language application.
- ContextThreadLocal<T> - Class in com.oracle.truffle.api
-
A context thread local reference that refers to a value that is created for each polyglot context
and thread.
- ContextThreadLocal(Object) - Constructor for class com.oracle.truffle.api.ContextThreadLocal
-
Custom subclasses of context local are not allowed.
- CONTINUE_LOOP_STATUS - Static variable in interface com.oracle.truffle.api.nodes.RepeatingNode
-
A value indicating that the loop should be repeated.
- ControlFlowException - Exception in com.oracle.truffle.api.nodes
-
An exception thrown to model control flow in a Truffle interpreter.
- ControlFlowException() - Constructor for exception com.oracle.truffle.api.nodes.ControlFlowException
-
Creates an exception thrown to model control flow.
- convertRawValue(Class<? extends TruffleLanguage<?>>, Object) - Method in class com.oracle.truffle.api.debug.DebugScope
-
Converts the value to a DebugValue, or returns null if the requesting language
class does not match the root node guest language.
- copy() - Method in class com.oracle.truffle.api.frame.FrameDescriptor
-
Deeper copy of the descriptor.
- copy() - Method in class com.oracle.truffle.api.instrumentation.ProbeNode
-
Creates a shallow copy of this node.
- copy() - Method in class com.oracle.truffle.api.nodes.Node
-
Creates a shallow copy of this node.
- copy() - Method in class com.oracle.truffle.api.nodes.RootNode
-
- copy() - Method in class com.oracle.truffle.api.object.Shape.Allocator
-
Creates an copy of this allocator state.
- copy(TruffleFile, CopyOption...) - Method in class com.oracle.truffle.api.TruffleFile
-
Copies the file.
- copyIntoOSRFrame(VirtualFrame, VirtualFrame, int) - Method in interface com.oracle.truffle.api.nodes.BytecodeOSRNode
-
Copies the contents of the parentFrame into the osrFrame used to execute OSR.
- count(int) - Method in class com.oracle.truffle.api.debug.StepConfig.Builder
-
Provide the step count.
- countNodes(Node) - Static method in class com.oracle.truffle.api.nodes.NodeUtil
-
- countNodes(Node, NodeUtil.NodeCountFilter) - Static method in class com.oracle.truffle.api.nodes.NodeUtil
-
- countsTowardsStackTraceLimit() - Method in class com.oracle.truffle.api.nodes.RootNode
-
- create(Object...) - Static method in interface com.oracle.truffle.api.dsl.Introspection.Provider
-
Factory method to create
Node introspection data.
- create() - Static method in class com.oracle.truffle.api.dsl.SpecializationStatistics
-
Creates a new specialization statistics instance.
- create(Node, String[]) - Static method in class com.oracle.truffle.api.dsl.SpecializationStatistics.NodeStatistics
-
Called when a new node statistics object is created.
- create(EventContext) - Method in interface com.oracle.truffle.api.instrumentation.ExecutionEventNodeFactory
-
- create(TruffleContext) - Method in interface com.oracle.truffle.api.instrumentation.TruffleInstrument.ContextLocalFactory
-
Returns a new value for a context local of an instrument.
- create(TruffleContext, Thread) - Method in interface com.oracle.truffle.api.instrumentation.TruffleInstrument.ContextThreadLocalFactory
-
Returns a new value for a context thread local for a context and thread.
- create() - Method in interface com.oracle.truffle.api.instrumentation.TruffleInstrument.Provider
-
- create(int, int, int) - Static method in exception com.oracle.truffle.api.interop.ArityException
-
Creates an
ArityException to indicate that the wrong number of arguments were
provided.
- create(int, int, int, Throwable) - Static method in exception com.oracle.truffle.api.interop.ArityException
-
Creates an
ArityException to indicate that the wrong number of arguments were
provided.
- create(long) - Static method in exception com.oracle.truffle.api.interop.InvalidArrayIndexException
-
- create(long, Throwable) - Static method in exception com.oracle.truffle.api.interop.InvalidArrayIndexException
-
- create(long, long) - Static method in exception com.oracle.truffle.api.interop.InvalidBufferOffsetException
-
- create(long, long, Throwable) - Static method in exception com.oracle.truffle.api.interop.InvalidBufferOffsetException
-
- create() - Static method in exception com.oracle.truffle.api.interop.StopIterationException
-
- create(Throwable) - Static method in exception com.oracle.truffle.api.interop.StopIterationException
-
- create(String) - Static method in exception com.oracle.truffle.api.interop.UnknownIdentifierException
-
- create(String, Throwable) - Static method in exception com.oracle.truffle.api.interop.UnknownIdentifierException
-
- create(Object) - Static method in exception com.oracle.truffle.api.interop.UnknownKeyException
-
- create(Object, Throwable) - Static method in exception com.oracle.truffle.api.interop.UnknownKeyException
-
- create() - Static method in exception com.oracle.truffle.api.interop.UnsupportedMessageException
-
- create(Throwable) - Static method in exception com.oracle.truffle.api.interop.UnsupportedMessageException
-
- create(Object[]) - Static method in exception com.oracle.truffle.api.interop.UnsupportedTypeException
-
- create(Object[], String) - Static method in exception com.oracle.truffle.api.interop.UnsupportedTypeException
-
- create(Object[], String, Throwable) - Static method in exception com.oracle.truffle.api.interop.UnsupportedTypeException
-
- create(Object) - Method in class com.oracle.truffle.api.library.LibraryFactory
-
Creates a new manually dispatched cached library for a given receiver.
- create(T[], BlockNode.ElementExecutor<T>) - Static method in class com.oracle.truffle.api.nodes.BlockNode
-
Creates a new block node.
- create(CallTarget) - Static method in class com.oracle.truffle.api.nodes.DirectCallNode
-
- create(Class<?>, Class<?>[]) - Static method in class com.oracle.truffle.api.nodes.ExecutionSignature
-
Creates a new execution signature of a
RootNode.
- create() - Static method in class com.oracle.truffle.api.nodes.IndirectCallNode
-
- create(Object, Location, int) - Static method in class com.oracle.truffle.api.object.Property
-
Create a new property.
- create() - Static method in class com.oracle.truffle.api.profiles.BranchProfile
-
Call to create a new instance of a branch profile.
- create() - Static method in class com.oracle.truffle.api.profiles.ConditionProfile
-
- create() - Static method in class com.oracle.truffle.api.profiles.LoopConditionProfile
-
- create() - Method in interface com.oracle.truffle.api.staticobject.DefaultStaticObjectFactory
-
Creates a static object of type
Object that have a visible constructor that accepts
no arguments.
- create(C) - Method in interface com.oracle.truffle.api.TruffleLanguage.ContextLocalFactory
-
Returns a new value for a context local of a language.
- create(Class<T>) - Static method in class com.oracle.truffle.api.TruffleLanguage.ContextReference
-
Creates a new instance of a context reference for an registered language.
- create(C, Thread) - Method in interface com.oracle.truffle.api.TruffleLanguage.ContextThreadLocalFactory
-
Returns a new value for a context thread local for a language context and thread.
- create(Class<T>) - Static method in class com.oracle.truffle.api.TruffleLanguage.LanguageReference
-
Creates a new instance of a langauge reference for an registered language.
- create() - Method in interface com.oracle.truffle.api.TruffleLanguage.Provider
-
- create(Node, RootCallTarget, Frame) - Static method in class com.oracle.truffle.api.TruffleStackTraceElement
-
Create a new stack trace element.
- createAOT(LibraryExport<T>) - Method in class com.oracle.truffle.api.library.LibraryFactory
-
Creates an AOT version for a library export.
- createAssertions(T) - Method in class com.oracle.truffle.api.library.LibraryFactory
-
Creates an assertion version of this library.
- createAssumption() - Method in interface com.oracle.truffle.api.TruffleRuntime
-
Creates a new assumption object that can be checked and invalidated.
- createAssumption(String) - Method in interface com.oracle.truffle.api.TruffleRuntime
-
Creates a new assumption object with a given name that can be checked and invalidated.
- createBinaryProfile() - Static method in class com.oracle.truffle.api.profiles.ConditionProfile
-
Returns a
ConditionProfile that speculates on conditions to be never
true or to be never
false.
- createCached(Object) - Method in class com.oracle.truffle.api.library.LibraryExport
-
- createCallTarget(RootNode) - Method in interface com.oracle.truffle.api.TruffleRuntime
-
Creates a new call target for a given root node.
- CreateCast - Annotation Type in com.oracle.truffle.api.dsl
-
Specifies a factory method that creates a
Node which is used to cast this child.
- createClassProfile() - Static method in class com.oracle.truffle.api.profiles.ValueProfile
-
Returns a value profile that profiles the exact class of a value.
- createCompilerOptions() - Method in interface com.oracle.truffle.api.TruffleRuntime
-
Creates an object which allows you to test for support of and set options specific for this
runtime.
- createConstantNode(Object) - Static method in class com.oracle.truffle.api.nodes.RootNode
-
Helper method to create a root node that always returns the same value.
- createContext(TruffleLanguage.Env) - Method in class com.oracle.truffle.api.TruffleLanguage
-
Creates internal representation of the executing context suitable for given environment.
- createContextLocal(TruffleInstrument.ContextLocalFactory<T>) - Method in class com.oracle.truffle.api.instrumentation.TruffleInstrument
-
Creates a new context local reference for this instrument.
- createContextLocal(TruffleLanguage.ContextLocalFactory<C, T>) - Method in class com.oracle.truffle.api.TruffleLanguage
-
Creates a new context local reference for this Truffle language.
- createContextThreadLocal(TruffleInstrument.ContextThreadLocalFactory<T>) - Method in class com.oracle.truffle.api.instrumentation.TruffleInstrument
-
Creates a new context thread local reference for this Truffle language.
- createContextThreadLocal(TruffleLanguage.ContextThreadLocalFactory<C, T>) - Method in class com.oracle.truffle.api.TruffleLanguage
-
Creates a new context thread local reference for this Truffle language.
- createCountingProfile() - Static method in class com.oracle.truffle.api.profiles.ConditionProfile
-
Returns a
ConditionProfile that speculates on conditions to be never
true or to be never
false.
- createCountingProfile() - Static method in class com.oracle.truffle.api.profiles.LoopConditionProfile
-
- createDelegate(LibraryFactory<T>, T) - Static method in class com.oracle.truffle.api.library.LibraryExport
-
Internal method for generated code only.
- createDelegate(T) - Method in class com.oracle.truffle.api.library.LibraryFactory
-
Creates a delegate version of a library.
- createDirectCallNode(CallTarget) - Method in interface com.oracle.truffle.api.TruffleRuntime
-
- createDirectories(FileAttribute<?>...) - Method in class com.oracle.truffle.api.TruffleFile
-
Creates a directory and all nonexistent parent directories.
- createDirectory(FileAttribute<?>...) - Method in class com.oracle.truffle.api.TruffleFile
-
Creates a new directory.
- createDispatched(int) - Method in class com.oracle.truffle.api.library.LibraryFactory
-
Creates a new cached and automatically dispatched library given a limit.
- createDispatchImpl(int) - Method in class com.oracle.truffle.api.library.LibraryFactory
-
Creates a cached automatically dispatched version of this library.
- createElementForNode(Object) - Method in class com.oracle.truffle.api.nodes.GraphPrintVisitor.GraphPrintAdapter
-
Deprecated.
- createEqualityProfile() - Static method in class com.oracle.truffle.api.profiles.PrimitiveValueProfile
-
- createExecuteSourceBinding(SourceFilter, T, boolean) - Method in class com.oracle.truffle.api.instrumentation.Instrumenter
-
Create a
binding to get notifications for each newly executed
Source.
- createFactory() - Method in class com.oracle.truffle.api.object.Shape
-
- createFile(FileAttribute<?>...) - Method in class com.oracle.truffle.api.TruffleFile
-
Creates a new empty file.
- createFileTypeDetectors() - Method in interface com.oracle.truffle.api.TruffleLanguage.Provider
-
- createHostAdapterClass(Class<?>[]) - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Creates a Java host adapter class that can be
instantiated with
a guest object (as the last argument) in order to create adapter instances of the
provided host types, (non-final) methods of which delegate to the guest object's
invocable
members.
- createHostAdapterClassWithStaticOverrides(Class<?>[], Object) - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
- createIdentityProfile() - Static method in class com.oracle.truffle.api.profiles.ByteValueProfile
-
Returns a value profile that profiles the exact value of a byte.
- createIdentityProfile() - Static method in class com.oracle.truffle.api.profiles.IntValueProfile
-
Returns a value profile that profiles the exact value of an int.
- createIdentityProfile() - Static method in class com.oracle.truffle.api.profiles.LongValueProfile
-
Returns a value profile that profiles the exact value of an long.
- createIdentityProfile() - Static method in class com.oracle.truffle.api.profiles.ValueProfile
-
Returns a value profile that profiles the object identity of a value.
- createIndirectCallNode() - Method in interface com.oracle.truffle.api.TruffleRuntime
-
- createLayout(Layout.Builder) - Method in interface com.oracle.truffle.api.object.LayoutFactory
-
- createLink(TruffleFile) - Method in class com.oracle.truffle.api.TruffleFile
-
Creates a new link to an existing target (optional operation).
- createLoadSourceBinding(SourceFilter, T, boolean) - Method in class com.oracle.truffle.api.instrumentation.Instrumenter
-
Create a
binding to get notifications for each newly loaded
Source.
- createLoadSourceSectionBinding(SourceSectionFilter, T, boolean) - Method in class com.oracle.truffle.api.instrumentation.Instrumenter
-
- createLocation(Shape, Object) - Method in interface com.oracle.truffle.api.object.LocationFactory
-
- createLoopNode(RepeatingNode) - Method in interface com.oracle.truffle.api.TruffleRuntime
-
Creates a new loop node with an implementation provided by a Truffle runtime implementation.
- createMaterializedFrame(Object[]) - Method in interface com.oracle.truffle.api.TruffleRuntime
-
Creates a new materialized frame object that can be used to store values.
- createMaterializedFrame(Object[], FrameDescriptor) - Method in interface com.oracle.truffle.api.TruffleRuntime
-
Creates a new materialized frame object with the given frame descriptor that can be used to
store values.
- createMessageBitSet(LibraryFactory<?>, String...) - Static method in class com.oracle.truffle.api.library.LibraryExport
-
Internal method for generated code only.
- createMessageBitSet(Message...) - Method in class com.oracle.truffle.api.library.LibraryFactory
-
Creates a final bitset of the given messages.
- createNode(Object...) - Method in interface com.oracle.truffle.api.dsl.NodeFactory
-
Instantiates the node using the arguments array.
- createPrimitiveValue(Object, LanguageInfo) - Method in class com.oracle.truffle.api.debug.DebuggerSession
-
Creates a
DebugValue object that wraps a primitive value.
- createProperty(Object, Location) - Method in interface com.oracle.truffle.api.object.LayoutFactory
-
- createProperty(Object, Location, int) - Method in interface com.oracle.truffle.api.object.LayoutFactory
-
- createProxy(ReflectionLibrary) - Method in class com.oracle.truffle.api.library.LibraryFactory
-
Creates a proxy version of this library.
- createRawIdentityProfile() - Static method in class com.oracle.truffle.api.profiles.DoubleValueProfile
-
- createRawIdentityProfile() - Static method in class com.oracle.truffle.api.profiles.FloatValueProfile
-
- createRedirectToStream(OutputStream) - Method in class com.oracle.truffle.api.io.TruffleProcessBuilder
-
- createSection(int, int, int, int) - Method in class com.oracle.truffle.api.source.Source
-
Create representation of a contiguous region in the source that does not have the character
content available.
- createSection(int) - Method in class com.oracle.truffle.api.source.Source
-
Creates a representation of a line of text in the source identified only by line number, from
which the character information will be computed.
- createSection(int, int) - Method in class com.oracle.truffle.api.source.Source
-
Creates a representation of a contiguous region of text in the source.
- createSection(int, int, int) - Method in class com.oracle.truffle.api.source.Source
-
Creates a representation of a contiguous region of text in the source.
- createSymbolicLink(TruffleFile, FileAttribute<?>...) - Method in class com.oracle.truffle.api.TruffleFile
-
Creates a symbolic link to a target (optional operation).
- createTempDirectory(TruffleFile, String, FileAttribute<?>...) - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Creates a new directory in the specified or default temporary directory, using the given
prefix to generate its name.
- createTempFile(TruffleFile, String, String, FileAttribute<?>...) - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Creates a new empty file in the specified or default temporary directory, using the given
prefix and suffix to generate its name.
- createThread(Runnable) - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Creates a new thread that has access to the current language context.
- createThread(Runnable, TruffleContext) - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Creates a new thread that has access to the given context.
- createThread(Runnable, TruffleContext, ThreadGroup) - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Creates a new thread that has access to the given context.
- createThread(Runnable, TruffleContext, ThreadGroup, long) - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Creates a new thread that has access to the given context.
- createUnavailableSection() - Method in class com.oracle.truffle.api.source.Source
-
Returns an unavailable source section indicating that the source location is not available.
- createUncached(Object) - Method in class com.oracle.truffle.api.library.LibraryExport
-
- createUncachedDispatch() - Method in class com.oracle.truffle.api.library.LibraryFactory
-
Creates a uncached automatically dispatched version of this library.
- createUnwind(Object) - Method in class com.oracle.truffle.api.instrumentation.EventContext
-
Create an unwind throwable, that when thrown, abruptly breaks execution of a node and unwinds
it off the execution stack.
- createUnwind(Object, EventBinding<?>) - Method in class com.oracle.truffle.api.instrumentation.EventContext
-
Create an unwind throwable, that when thrown, abruptly breaks execution of a node and unwinds
it off the execution stack.
- createVirtualFrame(Object[], FrameDescriptor) - Method in interface com.oracle.truffle.api.TruffleRuntime
-
Creates a new virtual frame object that can be used to store values and is potentially
optimizable by the runtime.
- createWrapper(ProbeNode) - Method in interface com.oracle.truffle.api.instrumentation.InstrumentableNode
-
- CREATION_TIME - Static variable in class com.oracle.truffle.api.TruffleFile
-
The file's creation time.
- CyclicAssumption - Class in com.oracle.truffle.api.utilities
-
Holds an
Assumption, and knows how to recreate it with the same properties on
invalidation.
- CyclicAssumption(String) - Constructor for class com.oracle.truffle.api.utilities.CyclicAssumption
-
- GenerateAOT - Annotation Type in com.oracle.truffle.api.dsl
-
Allows nodes with specializations to be prepared for AOT.
- GenerateAOT.Exclude - Annotation Type in com.oracle.truffle.api.dsl
-
- GenerateAOT.Provider - Interface in com.oracle.truffle.api.dsl
-
Implemented by generated code.
- GeneratedBy - Annotation Type in com.oracle.truffle.api.dsl
-
Marks a type as being generated based on another class or method of a class.
- GenerateLibrary - Annotation Type in com.oracle.truffle.api.library
-
Libraries are specified with
public and
abstract Java classes that
extend the
Library class and are annotated by
@GenerateLibrary.
- GenerateLibrary.Abstract - Annotation Type in com.oracle.truffle.api.library
-
Makes a library message abstract, but allows to keep a default implementation.
- GenerateLibrary.DefaultExport - Annotation Type in com.oracle.truffle.api.library
-
Specifies
library implementations provided by default as a fallback.
- GenerateLibrary.DefaultExport.Repeat - Annotation Type in com.oracle.truffle.api.library
-
- GenerateNodeFactory - Annotation Type in com.oracle.truffle.api.dsl
-
Annotate nodes or base classes of nodes to generate factory handlers implementing the
NodeFactory interface.
- GenerateUncached - Annotation Type in com.oracle.truffle.api.dsl
-
Generates an uncached version of a node with specializations.
- GenerateWrapper - Annotation Type in com.oracle.truffle.api.instrumentation
-
- GenerateWrapper.Ignore - Annotation Type in com.oracle.truffle.api.instrumentation
-
Annotates a method which should not be instrumented in the generated wrapper subclass.
- GenerateWrapper.IncomingConverter - Annotation Type in com.oracle.truffle.api.instrumentation
-
Annotates a method to be used as incoming value converter.
- GenerateWrapper.OutgoingConverter - Annotation Type in com.oracle.truffle.api.instrumentation
-
Annotates a method to be used as outgoing value converter.
- GENERIC - Static variable in class com.oracle.truffle.api.nodes.ExecutionSignature
-
Returns a generic return profile where return and argument types are unknown.
- genericDispatch(Library, Object, Message, Object[], int) - Method in class com.oracle.truffle.api.library.LibraryFactory
-
Performs a generic dispatch for this library.
- get() - Method in class com.oracle.truffle.api.ContextLocal
-
Returns the context local value for the currently entered context.
- get(TruffleContext) - Method in class com.oracle.truffle.api.ContextLocal
-
Returns the context local value for an explicit
context.
- get() - Method in class com.oracle.truffle.api.ContextThreadLocal
-
Returns the context thread local value for the currently entered context and thread.
- get(Thread) - Method in class com.oracle.truffle.api.ContextThreadLocal
-
Returns the context thread local value for the currently entered context and the given
thread.
- get(TruffleContext) - Method in class com.oracle.truffle.api.ContextThreadLocal
-
Returns the context thread local value for the given context and the current thread.his
method is intended to be used on compiled code paths.
- get(TruffleContext, Thread) - Method in class com.oracle.truffle.api.ContextThreadLocal
-
Returns the context thread local value for the given context and the given thread.
- get() - Method in class com.oracle.truffle.api.nodes.EncapsulatingNodeReference
-
Returns the current encapsulating node for the current thread.
- get(Class<? extends Node>) - Static method in class com.oracle.truffle.api.nodes.NodeClass
-
- get(Node) - Static method in class com.oracle.truffle.api.nodes.NodeClass
-
- get(DynamicObject, Shape) - Method in class com.oracle.truffle.api.object.Location
-
Get object value as object at this location in store.
- get(DynamicObject, boolean) - Method in class com.oracle.truffle.api.object.Location
-
Get object value as object at this location in store.
- get(DynamicObject) - Method in class com.oracle.truffle.api.object.Location
-
Get object value as object at this location in store.
- get(DynamicObject, Shape) - Method in class com.oracle.truffle.api.object.Property
-
Gets the value of this property of the object.
- get(DynamicObject, boolean) - Method in class com.oracle.truffle.api.object.Property
-
Gets the value of this property of the object.
- get(TruffleFile.AttributeDescriptor<T>) - Method in class com.oracle.truffle.api.TruffleFile.Attributes
-
Returns the attribute value.
- get(Node) - Method in class com.oracle.truffle.api.TruffleLanguage.ContextReference
-
Returns the current language context associated with the current thread.
- get(Node) - Method in class com.oracle.truffle.api.TruffleLanguage.LanguageReference
-
Returns the current language instance associated with the current thread.
- get() - Method in class com.oracle.truffle.api.utilities.AssumedValue
-
- get(int) - Method in class com.oracle.truffle.api.utilities.FinalBitSet
-
Returns the value of the bit with the specified index.
- getAbsoluteFile() - Method in class com.oracle.truffle.api.TruffleFile
-
- getActualArity() - Method in exception com.oracle.truffle.api.interop.ArityException
-
Returns the actual number of arguments provided by the foreign access.
- getAndAddInt(Object, int) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Atomically adds the given value to the current int value represented by this StaticProperty
and stored in the specified static object.
- getAndAddLong(Object, long) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Atomically adds the given value to the current long value represented by this StaticProperty
and stored in the specified static object.
- getAndSetInt(Object, int) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Atomically sets the int value represented by this StaticProperty and stored in the specified
static object to the given value and returns the old value.
- getAndSetLong(Object, long) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Atomically sets the long value represented by this StaticProperty and stored in the specified
static object to the given value and returns the old value.
- getAndSetObject(Object, Object) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Atomically sets the
Object value represented by this StaticProperty and stored in the
specified static object to the given value and returns the old value.
- getAOTExports() - Method in class com.oracle.truffle.api.library.LibraryFactory
-
Returns a list of ordered exports to be used for AOT preparation if supported.
- getApplicationArguments() - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Returns the application arguments that were provided for this context.
- getArgumentNames() - Method in class com.oracle.truffle.api.TruffleLanguage.ParsingRequest
-
Argument names.
- getArguments() - Method in interface com.oracle.truffle.api.frame.Frame
-
Retrieves the arguments object from this frame.
- getArgumentTypes() - Method in class com.oracle.truffle.api.nodes.ExecutionSignature
-
Returns the argument types of the execution signature.
- getArray() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Provides array elements when this value represents an array.
- getArraySize(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns the array size of the receiver.
- getAssumption() - Method in class com.oracle.truffle.api.utilities.CyclicAssumption
-
- getAsynchronousStackDepth() - Method in class com.oracle.truffle.api.TruffleLanguage
-
Get the depth of asynchronous stack.
- getAsynchronousStacks() - Method in class com.oracle.truffle.api.debug.SuspendedEvent
-
Get a list of asynchronous stack traces that led to scheduling of the current execution.
- getAsynchronousStackTrace(CallTarget, Frame) - Static method in exception com.oracle.truffle.api.TruffleStackTrace
-
Returns asynchronous guest language stack frames that led to the execution of given
CallTarget on the given
Frame.
- getAttribute(TruffleFile.AttributeDescriptor<T>, LinkOption...) - Method in class com.oracle.truffle.api.TruffleFile
-
Reads a single file's attribute.
- getAttributes(Collection<? extends TruffleFile.AttributeDescriptor<?>>, LinkOption...) - Method in class com.oracle.truffle.api.TruffleFile
-
Reads file's attributes as a bulk operation.
- getBoolean(FrameSlot) - Method in interface com.oracle.truffle.api.frame.Frame
-
Read access to a local variable of type boolean.
- getBoolean(DynamicObject, Shape) - Method in interface com.oracle.truffle.api.object.BooleanLocation
-
- getBoolean(DynamicObject, boolean) - Method in interface com.oracle.truffle.api.object.BooleanLocation
-
- getBoolean(Object) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Returns the boolean value represented by this StaticProperty and stored in the specified
static object.
- getBooleanSafe(Frame, FrameSlot) - Static method in class com.oracle.truffle.api.frame.FrameUtil
-
Read a frame slot that is guaranteed to be of the desired kind (either previously checked by
a guard or statically known).
- getBooleanVolatile(Object) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Returns the boolean value represented by this StaticProperty and stored in the specified
static object.
- getBreakpointConditionException(Breakpoint) - Method in class com.oracle.truffle.api.debug.SuspendedEvent
-
Returns the cause of failure, if any, during evaluation of a breakpoint's
condition.
- getBreakpoints() - Method in class com.oracle.truffle.api.debug.Debugger
-
Returns all breakpoints
installed
in this debugger instance, in the install order.
- getBreakpoints() - Method in class com.oracle.truffle.api.debug.DebuggerSession
-
Returns all breakpoints
installed
in this session, in the install order.
- getBreakpoints() - Method in class com.oracle.truffle.api.debug.SuspendedEvent
-
Returns the
breakpoints that individually would cause the "hit" where
execution is suspended.
- getBufferSize(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns the buffer size of the receiver, in bytes.
- getByte(FrameSlot) - Method in interface com.oracle.truffle.api.frame.Frame
-
Read access to a local variable of type byte.
- getByte(byte[], int) - Method in class com.oracle.truffle.api.memory.ByteArraySupport
-
Reads the byte at the given byte offset from the start of the buffer.
- getByte(Object) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Returns the byte value represented by this StaticProperty and stored in the specified static
object.
- getByteOffset() - Method in exception com.oracle.truffle.api.interop.InvalidBufferOffsetException
-
Returns the start byte offset of the invalid access from the start of the buffer.
- getBytes() - Method in class com.oracle.truffle.api.source.Source
-
- getByteSafe(Frame, FrameSlot) - Static method in class com.oracle.truffle.api.frame.FrameUtil
-
Read a frame slot that is guaranteed to be of the desired kind (either previously checked by
a guard or statically known).
- getByteVolatile(Object) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Returns the byte value represented by this StaticProperty and stored in the specified static
object.
- getCachedData(int) - Method in class com.oracle.truffle.api.dsl.Introspection.SpecializationInfo
-
Returns the cached state for a given specialization instance.
- getCallerFrame() - Method in interface com.oracle.truffle.api.TruffleRuntime
-
Accesses the caller frame.
- getCallNode() - Method in interface com.oracle.truffle.api.frame.FrameInstance
-
Returns a node representing the callsite of the next new target on the stack.
- getCallTarget() - Method in interface com.oracle.truffle.api.frame.FrameInstance
-
- getCallTarget() - Method in class com.oracle.truffle.api.nodes.DirectCallNode
-
Returns the originally supplied
CallTarget when this call node was created.
- getCallTarget() - Method in class com.oracle.truffle.api.nodes.RootNode
-
- getCallTarget() - Method in exception com.oracle.truffle.api.OptimizationFailedException
-
- getCanonicalFile(LinkOption...) - Method in class com.oracle.truffle.api.TruffleFile
-
Returns a
TruffleFile representing the real (canonical) path of an existing file.
- getCapability(Class<T>) - Method in interface com.oracle.truffle.api.TruffleRuntime
-
Requests a capability from the runtime.
- getCatchLocation() - Method in exception com.oracle.truffle.api.debug.DebugException
-
Get source code location where this exception is to be caught.
- getCause() - Method in exception com.oracle.truffle.api.exception.AbstractTruffleException
- getCause() - Method in exception com.oracle.truffle.api.interop.InteropException
-
Returns the cause of an interop exception.
- getChar(Object) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Returns the char value represented by this StaticProperty and stored in the specified static
object.
- getCharacters() - Method in class com.oracle.truffle.api.source.Source
-
Returns all characters of the source.
- getCharacters(int) - Method in class com.oracle.truffle.api.source.Source
-
Gets the text (not including a possible terminating newline) in a (1-based) numbered line.
- getCharacters() - Method in class com.oracle.truffle.api.source.SourceSection
-
Returns the source code fragment described by this section.
- getCharEndIndex() - Method in class com.oracle.truffle.api.source.SourceSection
-
Returns the index of the text position immediately following the last character in the
section.
- getCharIndex() - Method in class com.oracle.truffle.api.source.SourceSection
-
Returns the 0-based index of the first character in this section.
- getCharLength() - Method in class com.oracle.truffle.api.source.SourceSection
-
Returns the length of this section in characters.
- getCharVolatile(Object) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Returns the char value represented by this StaticProperty and stored in the specified static
object.
- getChildren() - Method in class com.oracle.truffle.api.nodes.Node
-
Iterator over the children of this node.
- getClonedCallTarget() - Method in class com.oracle.truffle.api.nodes.DirectCallNode
-
- getColumnNumber(int) - Method in class com.oracle.truffle.api.source.Source
-
Given a 0-based character offset, return the 1-based number of the column at the position.
- getCompilationTier() - Method in interface com.oracle.truffle.api.frame.FrameInstance
-
Returns an integer for the optimized tier of this method.
- getCompilerOptions() - Method in class com.oracle.truffle.api.nodes.RootNode
-
Get compiler options specific to this RootNode.
- getCondition() - Method in class com.oracle.truffle.api.debug.Breakpoint
-
Returns the expression used to create the current breakpoint condition, null if no condition
set.
- getConfig() - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Configuration arguments passed from an outer language context to an inner language
context.
- getContext() - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Returns the polyglot context associated with this environment.
- getContextOptionDescriptors() - Method in class com.oracle.truffle.api.instrumentation.TruffleInstrument
-
Returns a set of option descriptors for instrument options that can be specified per context.
- getCost() - Method in class com.oracle.truffle.api.instrumentation.ProbeNode
-
- getCost() - Method in class com.oracle.truffle.api.nodes.BlockNode
-
- getCost() - Method in class com.oracle.truffle.api.nodes.Node
-
Returns a rough estimate for the cost of this
Node.
- getCreationTime(LinkOption...) - Method in class com.oracle.truffle.api.TruffleFile
-
Returns the creation time.
- getCurrent() - Static method in class com.oracle.truffle.api.nodes.EncapsulatingNodeReference
-
Returns the encapsulating node reference of the
current
thread.
- getCurrent() - Static method in class com.oracle.truffle.api.TruffleSafepoint
-
Returns the current safepoint configuration for the current thread.
- getCurrentCallTarget() - Method in class com.oracle.truffle.api.nodes.DirectCallNode
-
- getCurrentFrame() - Method in interface com.oracle.truffle.api.TruffleRuntime
-
Accesses the current frame, i.e., the frame of the closest
CallTarget.
- getCurrentRootNode() - Method in class com.oracle.truffle.api.nodes.DirectCallNode
-
- getCurrentWorkingDirectory() - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Gets the current working directory.
- getDebugAsynchronousStacks() - Method in exception com.oracle.truffle.api.debug.DebugException
-
Get a list of asynchronous stack traces that led to scheduling of the exception's execution.
- getDebugger() - Method in class com.oracle.truffle.api.debug.DebuggerSession
-
Returns the
debugger instance that this session is associated with.
- getDebugProperties() - Method in class com.oracle.truffle.api.nodes.Node
-
Returns properties of this node interesting for debugging and can be overwritten by
subclasses to add their own custom properties.
- getDebugStackTrace() - Method in exception com.oracle.truffle.api.debug.DebugException
-
Gets stack trace elements of guest languages.
- getDeclaredValue(String) - Method in class com.oracle.truffle.api.debug.DebugScope
-
Get a local variable declared in this scope by name.
- getDeclaredValues() - Method in class com.oracle.truffle.api.debug.DebugScope
-
Get local variables declared in this scope, valid at the current suspension point.
- getDeclaringMetaObject(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns declaring meta object.
- getDefaultClass(Object) - Method in class com.oracle.truffle.api.library.LibraryFactory
-
Returns default exported used for a given receiver.
- getDefaultExport() - Method in interface com.oracle.truffle.api.library.DefaultExportProvider
-
Returns the default export class to be used for this provider.
- getDefaultMimeType() - Method in class com.oracle.truffle.api.nodes.LanguageInfo
-
Returns the default MIME type of a language or null if no default mime-type is
set.
- getDefaultValue() - Method in class com.oracle.truffle.api.frame.FrameDescriptor
-
Default value for the created slots.
- getDelegateExportLibrary(Object) - Method in interface com.oracle.truffle.api.library.LibraryExport.DelegateExport
-
Internal method for generated code only.
- getDelegateExportMessages() - Method in interface com.oracle.truffle.api.library.LibraryExport.DelegateExport
-
Internal method for generated code only.
- getDelegateLibrary(T, Object) - Static method in class com.oracle.truffle.api.library.LibraryFactory
-
Returns the delegated library to use when messages are delegated.
- getDelegateNode() - Method in interface com.oracle.truffle.api.instrumentation.InstrumentableNode.WrapperNode
-
The
instrumentable guest language node, adopted as a child,
whose execution events the wrapper reports to the instrumentation framework.
- getDescription() - Method in class com.oracle.truffle.api.nodes.Node
-
Returns a user-readable description of the purpose of the Node, or "" if no description is
available.
- getDouble(FrameSlot) - Method in interface com.oracle.truffle.api.frame.Frame
-
Read access to a local variable of type double.
- getDouble(byte[], int) - Method in class com.oracle.truffle.api.memory.ByteArraySupport
-
Reads the double at the given byte offset from the start of the buffer.
- getDouble(DynamicObject, Shape) - Method in interface com.oracle.truffle.api.object.DoubleLocation
-
- getDouble(DynamicObject, boolean) - Method in interface com.oracle.truffle.api.object.DoubleLocation
-
- getDouble(Object) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Returns the double value represented by this StaticProperty and stored in the specified
static object.
- getDoubleOrDefault(DynamicObject, Object, Object) - Method in class com.oracle.truffle.api.object.DynamicObjectLibrary
-
Gets the value of an existing property or returns the provided default value if no such
property exists.
- getDoubleSafe(Frame, FrameSlot) - Static method in class com.oracle.truffle.api.frame.FrameUtil
-
Read a frame slot that is guaranteed to be of the desired kind (either previously checked by
a guard or statically known).
- getDoubleVolatile(Object) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Returns the double value represented by this StaticProperty and stored in the specified
static object.
- getDynamicFieldAnnotation() - Method in class com.oracle.truffle.api.object.Layout.Access
-
Deprecated.
- getDynamicType(DynamicObject) - Method in class com.oracle.truffle.api.object.DynamicObjectLibrary
-
Gets the dynamic type identifier currently associated with this object.
- getDynamicType() - Method in class com.oracle.truffle.api.object.Shape
-
Get the shape's dynamic object type identifier.
- getElement() - Method in class com.oracle.truffle.api.instrumentation.EventBinding
-
- getElements() - Method in class com.oracle.truffle.api.nodes.BlockNode
-
Returns the elements of the block node.
- getEncapsulatingSourceSection() - Method in class com.oracle.truffle.api.nodes.Node
-
Retrieves the segment of guest language source code that is represented by this Node, if
present; otherwise retrieves the segment represented by the nearest AST ancestor that has
this information.
- getEndColumn() - Method in class com.oracle.truffle.api.source.SourceSection
-
Returns the 1-based column number of the last character in this section (inclusive).
- getEndLine() - Method in class com.oracle.truffle.api.source.SourceSection
-
Returns 1-based line number of the last character in this section (inclusive).
- getEnteredContext() - Method in class com.oracle.truffle.api.instrumentation.TruffleInstrument.Env
-
Returns the entered
TruffleContext or
null when no context is entered.
- getEnvironment() - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Returns an unmodifiable map of the process environment.
- getException() - Method in class com.oracle.truffle.api.debug.SuspendedEvent
-
Returns the debugger representation of a guest language exception that caused this suspended
event (via an exception breakpoint, for instance).
- getExceptionCause(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns the internal cause of the receiver.
- getExceptionExitStatus(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns exception exit status of the receiver.
- getExceptionMessage(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns exception message of the receiver.
- getExceptionObject() - Method in exception com.oracle.truffle.api.debug.DebugException
-
Get a guest language object representing the exception, if any.
- getExceptionStackTrace(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns the exception stack trace of the receiver that is of type exception.
- getExceptionType(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
- getExecutableName(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns executable name of the receiver.
- getExecutionSignature() - Method in interface com.oracle.truffle.api.dsl.NodeFactory
-
Returns a list of children that will be executed by the created node.
- getExpectedMaxArity() - Method in exception com.oracle.truffle.api.interop.ArityException
-
Returns the maximum number of arguments that are expected.
- getExpectedMinArity() - Method in exception com.oracle.truffle.api.interop.ArityException
-
Returns the minimum number of arguments that are expected.
- getExportedSymbols() - Method in class com.oracle.truffle.api.debug.DebuggerSession
-
Returns a polyglot scope - symbols explicitly exported by languages.
- getFactory() - Static method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns the library factory for the interop library.
- getFactory() - Static method in class com.oracle.truffle.api.interop.NodeLibrary
-
Returns the library factory for the node library.
- getFactory() - Static method in class com.oracle.truffle.api.library.DynamicDispatchLibrary
-
- getFactory() - Method in class com.oracle.truffle.api.library.Message
-
- getFactory() - Static method in class com.oracle.truffle.api.library.ReflectionLibrary
-
- getFactory() - Static method in class com.oracle.truffle.api.object.DynamicObjectLibrary
-
- getFactory() - Method in class com.oracle.truffle.api.staticobject.StaticShape
-
Returns an instance of the
default or the
user-defined factory interface that must
be used to allocate static objects with the current shape.
- getFieldName(Object) - Method in class com.oracle.truffle.api.nodes.NodeClass
-
- getFieldObject(Object, Node) - Method in class com.oracle.truffle.api.nodes.NodeClass
-
- getFieldType(Object) - Method in class com.oracle.truffle.api.nodes.NodeClass
-
- getFieldValue(Object, Node) - Method in class com.oracle.truffle.api.nodes.NodeClass
-
- getFileNameSeparator() - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Returns the name separator used to separate names in
TruffleFile's path string.
- getFinalAssumption() - Method in class com.oracle.truffle.api.object.Location
-
Returns the assumption that this location is final.
- getFlags() - Method in class com.oracle.truffle.api.object.Property
-
Get property flags, which are free for language-specific use.
- getFlags() - Method in class com.oracle.truffle.api.object.Shape
-
- getFloat(FrameSlot) - Method in interface com.oracle.truffle.api.frame.Frame
-
Read access to a local variable of type float.
- getFloat(byte[], int) - Method in class com.oracle.truffle.api.memory.ByteArraySupport
-
Reads the float at the given byte offset from the start of the buffer.
- getFloat(Object) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Returns the float value represented by this StaticProperty and stored in the specified static
object.
- getFloatSafe(Frame, FrameSlot) - Static method in class com.oracle.truffle.api.frame.FrameUtil
-
Read a frame slot that is guaranteed to be of the desired kind (either previously checked by
a guard or statically known).
- getFloatVolatile(Object) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Returns the float value represented by this StaticProperty and stored in the specified static
object.
- getFrame() - Method in class com.oracle.truffle.api.debug.DebugException.CatchLocation
-
- getFrame(FrameInstance.FrameAccess) - Method in interface com.oracle.truffle.api.frame.FrameInstance
-
Accesses the underlying frame using a specified
access mode.
- getFrame() - Method in class com.oracle.truffle.api.TruffleLanguage.InlineParsingRequest
-
Specifies the execution context for parsing.
- getFrame() - Method in class com.oracle.truffle.api.TruffleStackTraceElement
-
Returns the read-only frame.
- getFrameDescriptor() - Method in interface com.oracle.truffle.api.frame.Frame
-
- getFrameDescriptor() - Method in class com.oracle.truffle.api.nodes.RootNode
-
- getFrameSlotKind(FrameSlot) - Method in class com.oracle.truffle.api.frame.FrameDescriptor
-
Kind of the provided slot.
- getGroup(LinkOption...) - Method in class com.oracle.truffle.api.TruffleFile
-
Returns the group owner of the file.
- getGuestObject() - Method in class com.oracle.truffle.api.TruffleStackTraceElement
-
Returns an interop object representing this
TruffleStackTraceElement supporting
the
hasExecutableName and potentially
hasDeclaringMetaObject and
hasSourceLocation messages.
- getHashEntriesIterator() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Returns the entries iterator of the hash map.
- getHashEntriesIterator(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns the hash entries iterator for the receiver.
- getHashKeysIterator() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Returns the keys iterator of the hash map.
- getHashKeysIterator(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns the hash keys iterator for the receiver.
- getHashSize() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Returns the number of hash map entries.
- getHashSize(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns the number of receiver entries.
- getHashValue(DebugValue) - Method in class com.oracle.truffle.api.debug.DebugValue
-
Get value of a hash map for the specified key or null if the mapping for the
specified key does not exist.
- getHashValueOrDefault(DebugValue, DebugValue) - Method in class com.oracle.truffle.api.debug.DebugValue
-
Get value of a hash map for the specified key or return the defaultValue when the
mapping for the specified key does not exist or is not readable.
- getHashValuesIterator() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Returns the values iterator of the hash map.
- getHashValuesIterator(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns the hash values iterator for the receiver.
- getHitCount() - Method in class com.oracle.truffle.api.debug.Breakpoint
-
- getHostTraceElement() - Method in class com.oracle.truffle.api.debug.DebugStackFrame
-
Provides a host frame.
- getHostTraceElement() - Method in class com.oracle.truffle.api.debug.DebugStackTraceElement
-
Provides a host element.
- getId() - Method in class com.oracle.truffle.api.InstrumentInfo
-
Gets the id clients can use to acquire this instrument.
- getId() - Method in class com.oracle.truffle.api.nodes.LanguageInfo
-
Returns the unique id of the language.
- getId() - Method in class com.oracle.truffle.api.staticobject.DefaultStaticProperty
-
StaticProperty instances must have a
String identifier that is unique and constant
for that shape.
- getId() - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
StaticProperty instances must have a
String identifier that is unique and constant
for that shape.
- getIdentifier() - Method in class com.oracle.truffle.api.frame.FrameSlot
-
Identifier of the slot.
- getIdentifier(Class<? extends Tag>) - Static method in class com.oracle.truffle.api.instrumentation.Tag
-
Returns the alias of a particular tag or null if no alias was specified for this
tag.
- getIdentifiers() - Method in class com.oracle.truffle.api.frame.FrameDescriptor
-
Retrieve the current set of all the identifiers associated with this frame descriptor.
- getIgnoreCount() - Method in class com.oracle.truffle.api.debug.Breakpoint
-
- getInfo() - Method in class com.oracle.truffle.api.frame.FrameSlot
-
Information about the slot.
- getInputContext(int) - Method in class com.oracle.truffle.api.instrumentation.ExecutionEventNode
-
Returns the event context of an input by index.
- getInputCount() - Method in class com.oracle.truffle.api.instrumentation.ExecutionEventNode
-
Returns the total number of instrumented input nodes that may produce
input events when executed.
- getInputValues() - Method in class com.oracle.truffle.api.debug.SuspendedEvent
-
Returns the input values of the current source element gathered from return values of it's
executed children.
- getInstances() - Method in class com.oracle.truffle.api.dsl.Introspection.SpecializationInfo
-
Returns the number of dynamic specialization instances that are active for this
specialization.
- getInstrumentClassName() - Method in interface com.oracle.truffle.api.instrumentation.TruffleInstrument.Provider
-
- getInstrumentedNode() - Method in class com.oracle.truffle.api.instrumentation.EventContext
-
Accessor to the instrumented node at which the event occurred.
- getInstrumentedSourceSection() - Method in class com.oracle.truffle.api.instrumentation.EventContext
-
- getInstrumenter() - Method in class com.oracle.truffle.api.instrumentation.TruffleInstrument.Env
-
Returns the instrumenter which lets you instrument guest language ASTs.
- getInstruments() - Method in class com.oracle.truffle.api.instrumentation.TruffleInstrument.Env
-
- getInstruments() - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Returns a map instrument-id to instrument instance of all instruments that are installed
in the environment.
- getInt(FrameSlot) - Method in interface com.oracle.truffle.api.frame.Frame
-
Read access to a local variable of type int.
- getInt(byte[], int) - Method in class com.oracle.truffle.api.memory.ByteArraySupport
-
Reads the int at the given byte offset from the start of the buffer.
- getInt(DynamicObject, Shape) - Method in interface com.oracle.truffle.api.object.IntLocation
-
- getInt(DynamicObject, boolean) - Method in interface com.oracle.truffle.api.object.IntLocation
-
- getInt(Object) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Returns the int value represented by this StaticProperty and stored in the specified static
object.
- getInternal(DynamicObject) - Method in class com.oracle.truffle.api.object.Location
-
- getInternalLanguages() - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Returns all languages that are installed and internally accessible in the environment.
- getInternalTruffleFile(String) - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
- getInternalTruffleFile(URI) - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
- getIntOrDefault(DynamicObject, Object, Object) - Method in class com.oracle.truffle.api.object.DynamicObjectLibrary
-
Gets the value of an existing property or returns the provided default value if no such
property exists.
- getIntrospectionData() - Method in interface com.oracle.truffle.api.dsl.Introspection.Provider
-
Returns internal reflection data in undefined format.
- getIntSafe(Frame, FrameSlot) - Static method in class com.oracle.truffle.api.frame.FrameUtil
-
Read a frame slot that is guaranteed to be of the desired kind (either previously checked by
a guard or statically known).
- getIntVolatile(Object) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Returns the int value represented by this StaticProperty and stored in the specified static
object.
- getInvalidIndex() - Method in exception com.oracle.truffle.api.interop.InvalidArrayIndexException
-
Returns the invalid index that was used.
- getIterator() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Returns the iterator value.
- getIterator(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns the iterator for the receiver.
- getIteratorNextElement() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Returns the next element in the iteration.
- getIteratorNextElement(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns the next element in the iteration.
- getKey() - Method in class com.oracle.truffle.api.object.Property
-
Get property identifier.
- getKeyArray(DynamicObject) - Method in class com.oracle.truffle.api.object.DynamicObjectLibrary
-
Gets a snapshot of the object's property keys, in insertion order.
- getKeyList() - Method in class com.oracle.truffle.api.object.Shape
-
Get a list of all property keys in insertion order.
- getKeys() - Method in class com.oracle.truffle.api.object.Shape
-
Get all property keys in insertion order.
- getKind() - Method in class com.oracle.truffle.api.debug.Breakpoint
-
Returns the kind of this breakpoint.
- getLanguage() - Method in class com.oracle.truffle.api.debug.DebugStackFrame
-
Returns public information about the language of this frame.
- getLanguage() - Method in class com.oracle.truffle.api.instrumentation.AllocationEvent
-
Returns the language performing the allocation.
- getLanguage(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns the the original language of the receiver value.
- getLanguage(Class<C>) - Method in class com.oracle.truffle.api.nodes.ExecutableNode
-
Returns the language instance associated with this executable node.
- getLanguage() - Method in class com.oracle.truffle.api.source.Source
-
Returns the language this source was created with.
- getLanguageClassName() - Method in interface com.oracle.truffle.api.TruffleLanguage.Provider
-
- getLanguageHome() - Method in class com.oracle.truffle.api.TruffleLanguage
-
Returns the home location for this language.
- getLanguageInfo(Class<? extends TruffleLanguage<?>>) - Method in class com.oracle.truffle.api.instrumentation.TruffleInstrument.Env
-
Returns the
language info for a given language class if available.
- getLanguageInfo() - Method in class com.oracle.truffle.api.nodes.ExecutableNode
-
Returns public information about the language.
- getLanguages() - Method in class com.oracle.truffle.api.instrumentation.TruffleInstrument.Env
-
- getLanguageView(LanguageInfo, Object) - Method in class com.oracle.truffle.api.instrumentation.TruffleInstrument.Env
-
Wraps the provided value to provide language specific information for primitive and
foreign values.
- getLanguageView(C, Object) - Method in class com.oracle.truffle.api.TruffleLanguage
-
Wraps the value to provide language-specific information for primitive and foreign values.
- getLastAccessTime(LinkOption...) - Method in class com.oracle.truffle.api.TruffleFile
-
Returns the last access time.
- getLastModifiedTime(LinkOption...) - Method in class com.oracle.truffle.api.TruffleFile
-
Returns the last modified time.
- getLastProperty() - Method in class com.oracle.truffle.api.object.Shape
-
Get the last property.
- getLayoutClass() - Method in class com.oracle.truffle.api.object.Shape
-
Get the shape's layout class.
- getLeafAssumption() - Method in class com.oracle.truffle.api.object.Shape
-
Get an assumption that the shape is a leaf.
- getLength() - Method in exception com.oracle.truffle.api.interop.InvalidBufferOffsetException
-
- getLength() - Method in class com.oracle.truffle.api.source.Source
-
Gets the number of characters or bytes of the source.
- getLibraryClass() - Method in class com.oracle.truffle.api.library.Message
-
Returns the library class of this message.
- getLibraryClassName() - Method in interface com.oracle.truffle.api.library.DefaultExportProvider
-
- getLibraryClassName() - Method in interface com.oracle.truffle.api.library.EagerExportProvider
-
- getLibraryName() - Method in class com.oracle.truffle.api.library.Message
-
Returns the name of the library of this message.
- getLineCount() - Method in class com.oracle.truffle.api.source.Source
-
The number of text lines in the source, including empty lines; characters at the end of the
source without a terminating newline count as a line.
- getLineLength(int) - Method in class com.oracle.truffle.api.source.Source
-
The number of characters (not counting a possible terminating newline) in a (1-based)
numbered line.
- getLineNumber(int) - Method in class com.oracle.truffle.api.source.Source
-
Given a 0-based character offset, return the 1-based number of the line that includes the
position.
- getLineStartOffset(int) - Method in class com.oracle.truffle.api.source.Source
-
Given a 1-based line number, return the 0-based offset of the first character in the line.
- getLocation() - Method in exception com.oracle.truffle.api.exception.AbstractTruffleException
-
Returns a node indicating the location where this exception occurred in the AST.
- getLocation() - Method in class com.oracle.truffle.api.object.Property
-
Get the property location.
- getLocation() - Method in class com.oracle.truffle.api.ThreadLocalAction.Access
-
Returns the current node location executing on this thread.
- getLocation() - Method in class com.oracle.truffle.api.TruffleLanguage.InlineParsingRequest
-
Specifies the code location for parsing.
- getLocation() - Method in class com.oracle.truffle.api.TruffleStackTraceElement
-
Returns a node representing the callsite on the stack.
- getLocationDescription() - Method in class com.oracle.truffle.api.debug.Breakpoint
-
- getLock() - Method in class com.oracle.truffle.api.nodes.Node
-
Returns a lock object that can be used to synchronize modifications to the AST.
- getLogger(String) - Method in class com.oracle.truffle.api.instrumentation.TruffleInstrument.Env
-
Find or create an engine bound logger for an instrument.
- getLogger(Class<?>) - Method in class com.oracle.truffle.api.instrumentation.TruffleInstrument.Env
-
Find or create an engine bound logger for an instrument.
- getLogger(String) - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Find or create a context-bound logger.
- getLogger(Class<?>) - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Find or create a context-bound logger.
- getLogger(String) - Static method in class com.oracle.truffle.api.TruffleLogger
-
Find or create a root logger for a given language or instrument.
- getLogger(String, Class<?>) - Static method in class com.oracle.truffle.api.TruffleLogger
-
Find or create a logger for a given language or instrument class.
- getLogger(String, String) - Static method in class com.oracle.truffle.api.TruffleLogger
-
Find or create a logger for a given language or instrument.
- getLong(FrameSlot) - Method in interface com.oracle.truffle.api.frame.Frame
-
Read access to a local variable of type long.
- getLong(byte[], int) - Method in class com.oracle.truffle.api.memory.ByteArraySupport
-
Reads the long at the given byte offset from the start of the buffer.
- getLong(DynamicObject, Shape) - Method in interface com.oracle.truffle.api.object.LongLocation
-
- getLong(DynamicObject, boolean) - Method in interface com.oracle.truffle.api.object.LongLocation
-
- getLong(Object) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Returns the long value represented by this StaticProperty and stored in the specified static
object.
- getLongOrDefault(DynamicObject, Object, Object) - Method in class com.oracle.truffle.api.object.DynamicObjectLibrary
-
Gets the value of an existing property or returns the provided default value if no such
property exists.
- getLongSafe(Frame, FrameSlot) - Static method in class com.oracle.truffle.api.frame.FrameUtil
-
Read a frame slot that is guaranteed to be of the desired kind (either previously checked by
a guard or statically known).
- getLongVolatile(Object) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Returns the long value represented by this StaticProperty and stored in the specified static
object.
- getMembers(Object, boolean) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns an array of member name strings.
- getMembers(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
- getMessage() - Method in exception com.oracle.truffle.api.dsl.UnsupportedSpecializationException
-
- getMessage() - Method in exception com.oracle.truffle.api.interop.ArityException
- getMessage() - Method in exception com.oracle.truffle.api.interop.InvalidArrayIndexException
- getMessage() - Method in exception com.oracle.truffle.api.interop.InvalidBufferOffsetException
- getMessage() - Method in exception com.oracle.truffle.api.interop.StopIterationException
- getMessage() - Method in exception com.oracle.truffle.api.interop.UnknownIdentifierException
- getMessage() - Method in exception com.oracle.truffle.api.interop.UnknownKeyException
- getMessage() - Method in exception com.oracle.truffle.api.interop.UnsupportedMessageException
- getMetaObject() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Get a meta-object of this value, if any.
- getMetaObject(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns the metaobject that is associated with this value.
- getMetaQualifiedName() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Returns the qualified name of a metaobject as
String.
- getMetaQualifiedName(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns the qualified name of a metaobject as
string.
- getMetaSimpleName() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Returns the simple name of a metaobject as
string.
- getMetaSimpleName(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns the simple name of a metaobject as
string.
- getMethodName() - Method in class com.oracle.truffle.api.dsl.Introspection.SpecializationInfo
-
Returns the method name of the introspected specialization.
- getMimeType() - Method in class com.oracle.truffle.api.source.Source
-
Returns the MIME type that is associated with this source.
- getMimeTypes() - Method in class com.oracle.truffle.api.nodes.LanguageInfo
-
Returns the MIME types supported by this language.
- getMutex() - Method in class com.oracle.truffle.api.object.Shape
-
Get mutex object shared by related shapes, i.e.
- getName() - Method in interface com.oracle.truffle.api.Assumption
-
A name for the assumption that is used for debug output.
- getName() - Method in class com.oracle.truffle.api.debug.DebugScope
-
Get a human readable name of this scope.
- getName() - Method in class com.oracle.truffle.api.debug.DebugStackFrame
-
A description of the AST (expected to be a method or procedure name in most languages) that
identifies the AST for the benefit of guest language programmers using tools; it might
appear, for example in the context of a stack dump or trace and is not expected to be called
often.
- getName() - Method in class com.oracle.truffle.api.debug.DebugStackTraceElement
-
A description of the trace element.
- getName() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Returns the name of this value as it is referred to from its origin.
- getName() - Method in class com.oracle.truffle.api.InstrumentInfo
-
Gets a human readable name of this instrument.
- getName() - Method in class com.oracle.truffle.api.nodes.LanguageInfo
-
Returns the unique name of the language.
- getName() - Method in class com.oracle.truffle.api.nodes.RootNode
-
Returns a simple name of the AST (expected to be a method or procedure name in most
languages) that identifies the AST for the benefit of guest language programmers using tools;
it might appear, for example in the context of a stack dump or trace and is not expected to
be called often.
- getName() - Method in class com.oracle.truffle.api.object.HiddenKey
-
- getName() - Method in class com.oracle.truffle.api.source.Source
-
Returns the name of this resource holding a guest language program.
- getName() - Method in class com.oracle.truffle.api.TruffleFile
-
- getName() - Method in class com.oracle.truffle.api.TruffleLogger
-
Returns the name of the logger.
- getName() - Method in interface com.oracle.truffle.api.TruffleRuntime
-
Name describing this runtime implementation for debugging purposes.
- getName() - Method in class com.oracle.truffle.api.utilities.AlwaysValidAssumption
-
- getName() - Method in class com.oracle.truffle.api.utilities.NeverValidAssumption
-
- getName() - Method in class com.oracle.truffle.api.utilities.UnionAssumption
-
- getNewSize() - Method in class com.oracle.truffle.api.instrumentation.AllocationEvent
-
Returns a size of the allocated value in bytes.
- getNode() - Method in exception com.oracle.truffle.api.dsl.UnsupportedSpecializationException
-
- getNode() - Method in class com.oracle.truffle.api.instrumentation.LoadSourceSectionEvent
-
Returns the instrumentable Truffle node that caused this event.
- getNodeClass() - Method in interface com.oracle.truffle.api.dsl.NodeFactory
-
- getNodeFieldArray() - Method in class com.oracle.truffle.api.nodes.NodeClass
-
- getNodeObject() - Method in class com.oracle.truffle.api.instrumentation.EventContext
-
Returns a language provided object that represents the instrumented node properties.
- getNodeObject() - Method in interface com.oracle.truffle.api.instrumentation.InstrumentableNode
-
Returns an interop capable object that contains all keys and values of attributes associated
with this node.
- getNodeSignatures() - Method in interface com.oracle.truffle.api.dsl.NodeFactory
-
- getNotInFrameAssumption(Object) - Method in class com.oracle.truffle.api.frame.FrameDescriptor
-
Make an assumption that no slot with the specified identifier is present in this frame
descriptor.
- getNthParent(Node, int) - Static method in class com.oracle.truffle.api.nodes.NodeUtil
-
Get the nth parent of a node, where the 0th parent is the node itself.
- getObject(FrameSlot) - Method in interface com.oracle.truffle.api.frame.Frame
-
Read access to a local variable of type
Object.
- getObject(Object) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Returns the
Object value represented by this StaticProperty and stored in the
specified static object.
- getObjectArray(DynamicObject) - Method in class com.oracle.truffle.api.object.Layout.Access
-
Deprecated.
- getObjectSafe(Frame, FrameSlot) - Static method in class com.oracle.truffle.api.frame.FrameUtil
-
Read a frame slot that is guaranteed to be of the desired kind (either previously checked by
a guard or statically known).
- getObjectVolatile(Object) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Returns the
Object value represented by this StaticProperty and stored in the
specified static object.
- getOldSize() - Method in class com.oracle.truffle.api.instrumentation.AllocationEvent
-
Returns an old size of the value prior to the allocation, in bytes.
- getOptionDescriptors() - Method in class com.oracle.truffle.api.instrumentation.TruffleInstrument
-
Returns a set of option descriptors that are supported by this instrument.
- getOptionDescriptors() - Method in class com.oracle.truffle.api.TruffleLanguage
-
Returns a set of option descriptors that are supported by this language.
- getOptions() - Method in class com.oracle.truffle.api.instrumentation.TruffleInstrument.Env
-
- getOptions(TruffleContext) - Method in class com.oracle.truffle.api.instrumentation.TruffleInstrument.Env
-
- getOptions() - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
- getOrDefault(DynamicObject, Object, Object) - Method in class com.oracle.truffle.api.object.DynamicObjectLibrary
-
Gets the value of an existing property or returns the provided default value if no such
property exists.
- getOriginalLanguage() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Get the original language that created the value, if any.
- getOSRMetadata() - Method in interface com.oracle.truffle.api.nodes.BytecodeOSRNode
-
Gets the OSR metadata for this instance.
- getOwner(LinkOption...) - Method in class com.oracle.truffle.api.TruffleFile
-
Returns the owner of the file.
- getParameterCount() - Method in class com.oracle.truffle.api.library.Message
-
Returns the number of parameters including the receiver type.
- getParameterType(int) - Method in class com.oracle.truffle.api.library.Message
-
- getParameterTypes() - Method in class com.oracle.truffle.api.library.Message
-
Returns all parameter types including the receiver type of the message.
- getParent() - Method in class com.oracle.truffle.api.debug.DebugContext
-
Get a parent context of this context, if any.
- getParent() - Method in class com.oracle.truffle.api.debug.DebugScope
-
Get a parent scope.
- getParent() - Method in class com.oracle.truffle.api.nodes.Node
-
The current parent node of this node.
- getParent() - Method in class com.oracle.truffle.api.TruffleContext
-
Get a parent context of this context, if any.
- getParent() - Method in class com.oracle.truffle.api.TruffleFile
-
Returns a parent
TruffleFile or null when the file does not have a parent.
- getParent() - Method in class com.oracle.truffle.api.TruffleLogger
-
- getPath() - Method in class com.oracle.truffle.api.source.Source
-
The fully qualified name of the source.
- getPath() - Method in class com.oracle.truffle.api.TruffleFile
-
- getPathSeparator() - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Returns the path separator used to separate filenames in a path list.
- getPolyglotBindings() - Method in class com.oracle.truffle.api.instrumentation.TruffleInstrument.Env
-
Returns the polyglot scope - symbols explicitly exported by languages.
- getPolyglotBindings() - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Returns a TruffleObject that represents the polyglot bindings.
- getPosixPermissions(LinkOption...) - Method in class com.oracle.truffle.api.TruffleFile
-
Returns the file's Posix permissions.
- getPrimitiveArray(DynamicObject) - Method in class com.oracle.truffle.api.object.Layout.Access
-
Deprecated.
- getPriority() - Method in interface com.oracle.truffle.api.library.DefaultExportProvider
-
Returns the priority used when multiple default exports would be applicable.
- getPriority() - Method in interface com.oracle.truffle.api.object.LayoutFactory
-
- getPriority() - Method in interface com.oracle.truffle.api.TruffleRuntimeAccess
-
Allows disambiguation if more than one
TruffleRuntime implementation is available.
- getProbeNode() - Method in interface com.oracle.truffle.api.instrumentation.InstrumentableNode.WrapperNode
-
A child of the wrapper, through which the wrapper reports execution events related to the
guest language delegate node.
- getProperties() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Provides properties representing an internal structure of this value.
- getProperties() - Method in class com.oracle.truffle.api.object.Shape
-
An
Iterable over the shape's properties in insertion order.
- getProperty(String) - Method in class com.oracle.truffle.api.debug.DebugValue
-
Get a property value by its name.
- getProperty(DynamicObject, Object) - Method in class com.oracle.truffle.api.object.DynamicObjectLibrary
-
- getProperty(Object) - Method in class com.oracle.truffle.api.object.Shape
-
Get a property entry by key.
- getPropertyArray(DynamicObject) - Method in class com.oracle.truffle.api.object.DynamicObjectLibrary
-
Gets an array snapshot of the object's properties, in insertion order.
- getPropertyAssumption(Object) - Method in class com.oracle.truffle.api.object.Shape
-
Gets a stable property assumption for the given property key.
- getPropertyCount() - Method in class com.oracle.truffle.api.object.Shape
-
Returns the number of properties in this shape.
- getPropertyFlagsOrDefault(DynamicObject, Object, int) - Method in class com.oracle.truffle.api.object.DynamicObjectLibrary
-
Gets the property flags associated with the requested property key.
- getPropertyList() - Method in class com.oracle.truffle.api.object.Shape
-
Get a list of all properties that this Shape stores.
- getPropertyListInternal(boolean) - Method in class com.oracle.truffle.api.object.Shape
-
Returns all (also hidden) property objects in this shape.
- getPublicLanguages() - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Returns all languages that are installed and publicly accessible in the environment.
- getPublicTruffleFile(String) - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
- getPublicTruffleFile(URI) - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
- getQualifiedName() - Method in class com.oracle.truffle.api.library.Message
-
Returns a qualified and unique name of this message.
- getQualifiedName() - Method in class com.oracle.truffle.api.nodes.RootNode
-
Returns a qualified name of the AST that in the best case uniquely identifiers the method.
- getRawException(Class<? extends TruffleLanguage<?>>) - Method in exception com.oracle.truffle.api.debug.DebugException
-
Returns the guest language representation of the exception, or null if the
requesting language class does not match the root node language at the throw location.
- getRawFrame(Class<? extends TruffleLanguage<?>>, FrameInstance.FrameAccess) - Method in class com.oracle.truffle.api.debug.DebugStackFrame
-
Returns the underlying frame for this debug stack frame or null if the
requesting language class does not match the root node guest language.
- getRawNode(Class<? extends TruffleLanguage<?>>) - Method in class com.oracle.truffle.api.debug.DebugStackFrame
-
Returns the current node for this stack frame, or null if the requesting
language class does not match the root node guest language.
- getRawValue(Class<? extends TruffleLanguage<?>>) - Method in class com.oracle.truffle.api.debug.DebugValue
-
Returns the underlying guest value object held by this
DebugValue.
- getReader() - Method in class com.oracle.truffle.api.source.Source
-
Access to the source contents.
- getReceiver() - Method in class com.oracle.truffle.api.debug.DebugScope
-
Get value that represents the receiver object of this scope.
- getReceiverClass() - Method in interface com.oracle.truffle.api.library.DefaultExportProvider
-
Returns the receiver class of the default export.
- getReceiverMember(Object, Frame) - Method in class com.oracle.truffle.api.interop.NodeLibrary
-
Returns an object that represents the receiver name when available.
- getReceiverType() - Method in class com.oracle.truffle.api.library.Message
-
Returns the receiver type of the message.
- getRepeatingNode() - Method in class com.oracle.truffle.api.nodes.LoopNode
-
Returns the repeating node the loop node was created with.
- getResult() - Method in exception com.oracle.truffle.api.nodes.UnexpectedResultException
-
- getReturnType() - Method in class com.oracle.truffle.api.library.Message
-
Returns the return type of the message.
- getReturnType() - Method in class com.oracle.truffle.api.nodes.ExecutionSignature
-
Returns the return type of the execution signature.
- getReturnValue() - Method in class com.oracle.truffle.api.debug.SuspendedEvent
-
Returns the return value of the currently executed source location.
- getRoot() - Method in class com.oracle.truffle.api.object.Shape
-
Get the root shape.
- getRootInstance() - Method in class com.oracle.truffle.api.debug.DebugScope
-
Get value that represents root instance of this scope.
- getRootInstance(Object, Frame) - Method in class com.oracle.truffle.api.interop.NodeLibrary
-
Returns the current instance of guest language representation of the root node (e.g.
- getRootInstanceBreakpoints() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Get a list of breakpoints installed to the value's session and whose
root instance is this value.
- getRootNode() - Method in class com.oracle.truffle.api.nodes.Node
-
Get the root node of the tree a node belongs to.
- getRootNode() - Method in interface com.oracle.truffle.api.RootCallTarget
-
- getRuntime() - Static method in class com.oracle.truffle.api.Truffle
-
- getRuntime() - Method in interface com.oracle.truffle.api.TruffleRuntimeAccess
-
Gets the
TruffleRuntime implementation available via this access object.
- getSavedInputValues(VirtualFrame) - Method in class com.oracle.truffle.api.instrumentation.ExecutionEventNode
-
Returns all saved input values.
- getScope() - Method in class com.oracle.truffle.api.debug.DebugStackFrame
-
Get the current inner-most scope.
- getScope() - Method in class com.oracle.truffle.api.debug.DebugStackTraceElement
-
Get the current inner-most scope.
- getScope() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Get the scope where this value is declared in.
- getScope(LanguageInfo) - Method in class com.oracle.truffle.api.instrumentation.TruffleInstrument.Env
-
Provides top scope object of the language, if any.
- getScope(Object, Frame, boolean) - Method in class com.oracle.truffle.api.interop.NodeLibrary
-
Get an object representing a local scope containing variables visible at the node location.
- getScope(C) - Method in class com.oracle.truffle.api.TruffleLanguage
-
Get a top scope of the language, if any.
- getScopeParent(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
- getServicesClassNames() - Method in interface com.oracle.truffle.api.instrumentation.TruffleInstrument.Provider
-
Returns the class names of provided services.
- getServicesClassNames() - Method in interface com.oracle.truffle.api.TruffleLanguage.Provider
-
Returns the class names of provided services.
- getSession() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Get the debugger session associated with this value.
- getSession() - Method in class com.oracle.truffle.api.debug.SuspendedEvent
-
Returns the debugger session this suspended event was created for.
- getSessionCount() - Method in class com.oracle.truffle.api.debug.Debugger
-
Returns the number of active debugger sessions.
- getShape() - Method in class com.oracle.truffle.api.object.DynamicObject
-
Get the object's current shape.
- getShape() - Method in interface com.oracle.truffle.api.object.DynamicObjectFactory
-
- getShape(DynamicObject) - Method in class com.oracle.truffle.api.object.DynamicObjectLibrary
-
Gets the
shape of the object.
- getShape(DynamicObject) - Method in class com.oracle.truffle.api.object.Layout.Access
-
Deprecated.
- getShapeFlags(DynamicObject) - Method in class com.oracle.truffle.api.object.DynamicObjectLibrary
-
- getSharedData() - Method in class com.oracle.truffle.api.object.Shape
-
Get the shape's shared data.
- getShort(byte[], int) - Method in class com.oracle.truffle.api.memory.ByteArraySupport
-
Reads the short at the given byte offset from the start of the buffer.
- getShort(Object) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Returns the short value represented by this StaticProperty and stored in the specified static
object.
- getShortVolatile(Object) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Returns the short value represented by this StaticProperty and stored in the specified static
object.
- getSimpleName() - Method in class com.oracle.truffle.api.library.Message
-
Returns the simple name of this message.
- getSize() - Method in class com.oracle.truffle.api.frame.FrameDescriptor
-
Returns the size of an array which is needed for storing all the frame slots.
- getSlots() - Method in class com.oracle.truffle.api.frame.FrameDescriptor
-
Retrieve the current list of slots in the descriptor.
- getSource() - Method in class com.oracle.truffle.api.instrumentation.ExecuteSourceEvent
-
Returns the executed source that caused this event.
- getSource() - Method in class com.oracle.truffle.api.instrumentation.LoadSourceEvent
-
Returns the loaded source that caused this event.
- getSource() - Method in class com.oracle.truffle.api.source.SourceSection
-
Representation of the source program that contains this section.
- getSource() - Method in class com.oracle.truffle.api.TruffleLanguage.InlineParsingRequest
-
The source code to parse.
- getSource() - Method in class com.oracle.truffle.api.TruffleLanguage.ParsingRequest
-
The source code to parse.
- getSourceLocation() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Get a source location where this value is declared, if any.
- getSourceLocation(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns the declared source location of the receiver value.
- getSourceSection() - Method in class com.oracle.truffle.api.debug.DebugException.CatchLocation
-
- getSourceSection() - Method in class com.oracle.truffle.api.debug.DebugScope
-
Get a source section representing this scope.
- getSourceSection() - Method in class com.oracle.truffle.api.debug.DebugStackFrame
-
Returns the source section of the location where the debugging session was suspended.
- getSourceSection() - Method in class com.oracle.truffle.api.debug.DebugStackTraceElement
-
Returns the source section location of this trace element.
- getSourceSection() - Method in class com.oracle.truffle.api.debug.SuspendedEvent
-
Returns the guest language source section of the AST node before/after the execution is
suspended.
- getSourceSection() - Method in class com.oracle.truffle.api.instrumentation.LoadSourceSectionEvent
-
Returns the loaded source section that caused this event.
- getSourceSection() - Method in class com.oracle.truffle.api.nodes.Node
-
Retrieves the segment of guest language source code that is represented by this Node.
- getSpecialization(Node, String) - Static method in class com.oracle.truffle.api.dsl.Introspection
-
Returns introspection information for the first specialization that matches a given method
name.
- getSpecializations(Node) - Static method in class com.oracle.truffle.api.dsl.Introspection
-
Returns introspection information for all declared specializations as unmodifiable list.
- getStackFrames() - Method in class com.oracle.truffle.api.debug.SuspendedEvent
-
Returns a list of guest language stack frame objects that indicate the current guest language
location.
- getStackTrace() - Method in exception com.oracle.truffle.api.debug.DebugException
-
Gets stack trace elements of guest languages.
- getStackTrace(Throwable) - Static method in exception com.oracle.truffle.api.TruffleStackTrace
-
Returns the guest language frames that are stored in this throwable or null if
no guest language frames can ever be stored in this throwable.
- getStackTraceElementLimit() - Method in exception com.oracle.truffle.api.exception.AbstractTruffleException
-
Returns the number of guest language frames that should be collected for this exception.
- getStartColumn() - Method in class com.oracle.truffle.api.source.SourceSection
-
Returns the 1-based column number of the first character in this section (inclusive).
- getStartLine() - Method in class com.oracle.truffle.api.source.SourceSection
-
Returns 1-based line number of the first character in this section (inclusive).
- getSuppliedNodes() - Method in exception com.oracle.truffle.api.dsl.UnsupportedSpecializationException
-
- getSuppliedValues() - Method in exception com.oracle.truffle.api.dsl.UnsupportedSpecializationException
-
- getSuppliedValues() - Method in exception com.oracle.truffle.api.interop.UnsupportedTypeException
-
Returns the arguments of the foreign object access that were not supported by the
TruffleObject.
- getSuspendAnchor() - Method in class com.oracle.truffle.api.debug.Breakpoint
-
Returns the suspended position within the guest language source location.
- getSuspendAnchor() - Method in class com.oracle.truffle.api.debug.SuspendedEvent
-
Returns where, within the guest language
source section, the
suspended position is.
- getTarget() - Method in class com.oracle.truffle.api.TruffleStackTraceElement
-
Returns the call target on the stack.
- getThread() - Method in class com.oracle.truffle.api.ThreadLocalAction.Access
-
Returns the thread where this thread local action is running on.
- getThrowLocation() - Method in exception com.oracle.truffle.api.debug.DebugException
-
Get source code location where this exception was thrown from.
- getTimeZone() - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Returns the default time zone of this environment.
- getTopScope(String) - Method in class com.oracle.truffle.api.debug.DebuggerSession
-
Returns a language top scope.
- getTopStackFrame() - Method in class com.oracle.truffle.api.debug.SuspendedEvent
-
- getTruffleFile(String) - Method in class com.oracle.truffle.api.instrumentation.TruffleInstrument.Env
-
- getTruffleFile(URI) - Method in class com.oracle.truffle.api.instrumentation.TruffleInstrument.Env
-
- getTruffleFileInternal(String, Predicate<TruffleFile>) - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
- getTruffleFileInternal(URI, Predicate<TruffleFile>) - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
- getType() - Method in class com.oracle.truffle.api.nodes.NodeClass
-
- getType() - Method in interface com.oracle.truffle.api.object.BooleanLocation
-
- getType() - Method in interface com.oracle.truffle.api.object.DoubleLocation
-
- getType() - Method in interface com.oracle.truffle.api.object.IntLocation
-
- getType() - Method in interface com.oracle.truffle.api.object.LongLocation
-
- getType() - Method in interface com.oracle.truffle.api.object.ObjectLocation
-
- getUncached() - Static method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns the uncached automatically dispatched version of the interop library.
- getUncached(Object) - Static method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns the uncached manually dispatched version of the interop library.
- getUncached() - Static method in class com.oracle.truffle.api.interop.NodeLibrary
-
Returns the uncached automatically dispatched version of the node library.
- getUncached(Object) - Static method in class com.oracle.truffle.api.interop.NodeLibrary
-
Returns the uncached manually dispatched version of the node library.
- getUncached() - Method in class com.oracle.truffle.api.library.LibraryFactory
-
Returns an uncached automatically dispatched version of the library.
- getUncached(Object) - Method in class com.oracle.truffle.api.library.LibraryFactory
-
Returns an uncached manually dispatched library for a given receiver.
- getUncached() - Static method in class com.oracle.truffle.api.library.ReflectionLibrary
-
Returns the uncached automatically dispatched version of the reflection library.
- getUncached(Object) - Static method in class com.oracle.truffle.api.library.ReflectionLibrary
-
Returns the uncached manually dispatched version of the reflection library.
- getUncached() - Static method in class com.oracle.truffle.api.nodes.IndirectCallNode
-
Returns an uncached version of an indirect call node.
- getUncached() - Static method in class com.oracle.truffle.api.object.DynamicObjectLibrary
-
- getUncached() - Static method in class com.oracle.truffle.api.profiles.BranchProfile
-
Returns the uncached version of the profile.
- getUncached() - Static method in class com.oracle.truffle.api.profiles.ByteValueProfile
-
Returns the uncached version of the profile.
- getUncached() - Static method in class com.oracle.truffle.api.profiles.ConditionProfile
-
Returns the uncached version of the profile.
- getUncached() - Static method in class com.oracle.truffle.api.profiles.DoubleValueProfile
-
Returns the uncached version of the profile.
- getUncached() - Static method in class com.oracle.truffle.api.profiles.FloatValueProfile
-
Returns the uncached version of the profile.
- getUncached() - Static method in class com.oracle.truffle.api.profiles.IntValueProfile
-
Returns the uncached version of the profile.
- getUncached() - Static method in class com.oracle.truffle.api.profiles.LongValueProfile
-
Returns the uncached version of the profile.
- getUncached() - Static method in class com.oracle.truffle.api.profiles.LoopConditionProfile
-
Returns the uncached version of the profile.
- getUncached() - Static method in class com.oracle.truffle.api.profiles.PrimitiveValueProfile
-
Returns the uncached version of the profile.
- getUncached() - Static method in class com.oracle.truffle.api.profiles.ValueProfile
-
Returns the uncached version of the profile.
- getUncachedInstance() - Method in interface com.oracle.truffle.api.dsl.NodeFactory
-
Returns the uncached version of this node or
null if
GenerateUncached
was not applied to the node.
- getUnknownIdentifier() - Method in exception com.oracle.truffle.api.interop.UnknownIdentifierException
-
Returns the identifier that could not be accessed.
- getUnknownKey() - Method in exception com.oracle.truffle.api.interop.UnknownKeyException
-
Returns the hash key that could not be accessed.
- getURI() - Method in class com.oracle.truffle.api.source.Source
-
Get URI of the source.
- getURL() - Method in class com.oracle.truffle.api.source.Source
-
The URL if the source is retrieved via URL.
- getValidAssumption() - Method in class com.oracle.truffle.api.object.Shape
-
Get an assumption that the shape is valid.
- getValue(FrameSlot) - Method in interface com.oracle.truffle.api.frame.Frame
-
Read access to a local variable of any type.
- getValue() - Method in class com.oracle.truffle.api.instrumentation.AllocationEvent
-
Returns the value which is a subject of allocation.
- getVersion() - Method in class com.oracle.truffle.api.frame.FrameDescriptor
-
Returns an assumption reflecting the frame's current version, which is updated every time a
slot is added or removed, or an existing slot's kind is changed.
- getVersion() - Method in class com.oracle.truffle.api.InstrumentInfo
-
Gets the version of this instrument.
- getVersion() - Method in class com.oracle.truffle.api.nodes.LanguageInfo
-
Returns the version of the language.
- getView(Object, Frame, Object) - Method in class com.oracle.truffle.api.interop.NodeLibrary
-
Wraps the value to filter or add scoping specific information for values associated with the
current language and location in the code.
- GraphPrintAdapter() - Constructor for class com.oracle.truffle.api.nodes.GraphPrintVisitor.GraphPrintAdapter
-
Deprecated.
Default constructor.
- GraphPrintVisitor.CustomGraphPrintHandler - Annotation Type in com.oracle.truffle.api.nodes
-
Deprecated.
- GraphPrintVisitor.GraphPrintAdapter - Class in com.oracle.truffle.api.nodes
-
Deprecated.
- GraphPrintVisitor.GraphPrintHandler - Interface in com.oracle.truffle.api.nodes
-
Deprecated.
- GraphPrintVisitor.NullGraphPrintHandler - Annotation Type in com.oracle.truffle.api.nodes
-
Deprecated.
- identityHashCode(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns an identity hash code for the receiver if it has
identity.
- ignoreCount(int) - Method in class com.oracle.truffle.api.debug.Breakpoint.Builder
-
Specifies the number of times a breakpoint is ignored until it hits (i.e.
- ignoreLanguageContextInitialization(boolean) - Method in class com.oracle.truffle.api.debug.SuspensionFilter.Builder
-
Set to ignore language initialization code.
- ImplicitCast - Annotation Type in com.oracle.truffle.api.dsl
-
- ImportStatic - Annotation Type in com.oracle.truffle.api.dsl
-
Imports all public and static methods and fields of the provided
classes for the use in DSL expressions of the annotated class or its subclasses.
- importSymbol(String) - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Explicitly imports a symbol from the polyglot bindings.
- in() - Method in class com.oracle.truffle.api.instrumentation.TruffleInstrument.Env
-
Input associated with
Engine this
instrument is being executed in.
- in() - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Input stream provided by Context.Builder.in(InputStream)
this language is being executed in.
- inBounds(byte[], int, int) - Method in class com.oracle.truffle.api.memory.ByteArraySupport
-
Checks if an access is in bounds of the given buffer.
- includeInternal(boolean) - Method in class com.oracle.truffle.api.debug.SuspensionFilter.Builder
-
- includeInternal(boolean) - Method in class com.oracle.truffle.api.instrumentation.SourceFilter.Builder
-
- includeInternal(boolean) - Method in class com.oracle.truffle.api.instrumentation.SourceSectionFilter.Builder
-
- includes(Node) - Method in class com.oracle.truffle.api.instrumentation.SourceSectionFilter
-
Checks if the filter includes the given node, i.e.
- includes(RootNode, SourceSection, Set<Class<?>>) - Method in class com.oracle.truffle.api.instrumentation.SourceSectionFilter
-
Checks if the filter includes the given root node, i.e.
- incompatibleLocation() - Static method in class com.oracle.truffle.api.object.Location
-
- IncompatibleLocationException - Exception in com.oracle.truffle.api.object
-
This exception is thrown on an attempt to assign an incompatible value to a location.
- inCompilationRoot() - Static method in class com.oracle.truffle.api.CompilerDirectives
-
Returns a boolean value indicating whether the method is executed in the root of a Truffle
compilation.
- inCompiledCode() - Static method in class com.oracle.truffle.api.CompilerDirectives
-
Returns a boolean value indicating whether the method is executed in the compiled code.
- indexIn(SourceSectionFilter.IndexRange...) - Method in class com.oracle.truffle.api.instrumentation.SourceSectionFilter.Builder
-
Add a filter for all source sections which indices are contained in one of the given
index ranges.
- indexIn(int, int) - Method in class com.oracle.truffle.api.instrumentation.SourceSectionFilter.Builder
-
Add a filter for all source sections where the index is inside a startIndex (inclusive)
plus a given length (exclusive).
- indexNotIn(SourceSectionFilter.IndexRange...) - Method in class com.oracle.truffle.api.instrumentation.SourceSectionFilter.Builder
-
Add a filter for all source sections which indices are not contained in one of the given
index ranges.
- indexOf(String, int, int, char...) - Static method in class com.oracle.truffle.api.ArrayUtils
-
Returns the index of the first occurrence of any character contained in needle in
haystack, bounded by fromIndex (inclusive) and maxIndex (exclusive).
- indexOf(char[], int, int, char...) - Static method in class com.oracle.truffle.api.ArrayUtils
-
Returns the index of the first occurrence of any character contained in needle in
haystack, bounded by fromIndex (inclusive) and maxIndex (exclusive).
- indexOf(byte[], int, int, byte...) - Static method in class com.oracle.truffle.api.ArrayUtils
-
Returns the index of the first occurrence of any byte contained in needle in
haystack, bounded by fromIndex (inclusive) and maxIndex (exclusive).
- indexOfWithOrMask(byte[], int, int, byte[], byte[]) - Static method in class com.oracle.truffle.api.ArrayUtils
-
Returns the index of the first region of haystack that equals needle after
being OR'ed with mask, bounded by fromIndex (inclusive) and length.
- indexOfWithOrMask(char[], int, int, char[], char[]) - Static method in class com.oracle.truffle.api.ArrayUtils
-
Returns the index of the first region of haystack that equals needle after
being OR'ed with mask, bounded by fromIndex (inclusive) and length.
- indexOfWithOrMask(String, int, int, String, String) - Static method in class com.oracle.truffle.api.ArrayUtils
-
Returns the index of the first region of haystack that equals needle after
being OR'ed with mask, bounded by fromIndex (inclusive) and length.
- IndirectCallNode - Class in com.oracle.truffle.api.nodes
-
- IndirectCallNode() - Constructor for class com.oracle.truffle.api.nodes.IndirectCallNode
-
Constructor for implementation subclasses.
- info(String) - Method in class com.oracle.truffle.api.TruffleLogger
-
- info(Supplier<String>) - Method in class com.oracle.truffle.api.TruffleLogger
-
- inheritIO(boolean) - Method in class com.oracle.truffle.api.io.TruffleProcessBuilder
-
If true the subprocess standard input, output and error output are the same as those
of the current Java process.
- inInterpreter() - Static method in class com.oracle.truffle.api.CompilerDirectives
-
Returns a boolean value indicating whether the method is executed in the interpreter.
- initializeContext(C) - Method in class com.oracle.truffle.api.TruffleLanguage
-
Perform any complex initialization.
- initializeCreatorContext(boolean) - Method in class com.oracle.truffle.api.TruffleContext.Builder
-
Specifies whether the creating language context should be initialized in the new context.
- initializeLanguage(LanguageInfo) - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Ensures that the target language is initialized.
- initializeMultipleContexts() - Method in class com.oracle.truffle.api.TruffleLanguage
-
Initializes this language instance for use with multiple contexts.
- initializeMultiThreading(C) - Method in class com.oracle.truffle.api.TruffleLanguage
-
Invoked before the context is accessed from multiple threads at the same time.
- initializeThread(C, Thread) - Method in class com.oracle.truffle.api.TruffleLanguage
-
Invoked before a context is accessed from a new thread.
- initialLoopStatus() - Method in interface com.oracle.truffle.api.nodes.RepeatingNode
-
Returns a placeholder loop status used internally before the first iteration.
- inject(boolean) - Method in class com.oracle.truffle.api.profiles.LoopConditionProfile
-
Provides an alternative way to profile counted loops with less interpreter footprint.
- injectBranchProbability(double, boolean) - Static method in class com.oracle.truffle.api.CompilerDirectives
-
Injects a probability for the given condition into the probability information of the
immediately succeeding branch instruction for the condition.
- insert(T[]) - Method in class com.oracle.truffle.api.nodes.Node
-
Inserts new node children into an AST that was already
adopted by a
parent.
- insert(T) - Method in class com.oracle.truffle.api.nodes.Node
-
Inserts an new node into an AST that was already
adopted by a
parent.
- install(Breakpoint) - Method in class com.oracle.truffle.api.debug.Debugger
-
Adds a new breakpoint to this Debugger instance and makes it available in all its sessions.
- install(Breakpoint) - Method in class com.oracle.truffle.api.debug.DebuggerSession
-
Adds a new breakpoint to this session and makes it capable of suspending execution.
- INSTANCE - Static variable in class com.oracle.truffle.api.utilities.AlwaysValidAssumption
-
- INSTANCE - Static variable in class com.oracle.truffle.api.utilities.NeverValidAssumption
-
- instantiate(Object, Object...) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Instantiates the receiver value with the given arguments.
- InstrumentableNode - Interface in com.oracle.truffle.api.instrumentation
-
Interface implemented by AST
nodes that may be
instrumentable: an AST
location where
Truffle
instruments are permitted to listen to before and after using execution event listeners.
- InstrumentableNode.WrapperNode - Interface in com.oracle.truffle.api.instrumentation
-
Nodes that the instrumentation framework inserts into guest language ASTs (between
instrumentable guest language nodes and their parents) for the
purpose of interposing on execution events and reporting them via the instrumentation
framework.
- Instrumenter - Class in com.oracle.truffle.api.instrumentation
-
Provides capabilities to attach listeners for execution, load, output and allocation events.
- InstrumentInfo - Class in com.oracle.truffle.api
-
Represents public information about an instrument.
- interactive(boolean) - Method in class com.oracle.truffle.api.source.Source.LiteralBuilder
-
Marks the source as interactive.
- interactive(boolean) - Method in class com.oracle.truffle.api.source.Source.SourceBuilder
-
Marks the source as interactive.
- internal(boolean) - Method in class com.oracle.truffle.api.source.Source.LiteralBuilder
-
Marks the source as internal.
- internal(boolean) - Method in class com.oracle.truffle.api.source.Source.SourceBuilder
-
Marks the source as internal.
- InteropException - Exception in com.oracle.truffle.api.interop
-
- InteropLibrary - Class in com.oracle.truffle.api.interop
-
Represents the library that specifies the interoperability message protocol between Truffle
languages, tools and embedders.
- InteropLibrary() - Constructor for class com.oracle.truffle.api.interop.InteropLibrary
-
- interpreterOnly(Runnable) - Static method in class com.oracle.truffle.api.CompilerDirectives
-
Directive for the compiler that the given runnable should only be executed in the interpreter
and ignored in the compiled code.
- interpreterOnly(Callable<T>) - Static method in class com.oracle.truffle.api.CompilerDirectives
-
Directive for the compiler that the given callable should only be executed in the
interpreter.
- interrupt(Thread) - Method in interface com.oracle.truffle.api.TruffleSafepoint.Interrupter
-
Sets the interrupted state on a foreign thread.
- IntLocation - Interface in com.oracle.truffle.api.object
-
Planned to be deprecated.
- Introspectable - Annotation Type in com.oracle.truffle.api.dsl
-
Annotate a DSL operation using this annotation to be introspectable.
- Introspection - Class in com.oracle.truffle.api.dsl
-
Contains introspection utilities for Truffle DSL.
- Introspection.Provider - Interface in com.oracle.truffle.api.dsl
-
Internal marker interface for DSL generated code to access reflection information.
- Introspection.SpecializationInfo - Class in com.oracle.truffle.api.dsl
-
Represents dynamic introspection information of a specialization of a DSL operation.
- IntValueProfile - Class in com.oracle.truffle.api.profiles
-
Specialized value profile to capture certain properties of int runtime values.
- InvalidArrayIndexException - Exception in com.oracle.truffle.api.interop
-
An exception thrown if an array does not contain a element with an index.
- InvalidAssumptionException - Exception in com.oracle.truffle.api.nodes
-
An exception that should be thrown if an assumption is checked and the check fails.
- InvalidAssumptionException() - Constructor for exception com.oracle.truffle.api.nodes.InvalidAssumptionException
-
Default constructor.
- invalidate() - Method in interface com.oracle.truffle.api.Assumption
-
Invalidates this assumption.
- invalidate(String) - Method in interface com.oracle.truffle.api.Assumption
-
Invalidates this assumption.
- invalidate() - Method in class com.oracle.truffle.api.utilities.AlwaysValidAssumption
-
- invalidate(String) - Method in class com.oracle.truffle.api.utilities.AlwaysValidAssumption
-
- invalidate() - Method in class com.oracle.truffle.api.utilities.CyclicAssumption
-
- invalidate(String) - Method in class com.oracle.truffle.api.utilities.CyclicAssumption
-
- invalidate() - Method in class com.oracle.truffle.api.utilities.NeverValidAssumption
-
- invalidate(String) - Method in class com.oracle.truffle.api.utilities.NeverValidAssumption
-
- invalidate() - Method in class com.oracle.truffle.api.utilities.UnionAssumption
-
- invalidate(String) - Method in class com.oracle.truffle.api.utilities.UnionAssumption
-
- InvalidBufferOffsetException - Exception in com.oracle.truffle.api.interop
-
An exception thrown if a buffer access if out of bounds.
- invokeMember(Object, String, Object...) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Invokes a member for a given receiver and arguments.
- IS_DIRECTORY - Static variable in class com.oracle.truffle.api.TruffleFile
-
Represents the file a directory.
- IS_OTHER - Static variable in class com.oracle.truffle.api.TruffleFile
-
Represents the file a special file (device, named pipe).
- IS_REGULAR_FILE - Static variable in class com.oracle.truffle.api.TruffleFile
-
Represents the file a regular file.
- IS_SYMBOLIC_LINK - Static variable in class com.oracle.truffle.api.TruffleFile
-
Represents the file a symbolic link.
- isAbsolute() - Method in class com.oracle.truffle.api.TruffleFile
-
- isActive() - Method in class com.oracle.truffle.api.dsl.Introspection.SpecializationInfo
-
Returns true if the specialization was active at the time when the
introspection was performed.
- isActive() - Method in class com.oracle.truffle.api.instrumentation.AllocationReporter
-
Test if the reporter instance is actually doing some reporting when notify methods are
called.
- isActive() - Method in class com.oracle.truffle.api.TruffleContext
-
Returns true if the context is currently active on the current thread, else
false.
- isAdoptable() - Method in class com.oracle.truffle.api.nodes.Node
-
Returns true if this node can be adopted by a parent.
- isArray() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Returns true if this value represents an array, false otherwise.
- isArrayElementExisting(Object, long) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns true if the array element is existing.
- isArrayElementInsertable(Object, long) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns
true if a given array element index is not existing and
insertable.
- isArrayElementModifiable(Object, long) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns
true if a given array element index is existing and
writable.
- isArrayElementReadable(Object, long) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns
true if a given array element is
readable.
- isArrayElementRemovable(Object, long) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns
true if a given array element index is existing and
removable.
- isArrayElementWritable(Object, long) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
- isAssumedFinal() - Method in class com.oracle.truffle.api.object.Location
-
Returns true if this location is assumed to be final.
- isAttached() - Method in class com.oracle.truffle.api.instrumentation.EventBinding
-
Test if this binding is attached.
- isAvailable() - Method in class com.oracle.truffle.api.source.SourceSection
-
Returns whether this is a special instance that signifies that source information is
available.
- isBoolean() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Returns true if and only if this value represents a boolean value.
- isBoolean(FrameSlot) - Method in interface com.oracle.truffle.api.frame.Frame
-
Check whether the given
FrameSlot is of type boolean.
- isBoolean(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns true if the receiver represents a boolean like value, else
false.
- isBreakpointsActive(Breakpoint.Kind) - Method in class com.oracle.truffle.api.debug.DebuggerSession
-
Test whether breakpoints of the given kind are active in this session.
- isBufferWritable(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns true if the receiver is a modifiable buffer.
- isByte(FrameSlot) - Method in interface com.oracle.truffle.api.frame.Frame
-
Check whether the given
FrameSlot is of type byte.
- isCached() - Method in class com.oracle.truffle.api.source.Source
-
Returns true if code caching is enabled for this source.
- isCallTargetCloned() - Method in class com.oracle.truffle.api.nodes.DirectCallNode
-
Returns
true if the target of the
DirectCallNode was cloned by the
runtime system or by the guest language implementation.
- isCallTargetCloningAllowed() - Method in class com.oracle.truffle.api.nodes.DirectCallNode
-
- isCancelling() - Method in class com.oracle.truffle.api.TruffleContext
-
Returns true if the context is being cancelled else false.
- isCaptureFramesForTrace() - Method in class com.oracle.truffle.api.nodes.RootNode
-
Returns
true if a TruffleException leaving this node should capture
Frame objects in its stack trace in addition to the default information.
- isChildField(Object) - Method in class com.oracle.truffle.api.nodes.NodeClass
-
- isChildrenField(Object) - Method in class com.oracle.truffle.api.nodes.NodeClass
-
- isCloneableField(Object) - Method in class com.oracle.truffle.api.nodes.NodeClass
-
- isCloneUninitializedSupported() - Method in class com.oracle.truffle.api.nodes.RootNode
-
- isCloningAllowed() - Method in class com.oracle.truffle.api.nodes.RootNode
-
Returns
true if this
RootNode is allowed to be cloned.
- isClosed() - Method in class com.oracle.truffle.api.TruffleContext
-
Returns true if the context was closed else false.
- isCompilationConstant(Object) - Static method in class com.oracle.truffle.api.CompilerDirectives
-
Returns a boolean indicating whether or not a given value is seen as constant in optimized
code.
- isCompilationRoot() - Method in interface com.oracle.truffle.api.frame.FrameInstance
-
Returns whether or not the current frame is a compilation root.
- isConstant() - Method in class com.oracle.truffle.api.object.Location
-
Returns true if this is a constant value location.
- isCounted(Node) - Method in interface com.oracle.truffle.api.nodes.NodeUtil.NodeCountFilter
-
- isCreateProcessAllowed() - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Returns true if the creation of a sub-process is allowed in the current
environment.
- isCreateThreadAllowed() - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Returns true if the creation of new threads is allowed in the current
environment.
- isDate() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Returns true if this value represents a date, else false.
- isDate(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns true if this object represents a date, else false.
- isDeclared() - Method in class com.oracle.truffle.api.object.Location
-
Returns true if this is a declared value location.
- isDelegated(Library, int) - Static method in class com.oracle.truffle.api.library.LibraryFactory
-
Returns true if a message is delegated, otherwise false.
- isDirectory(LinkOption...) - Method in class com.oracle.truffle.api.TruffleFile
-
Tests if a file is a directory.
- isDisposed() - Method in class com.oracle.truffle.api.debug.Breakpoint
-
- isDisposed() - Method in class com.oracle.truffle.api.instrumentation.EventBinding
-
- isDouble(FrameSlot) - Method in interface com.oracle.truffle.api.frame.Frame
-
Check whether the given
FrameSlot is of type double.
- isDuration() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Returns true if this object represents a duration, else false.
- isDuration(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns true if this object represents a duration, else false.
- isEmpty() - Method in class com.oracle.truffle.api.utilities.FinalBitSet
-
Returns true if this FinalBitSet contains no bits that are set to true.
- isEnabled() - Method in class com.oracle.truffle.api.debug.Breakpoint
-
- isEngineRoot(RootNode) - Method in class com.oracle.truffle.api.instrumentation.TruffleInstrument.Env
-
Returns true if the given root node is considered an engine evaluation root
for the current execution context.
- isEntered() - Method in class com.oracle.truffle.api.TruffleContext
-
Checks whether the context is entered on the current thread and the context is the currently
active context on this thread.
- isExact(Object, Class<?>) - Static method in class com.oracle.truffle.api.CompilerDirectives
-
Checks the given object to the exact class represented by clazz.
- isException(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns true if the receiver value represents a throwable exception/error}.
- isExceptionIncompleteSource(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns true if receiver value represents an incomplete source exception.
- isExcluded() - Method in class com.oracle.truffle.api.dsl.Introspection.SpecializationInfo
-
Returns true if the specialization was excluded at the time when the
introspection was performed.
- isExecutable(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns true if the receiver represents an executable value, else
false.
- isExecutable() - Method in class com.oracle.truffle.api.TruffleFile
-
Tests if a file is executable.
- isFinal() - Method in class com.oracle.truffle.api.object.Location
-
Returns true if this is a final location, i.e.
- isFloat(FrameSlot) - Method in interface com.oracle.truffle.api.frame.Frame
-
Check whether the given
FrameSlot is of type float.
- isFunctionScope() - Method in class com.oracle.truffle.api.debug.DebugScope
-
Test if this scope represents the function scope at the frame it was
obtained from.
- isHashEntryExisting(DebugValue) - Method in class com.oracle.truffle.api.debug.DebugValue
-
Returns true if mapping for a given key is existing.
- isHashEntryExisting(Object, Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns true if mapping for a given key is existing.
- isHashEntryInsertable(DebugValue) - Method in class com.oracle.truffle.api.debug.DebugValue
-
Returns
true if mapping for the specified key does not exist and is
writable.
- isHashEntryInsertable(Object, Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns
true if mapping for the specified key does not exist and is
writable.
- isHashEntryModifiable(DebugValue) - Method in class com.oracle.truffle.api.debug.DebugValue
-
Returns
true if mapping for the specified key exists and is
writable.
- isHashEntryModifiable(Object, Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns
true if mapping for the specified key exists and is
writable.
- isHashEntryReadable(DebugValue) - Method in class com.oracle.truffle.api.debug.DebugValue
-
Returns true if mapping for the specified key exists and is readable.
- isHashEntryReadable(Object, Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns
true if mapping for the specified key exists and is
readable.
- isHashEntryRemovable(DebugValue) - Method in class com.oracle.truffle.api.debug.DebugValue
-
Returns true if mapping for the specified key exists and is removable.
- isHashEntryRemovable(Object, Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns true if mapping for the specified key exists and is removable.
- isHashEntryWritable(DebugValue) - Method in class com.oracle.truffle.api.debug.DebugValue
-
- isHashEntryWritable(Object, Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
- isHidden() - Method in class com.oracle.truffle.api.object.Property
-
Is this property hidden from iteration.
- isHost() - Method in class com.oracle.truffle.api.debug.DebugStackFrame
-
Returns true if this frame is a host frame.
- isHost() - Method in class com.oracle.truffle.api.debug.DebugStackTraceElement
-
Returns true if this element is a host element.
- isHostException(Throwable) - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Tests whether an exception is a host exception thrown by a Java Interop method
invocation.
- isHostFunction(Object) - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Returns true if the argument is a Java host language function wrapped using
Truffle interop.
- isHostLookupAllowed() - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Returns true if host access is generally allowed.
- isHostObject(Object) - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Returns true if the argument is Java host language object wrapped using
Truffle interop.
- isHostSymbol(Object) - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Returns true if the argument is a host symbol, representing the constructor and
static members of a Java class, as obtained by e.g.
- isIdentical(Object, Object, InteropLibrary) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns true if two values represent the the identical value, else
false.
- isIdenticalOrUndefined(Object, Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns
TRUE if the receiver is or
FALSE if the
receiver is not identical to the
other value.
- isIgnoreLanguageContextInitialization() - Method in class com.oracle.truffle.api.debug.SuspensionFilter
-
Test if execution of language initialization code is to be ignored.
- isInlinable() - Method in class com.oracle.truffle.api.nodes.DirectCallNode
-
- isInliningForced() - Method in class com.oracle.truffle.api.nodes.DirectCallNode
-
Returns
true if the
CallTarget is forced to be inlined.
- isInstant() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Returns true if this value represents an instant.
- isInstant(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns true if the receiver represents an instant.
- isInstantiable(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns true if the receiver represents an instantiable value, else
false.
- isInstrumentable() - Method in interface com.oracle.truffle.api.instrumentation.InstrumentableNode
-
Returns true if this node is instrumentable.
- isInstrumentable() - Method in class com.oracle.truffle.api.nodes.RootNode
-
Does this contain AST content that it is possible to instrument.
- isInt(FrameSlot) - Method in interface com.oracle.truffle.api.frame.Frame
-
Check whether the given
FrameSlot is of type int.
- isInteractive() - Method in class com.oracle.truffle.api.nodes.LanguageInfo
-
- isInteractive() - Method in class com.oracle.truffle.api.source.Source
-
Check whether this source has been marked as interactive.
- isInternal() - Method in class com.oracle.truffle.api.debug.DebugStackFrame
-
Returns whether this stack frame is a language implementation artifact that should be hidden
during normal guest language debugging, for example in stack traces.
- isInternal() - Method in class com.oracle.truffle.api.debug.DebugStackTraceElement
-
Returns whether this trace element is a language implementation artifact.
- isInternal() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Returns true if this value represents an internal variable or property,
false otherwise.
- isInternal() - Method in class com.oracle.truffle.api.nodes.LanguageInfo
-
- isInternal() - Method in class com.oracle.truffle.api.nodes.RootNode
-
Returns true if this root node should be considered internal and not be shown to
a guest language programmer.
- isInternal() - Method in class com.oracle.truffle.api.source.Source
-
Check whether this source has been marked as internal, meaning that it has been
provided by the infrastructure, language implementation, or system library.
- isInternalError() - Method in exception com.oracle.truffle.api.debug.DebugException
-
Returns true if this exception indicates an internal error.
- isIntrospectable(Node) - Static method in class com.oracle.truffle.api.dsl.Introspection
-
Returns true if the given node is introspectable.
- isIterator() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Returns true if this value represents an iterator.
- isIterator(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns true if the receiver represents an iterator.
- isLanguageContextInitialized() - Method in class com.oracle.truffle.api.debug.SuspendedEvent
-
Test if the language context of the source of the event is initialized.
- isLanguageContextInitialized() - Method in class com.oracle.truffle.api.instrumentation.EventContext
-
Test if language context of the source of the event is initialized.
- isLeaf() - Method in class com.oracle.truffle.api.object.Shape
-
Check whether this shape is a leaf in the transition graph, i.e.
- isLoggable(Level) - Method in class com.oracle.truffle.api.TruffleLogger
-
Checks if a message of the given level would be logged by this logger.
- isLong(FrameSlot) - Method in interface com.oracle.truffle.api.frame.Frame
-
Check whether the given
FrameSlot is of type long.
- isMemberExisting(Object, String) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns true if the member is existing.
- isMemberInsertable(Object, String) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns
true if a given member is not existing and
writable.
- isMemberInternal(Object, String) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns true if a member is internal.
- isMemberInvocable(Object, String) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns true if a given member is invocable.
- isMemberModifiable(Object, String) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns
true if a given member is existing and
writable.
- isMemberReadable(Object, String) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns
true if a given member is
readable.
- isMemberRemovable(Object, String) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns true if a given member is existing and removable.
- isMemberWritable(Object, String) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
- isMetaInstance(DebugValue) - Method in class com.oracle.truffle.api.debug.DebugValue
-
Returns true if the given instance is an instance of this value, else
false.
- isMetaInstance(Object, Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns true if the given instance is of the provided receiver metaobject, else
false.
- isMetaObject() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Returns true if the value represents a metaobject.
- isMetaObject(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns true if the receiver value represents a metaobject.
- isMimeTypeSupported(String) - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Allows it to be determined if this Context can execute code
written in a language with a given MIME type.
- isModifiable() - Method in class com.oracle.truffle.api.debug.Breakpoint
-
Test whether this breakpoint can be modified.
- isNativeAccessAllowed() - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Returns true if access to native code is generally allowed.
- isNonNull() - Method in interface com.oracle.truffle.api.object.ObjectLocation
-
If true, this location does not accept null values.
- isNull() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Test if the value represents 'null'.
- isNull(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns true if the receiver represents a null like value, else
false.
- isNumber() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Returns true if and only if this value represents a number.
- isNumber(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns true if the receiver represents a number value, else
false.
- isObject(FrameSlot) - Method in interface com.oracle.truffle.api.frame.Frame
-
Check whether the given
FrameSlot is of type object.
- isOneShot() - Method in class com.oracle.truffle.api.debug.Breakpoint
-
- isPartialEvaluationConstant(Object) - Static method in class com.oracle.truffle.api.CompilerDirectives
-
Returns a boolean indicating whether or not a given value is seen as constant during the
initial partial evaluation phase.
- isPointer(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns true if the receiver value represents a native pointer.
- isPolyglotBindingsAccessAllowed() - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Returns true if polyglot bindings access is allowed, else false
.
- isPolyglotEvalAllowed() - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Returns true if polyglot evaluation is allowed, else false.
- isPreInitialization() - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Returns true if this Context is being
pre-initialized.
- isProfilingEnabled() - Method in interface com.oracle.truffle.api.TruffleRuntime
-
Whether or not the
TruffleRuntime implementation can or wants to use gathered
profiling information Truffle compilation.
- isReadable() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Returns true if this value can be read else false.
- isReadable() - Method in class com.oracle.truffle.api.TruffleFile
-
Tests if a file is readable.
- isRegularFile(LinkOption...) - Method in class com.oracle.truffle.api.TruffleFile
-
Tests if a file is a regular file.
- isReplacementSafe(Node, Node, Node) - Static method in class com.oracle.truffle.api.nodes.NodeUtil
-
Determines whether a proposed child replacement would be safe: structurally and type.
- isResolved() - Method in class com.oracle.truffle.api.debug.Breakpoint
-
- isSafelyReplaceableBy(Node) - Method in class com.oracle.truffle.api.nodes.Node
-
Checks if this node can be replaced by another node: tree structure & type.
- isSameFile(TruffleFile, LinkOption...) - Method in class com.oracle.truffle.api.TruffleFile
-
Tests if this and the given
TruffleFile refer to the same physical file.
- isScope(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns true if the value represents a scope object, else false.
- isShared(DynamicObject) - Method in class com.oracle.truffle.api.object.DynamicObjectLibrary
-
Checks whether this object is marked as shared.
- isShared() - Method in class com.oracle.truffle.api.object.Shape
-
Returns
true if this shape is
shared.
- isString() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Returns true if and only if this value represents a string.
- isString(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns true if the receiver represents a string value, else
false.
- isSymbolicLink() - Method in class com.oracle.truffle.api.TruffleFile
-
Tests if a file is a symbolic link.
- isThreadAccessAllowed(Thread, boolean) - Method in class com.oracle.truffle.api.TruffleLanguage
-
Returns true if code of this language is allowed to be executed on this thread.
- isTime() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Returns true if this value represents a time, else false.
- isTime(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns true if this object represents a time, else false.
- isTimeZone() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Returns true if this object represents a timezone, else false.
- isTimeZone(Object) - Method in class com.oracle.truffle.api.interop.InteropLibrary
-
Returns true if this object represents a timezone, else false.
- isTracingEnabled() - Method in interface com.oracle.truffle.api.dsl.ExecuteTracingSupport
-
Invoked by the generated code to determine whether tracing is enabled.
- isTrivial() - Method in enum com.oracle.truffle.api.nodes.NodeCost
-
- isTrivial() - Method in class com.oracle.truffle.api.nodes.RootNode
-
Is this root node to be considered trivial by the runtime.
- isValid() - Method in interface com.oracle.truffle.api.Assumption
-
Checks whether the assumption is still valid.
- isValid() - Method in class com.oracle.truffle.api.object.Shape
-
Check whether this shape is valid.
- isValid() - Method in class com.oracle.truffle.api.utilities.AlwaysValidAssumption
-
- isValid() - Method in class com.oracle.truffle.api.utilities.NeverValidAssumption
-
- isValid() - Method in class com.oracle.truffle.api.utilities.UnionAssumption
-
- isValidAssumption(Assumption) - Static method in interface com.oracle.truffle.api.Assumption
-
Checks whether an assumption is not null and valid.
- isValidAssumption(Assumption[]) - Static method in interface com.oracle.truffle.api.Assumption
-
Checks whether all assumptions in an array are not null and valid.
- isValidProtocolValue(Object) - Static method in class com.oracle.truffle.api.interop.InteropLibrary
-
Utility to check whether a value is a valid interop protocol value.
- isValidValue(Object) - Static method in class com.oracle.truffle.api.interop.InteropLibrary
-
Utility to check whether a value is a valid interop value.
- isValue() - Method in class com.oracle.truffle.api.object.Location
-
Returns true if this is a value location.
- isVirtualFrame() - Method in interface com.oracle.truffle.api.frame.FrameInstance
-
- isVisible(C, Object) - Method in class com.oracle.truffle.api.TruffleLanguage
-
Decides whether the result of evaluating an interactive source should be printed to stdout.
- isWritable() - Method in class com.oracle.truffle.api.debug.DebugValue
-
Returns true if this value can be written to, else false.
- isWritable() - Method in class com.oracle.truffle.api.TruffleFile
-
Tests if a file is writable.
- iterateFrames(FrameInstanceVisitor<T>) - Method in interface com.oracle.truffle.api.TruffleRuntime
-
Accesses the current stack, i.e., the contents of the
Frames and the associated
CallTargets.
- saveInputValue(VirtualFrame, int, Object) - Method in class com.oracle.truffle.api.instrumentation.ExecutionEventNode
-
- send(Object, Message, Object...) - Method in class com.oracle.truffle.api.library.ReflectionLibrary
-
Sends a given message to the target receiver with the provided arguments.
- set(DebugValue) - Method in class com.oracle.truffle.api.debug.DebugValue
-
- set(Node) - Method in class com.oracle.truffle.api.nodes.EncapsulatingNodeReference
-
Sets the current encapsulating node for the current thread and returns its previous value.
- set(DynamicObject, Object, Shape) - Method in class com.oracle.truffle.api.object.Location
-
Set object value at this location in store.
- set(DynamicObject, Object, Shape, Shape) - Method in class com.oracle.truffle.api.object.Location
-
Set object value at this location in store and update shape.
- set(DynamicObject, Object) - Method in class com.oracle.truffle.api.object.Location
-
Set object value at this location in store.
- set(DynamicObject, Object, Shape) - Method in class com.oracle.truffle.api.object.Property
-
Assigns value to this property of the object.
- set(T) - Method in class com.oracle.truffle.api.utilities.AssumedValue
-
- setAllowSideEffects(boolean) - Method in class com.oracle.truffle.api.TruffleSafepoint
-
Allows to temporarily delay side-effecting thread local actions on this thread.
- setAsynchronousStackDepth(int) - Method in class com.oracle.truffle.api.debug.DebuggerSession
-
Request for languages to provide stack frames of scheduled asynchronous execution.
- setAsynchronousStackDepth(int) - Method in class com.oracle.truffle.api.instrumentation.TruffleInstrument.Env
-
Request for languages to provide stack frames of scheduled asynchronous execution.
- setAttribute(TruffleFile.AttributeDescriptor<T>, T, LinkOption...) - Method in class com.oracle.truffle.api.TruffleFile
-
Sets a single file's attribute.
- setBlocked(Node, TruffleSafepoint.Interrupter, TruffleSafepoint.Interruptible<T>, T, Runnable, Runnable) - Method in class com.oracle.truffle.api.TruffleSafepoint
-
Transitions the current thread into a blocked state and calls an interruptible functional
method.
- setBlockedThreadInterruptible(Node, TruffleSafepoint.Interruptible<T>, T) - Static method in class com.oracle.truffle.api.TruffleSafepoint
-
- setBoolean(FrameSlot, boolean) - Method in interface com.oracle.truffle.api.frame.Frame
-
Write access to a local variable of type boolean.
- setBoolean(DynamicObject, boolean) - Method in interface com.oracle.truffle.api.object.BooleanLocation
-
- setBoolean(DynamicObject, boolean, Shape) - Method in interface com.oracle.truffle.api.object.BooleanLocation
-
- setBoolean(DynamicObject, boolean, Shape, Shape) - Method in interface com.oracle.truffle.api.object.BooleanLocation
-
- setBoolean(Object, boolean) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Sets the boolean value represented by this StaticProperty and stored in the specified static
object.
- setBooleanVolatile(Object, boolean) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Sets the boolean value represented by this StaticProperty and stored in the specified static
object.
- setBreakpointsActive(Breakpoint.Kind, boolean) - Method in class com.oracle.truffle.api.debug.DebuggerSession
-
Set whether breakpoints of the given kind are active in this session.
- setByte(FrameSlot, byte) - Method in interface com.oracle.truffle.api.frame.Frame
-
- setByte(Object, byte) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Sets the byte value represented by this StaticProperty and stored in the specified static
object.
- setByteVolatile(Object, byte) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Sets the byte value represented by this StaticProperty and stored in the specified static
object.
- setCallTarget(RootCallTarget) - Method in class com.oracle.truffle.api.nodes.RootNode
-
- setChar(Object, char) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Sets the char value represented by this StaticProperty and stored in the specified static
object.
- setCharVolatile(Object, char) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Sets the char value represented by this StaticProperty and stored in the specified static
object.
- setCondition(String) - Method in class com.oracle.truffle.api.debug.Breakpoint
-
Assigns to this breakpoint a boolean expression whose evaluation will determine whether the
breakpoint suspends execution (i.e.
- setContextsListener(DebugContextsListener, boolean) - Method in class com.oracle.truffle.api.debug.DebuggerSession
-
Set a
listener to be notified about changes in contexts in
guest language application.
- setCreationTime(FileTime, LinkOption...) - Method in class com.oracle.truffle.api.TruffleFile
-
Sets the file's creation time.
- setCurrentWorkingDirectory(TruffleFile) - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Sets the current working directory.
- setDouble(FrameSlot, double) - Method in interface com.oracle.truffle.api.frame.Frame
-
Write access to a local variable of type double.
- setDouble(DynamicObject, double) - Method in interface com.oracle.truffle.api.object.DoubleLocation
-
- setDouble(DynamicObject, double, Shape) - Method in interface com.oracle.truffle.api.object.DoubleLocation
-
- setDouble(DynamicObject, double, Shape, Shape) - Method in interface com.oracle.truffle.api.object.DoubleLocation
-
- setDouble(Object, double) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Sets the double value represented by this StaticProperty and stored in the specified static
object.
- setDoubleVolatile(Object, double) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Sets the double value represented by this StaticProperty and stored in the specified static
object.
- setDynamicType(DynamicObject, Object) - Method in class com.oracle.truffle.api.object.DynamicObjectLibrary
-
Sets the object's dynamic type identifier.
- setDynamicType(Object) - Method in class com.oracle.truffle.api.object.Shape
-
Returns a copy of the shape, with the dynamic object type identifier set to
objectType.
- setEnabled(boolean) - Method in class com.oracle.truffle.api.debug.Breakpoint
-
Controls whether this breakpoint is currently allowed to suspend execution (true by default).
- setFlags(int) - Method in class com.oracle.truffle.api.object.Shape
-
Returns a copy of the shape, with the shape flags set to newFlags.
- setFloat(FrameSlot, float) - Method in interface com.oracle.truffle.api.frame.Frame
-
Write access to a local variable of type float.
- setFloat(Object, float) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Sets the float value represented by this StaticProperty and stored in the specified static
object.
- setFloatVolatile(Object, float) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Sets the float value represented by this StaticProperty and stored in the specified static
object.
- setFrameSlotKind(FrameSlot, FrameSlotKind) - Method in class com.oracle.truffle.api.frame.FrameDescriptor
-
Changes the kind of the provided slot.
- setGeneric(DynamicObject, Object, Shape) - Method in class com.oracle.truffle.api.object.Property
-
Assigns value to this property of the object.
- setIgnoreCount(int) - Method in class com.oracle.truffle.api.debug.Breakpoint
-
Changes the number of times the breakpoint must be executed before it hits (i.e.
- setInt(FrameSlot, int) - Method in interface com.oracle.truffle.api.frame.Frame
-
Write access to a local variable of type int.
- setInt(DynamicObject, int) - Method in interface com.oracle.truffle.api.object.IntLocation
-
- setInt(DynamicObject, int, Shape) - Method in interface com.oracle.truffle.api.object.IntLocation
-
- setInt(DynamicObject, int, Shape, Shape) - Method in interface com.oracle.truffle.api.object.IntLocation
-
- setInt(Object, int) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Sets the int value represented by this StaticProperty and stored in the specified static
object.
- setInternal(DynamicObject, Object) - Method in class com.oracle.truffle.api.object.Location
-
- setIntVolatile(Object, int) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Sets the int value represented by this StaticProperty and stored in the specified static
object.
- setLastAccessTime(FileTime, LinkOption...) - Method in class com.oracle.truffle.api.TruffleFile
-
Sets the file's last access time.
- setLastModifiedTime(FileTime, LinkOption...) - Method in class com.oracle.truffle.api.TruffleFile
-
Sets the file's last modified time.
- setLong(FrameSlot, long) - Method in interface com.oracle.truffle.api.frame.Frame
-
Write access to a local variable of type long.
- setLong(DynamicObject, long) - Method in interface com.oracle.truffle.api.object.LongLocation
-
- setLong(DynamicObject, long, Shape) - Method in interface com.oracle.truffle.api.object.LongLocation
-
- setLong(DynamicObject, long, Shape, Shape) - Method in interface com.oracle.truffle.api.object.LongLocation
-
- setLong(Object, long) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Sets the long value represented by this StaticProperty and stored in the specified static
object.
- setLongVolatile(Object, long) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Sets the long value represented by this StaticProperty and stored in the specified static
object.
- setNodeProperty(Object, String, Object) - Method in class com.oracle.truffle.api.nodes.GraphPrintVisitor.GraphPrintAdapter
-
Deprecated.
- setObject(FrameSlot, Object) - Method in interface com.oracle.truffle.api.frame.Frame
-
Write access to a local variable of type
Object.
- setObject(Object, Object) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Sets the
Object value represented by this StaticProperty and stored in the specified
static object.
- setObjectArray(DynamicObject, Object[]) - Method in class com.oracle.truffle.api.object.Layout.Access
-
Deprecated.
- setObjectVolatile(Object, Object) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Sets the
Object value represented by this StaticProperty and stored in the specified
static object.
- setOption(String, Object) - Method in interface com.oracle.truffle.api.CompilerOptions
-
- setOSRMetadata(Object) - Method in interface com.oracle.truffle.api.nodes.BytecodeOSRNode
-
Sets the OSR metadata for this instance.
- setPosixPermissions(Set<? extends PosixFilePermission>, LinkOption...) - Method in class com.oracle.truffle.api.TruffleFile
-
Sets the file's Posix permissions.
- setPrimitiveArray(DynamicObject, int[]) - Method in class com.oracle.truffle.api.object.Layout.Access
-
Deprecated.
- setPropertyFlags(DynamicObject, Object, int) - Method in class com.oracle.truffle.api.object.DynamicObjectLibrary
-
Sets the property flags associated with the requested property.
- setReturnValue(DebugValue) - Method in class com.oracle.truffle.api.debug.SuspendedEvent
-
Change the return value.
- setSafe(DynamicObject, Object, Shape) - Method in class com.oracle.truffle.api.object.Property
-
- setSafe(DynamicObject, Object, Shape, Shape) - Method in class com.oracle.truffle.api.object.Property
-
Assigns value to this property of the object, changing the object's shape.
- setShape(DynamicObject, Shape) - Method in class com.oracle.truffle.api.object.Layout.Access
-
Deprecated.
- setShapeFlags(DynamicObject, int) - Method in class com.oracle.truffle.api.object.DynamicObjectLibrary
-
Sets language-specific object shape flags, changing the object's shape if need be.
- setShort(Object, short) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Sets the short value represented by this StaticProperty and stored in the specified static
object.
- setShortVolatile(Object, short) - Method in class com.oracle.truffle.api.staticobject.StaticProperty
-
Sets the short value represented by this StaticProperty and stored in the specified static
object.
- setShowHostStackFrames(boolean) - Method in class com.oracle.truffle.api.debug.DebuggerSession
-
Set to provide host information in stack traces.
- setSourcePath(Iterable<URI>) - Method in class com.oracle.truffle.api.debug.DebuggerSession
-
Set a list of source path roots that are used to resolve relative
source URIs.
- setStackTrace(StackTraceElement[]) - Method in exception com.oracle.truffle.api.debug.DebugException
-
Unsupported,
DebugException instances are not writable therefore setting the stack
trace has no effect for them.
- setSteppingFilter(SuspensionFilter) - Method in class com.oracle.truffle.api.debug.DebuggerSession
-
Set a stepping suspension filter.
- setThreadsListener(DebugThreadsListener, boolean) - Method in class com.oracle.truffle.api.debug.DebuggerSession
-
Set a
listener to be notified about changes in threads in guest
language application.
- severe(String) - Method in class com.oracle.truffle.api.TruffleLogger
-
- severe(Supplier<String>) - Method in class com.oracle.truffle.api.TruffleLogger
-
- Shape - Class in com.oracle.truffle.api.object
-
A Shape is an immutable descriptor of the current object "shape" of a DynamicObject, i.e., object
layout, metadata (
type,
flags),
and a mapping of
properties to storage locations.
- Shape() - Constructor for class com.oracle.truffle.api.object.Shape
-
Constructor for subclasses.
- Shape.Allocator - Class in com.oracle.truffle.api.object
-
Utility class to allocate locations in an object layout.
- Shape.Builder - Class in com.oracle.truffle.api.object
-
Builder class to construct initial
Shape instances.
- Shape.DerivedBuilder - Class in com.oracle.truffle.api.object
-
Builder class to construct derived
Shape instances.
- shapeFlags(int) - Method in class com.oracle.truffle.api.object.Shape.Builder
-
Sets initial shape flags (default: 0).
- shapeFlags(int) - Method in class com.oracle.truffle.api.object.Shape.DerivedBuilder
-
Sets initial shape flags (default: 0).
- shared(boolean) - Method in class com.oracle.truffle.api.object.Shape.Builder
-
If true, makes the object shared (default: false).
- sharedData(Object) - Method in class com.oracle.truffle.api.object.Shape.Builder
-
Sets shared data to be associated with the root shape and any derived shapes (e.g.
- shouldContinue(Object) - Method in interface com.oracle.truffle.api.nodes.RepeatingNode
-
- shouldNotReachHere() - Static method in class com.oracle.truffle.api.CompilerDirectives
-
Indicates a code path that is not supposed to be reached during compilation or
interpretation.
- shouldNotReachHere(String) - Static method in class com.oracle.truffle.api.CompilerDirectives
-
Indicates a code path that is not supposed to be reached during compilation or
interpretation.
- shouldNotReachHere(Throwable) - Static method in class com.oracle.truffle.api.CompilerDirectives
-
Indicates a code path that is not supposed to be reached during compilation or
interpretation.
- shouldNotReachHere(String, Throwable) - Static method in class com.oracle.truffle.api.CompilerDirectives
-
Indicates a code path that is not supposed to be reached during compilation or
interpretation.
- singleContextAssumption(Assumption) - Method in class com.oracle.truffle.api.object.Shape.Builder
-
Sets an assumption that allows specializations on constant object instances with this
shape, as long as the assumption is valid.
- SIZE - Static variable in class com.oracle.truffle.api.TruffleFile
-
The file's size in bytes.
- size(LinkOption...) - Method in class com.oracle.truffle.api.TruffleFile
-
Returns the size of a file.
- size() - Method in class com.oracle.truffle.api.utilities.FinalBitSet
-
Returns the number of bits of space actually in use by this FinalBitSet to represent
bit values.
- SIZE_UNKNOWN - Static variable in class com.oracle.truffle.api.instrumentation.AllocationReporter
-
Constant specifying an unknown size.
- SLOWPATH_PROBABILITY - Static variable in class com.oracle.truffle.api.CompilerDirectives
-
- SlowPathException - Exception in com.oracle.truffle.api.nodes
-
An exception thrown to enter a slow path.
- SlowPathException() - Constructor for exception com.oracle.truffle.api.nodes.SlowPathException
-
Creates an exception thrown to enter a slow path.
- SlowPathException(String, Throwable) - Constructor for exception com.oracle.truffle.api.nodes.SlowPathException
-
Creates an exception thrown to enter a slow path.
- SlowPathException(String) - Constructor for exception com.oracle.truffle.api.nodes.SlowPathException
-
Creates an exception thrown to enter a slow path.
- SlowPathException(Throwable) - Constructor for exception com.oracle.truffle.api.nodes.SlowPathException
-
Creates an exception thrown to enter a slow path.
- Source - Class in com.oracle.truffle.api.source
-
Representation of a source code unit and its contents that can be evaluated in a language.
- Source.LiteralBuilder - Class in com.oracle.truffle.api.source
-
Allows one to specify additional attribute before
creating new
Source instance.
- Source.SourceBuilder - Class in com.oracle.truffle.api.source
-
Allows one to specify additional attribute before
creating new
Source instance.
- SourceElement - Enum in com.oracle.truffle.api.debug
-
Representation of a guest language source syntax element, that is used for debugging purposes.
- sourceElements(SourceElement...) - Method in class com.oracle.truffle.api.debug.Breakpoint.Builder
-
Specifies which source elements will this breakpoint adhere to.
- sourceElements(SourceElement...) - Method in class com.oracle.truffle.api.debug.Breakpoint.ExceptionBuilder
-
Specifies which source elements will this breakpoint adhere to.
- sourceElements(SourceElement...) - Method in class com.oracle.truffle.api.debug.StepConfig.Builder
-
- SourceFilter - Class in com.oracle.truffle.api.instrumentation
-
A source filter represents an expression for a subset of guest language sources that are used in
an Truffle interpreter.
- sourceFilter(SourceFilter) - Method in class com.oracle.truffle.api.instrumentation.SourceSectionFilter.Builder
-
Add a source filter.
- SourceFilter.Builder - Class in com.oracle.truffle.api.instrumentation
-
Configure your own
SourceFilter before creating its instance.
- sourceIs(Predicate<Source>) - Method in class com.oracle.truffle.api.debug.SuspensionFilter.Builder
-
- sourceIs(Source...) - Method in class com.oracle.truffle.api.instrumentation.SourceFilter.Builder
-
Add a filter for one of the given sources.
- sourceIs(Predicate<Source>) - Method in class com.oracle.truffle.api.instrumentation.SourceFilter.Builder
-
Adds custom predicate to filter inclusion of
sources.
- sourceIs(Source...) - Method in class com.oracle.truffle.api.instrumentation.SourceSectionFilter.Builder
-
Add a filter for all source sections that reference one of the given sources.
- sourceIs(SourceSectionFilter.SourcePredicate) - Method in class com.oracle.truffle.api.instrumentation.SourceSectionFilter.Builder
-
Adds custom predicate to filter inclusion of
sources.
- SourceSection - Class in com.oracle.truffle.api.source
-
Description of contiguous section of text within a
Source of program code.; supports
multiple modes of access to the text and its location.
- sourceSectionEquals(SourceSection...) - Method in class com.oracle.truffle.api.instrumentation.SourceSectionFilter.Builder
-
Add a filter for all source sections that equal one of the given source sections.
- SourceSectionFilter - Class in com.oracle.truffle.api.instrumentation
-
A source section filter represents an expression for a subset of tagged source sections that are
used in an Truffle interpreter.
- SourceSectionFilter.Builder - Class in com.oracle.truffle.api.instrumentation
-
- SourceSectionFilter.IndexRange - Class in com.oracle.truffle.api.instrumentation
-
- SourceSectionFilter.SourcePredicate - Interface in com.oracle.truffle.api.instrumentation
-
Represents a predicate for source objects.
- Specialization - Annotation Type in com.oracle.truffle.api.dsl
-
Defines a method of a node subclass to represent one specialization of an operation.
- SpecializationStatistics - Class in com.oracle.truffle.api.dsl
-
Represents a specialization statistics utiltiy that can be
entered to collect
additional statistics about Truffle DSL nodes.
- SpecializationStatistics.AlwaysEnabled - Annotation Type in com.oracle.truffle.api.dsl
-
Used on nodes to always enable specialization statistics.
- SpecializationStatistics.NodeStatistics - Class in com.oracle.truffle.api.dsl
-
Class to collect statistics information per node.
- StandardTags - Class in com.oracle.truffle.api.instrumentation
-
Set of standard tags usable by language agnostic tools.
- StandardTags.CallTag - Class in com.oracle.truffle.api.instrumentation
-
Marks program locations that represent a call to other guest language functions, methods or
closures.
- StandardTags.ExpressionTag - Class in com.oracle.truffle.api.instrumentation
-
Marks program locations as to be considered expressions of the languages.
- StandardTags.ReadVariableTag - Class in com.oracle.truffle.api.instrumentation
-
Marks program locations to be considered as reads of variables of the languages.
- StandardTags.RootBodyTag - Class in com.oracle.truffle.api.instrumentation
-
Marks program locations as bodies of a function, method or closure.
- StandardTags.RootTag - Class in com.oracle.truffle.api.instrumentation
-
Marks program locations as root of a function, method or closure.
- StandardTags.StatementTag - Class in com.oracle.truffle.api.instrumentation
-
Marks program locations that represent a statement of a language.
- StandardTags.TryBlockTag - Class in com.oracle.truffle.api.instrumentation
-
Marks program locations to be considered as try blocks, that are followed by catch.
- StandardTags.WriteVariableTag - Class in com.oracle.truffle.api.instrumentation
-
Marks program locations to be considered as writes of variables of the languages.
- start() - Method in class com.oracle.truffle.api.io.TruffleProcessBuilder
-
Starts a new subprocess using the attributes of this builder.
- startServer(URI, MessageEndpoint) - Method in class com.oracle.truffle.api.instrumentation.TruffleInstrument.Env
-
Start a server at the provided URI via the MessageTransport service.
- startSession(SuspendedCallback) - Method in class com.oracle.truffle.api.debug.Debugger
-
Starts a new
session provided with a callback that gets notified
whenever the execution is suspended.
- startSession(SuspendedCallback, SourceElement...) - Method in class com.oracle.truffle.api.debug.Debugger
-
Starts a new
session provided with a callback that gets notified
whenever the execution is suspended and with a list of source syntax elements on which it is
possible to step.
- startsWith(String) - Method in class com.oracle.truffle.api.TruffleFile
-
Tests if this
TruffleFile path starts with the given path.
- startsWith(TruffleFile) - Method in class com.oracle.truffle.api.TruffleFile
-
- StaticProperty - Class in com.oracle.truffle.api.staticobject
-
StaticProperty objects represent the mapping between
property
identifiers and storage locations within static objects.
- StaticProperty() - Constructor for class com.oracle.truffle.api.staticobject.StaticProperty
-
Constructor for subclasses.
- StaticShape<T> - Class in com.oracle.truffle.api.staticobject
-
A StaticShape is an immutable descriptor of the layout of a static object and is a good entry
point to learn about the Static Object Model.
- StaticShape.Builder - Class in com.oracle.truffle.api.staticobject
-
- StepConfig - Class in com.oracle.truffle.api.debug
-
Represents a debugger step configuration.
- StepConfig.Builder - Class in com.oracle.truffle.api.debug
-
- StopIterationException - Exception in com.oracle.truffle.api.interop
-
An exception thrown if an iterator is finished.
- storeStore() - Static method in class com.oracle.truffle.api.memory.MemoryFence
-
Ensures that stores before the fence will not be reordered with stores after the fence.
- submitThreadLocal(TruffleContext, Thread[], ThreadLocalAction) - Method in class com.oracle.truffle.api.instrumentation.TruffleInstrument.Env
-
Submits a thread local action to be performed at the next guest language safepoint on a
provided set of threads, once for each thread.
- submitThreadLocal(Thread[], ThreadLocalAction) - Method in class com.oracle.truffle.api.TruffleLanguage.Env
-
Submits a thread local action to be performed at the next guest language safepoint on a
provided set of threads, once for each thread.
- subSource(int, int) - Method in class com.oracle.truffle.api.source.Source
-
- supportsOption(String) - Method in interface com.oracle.truffle.api.CompilerOptions
-
- suspend(Thread) - Method in class com.oracle.truffle.api.debug.DebuggerSession
-
Suspends the current or the next execution of a given thread.
- suspendAll() - Method in class com.oracle.truffle.api.debug.DebuggerSession
-
Suspends the current or the next execution on all threads.
- suspendAnchor(SuspendAnchor) - Method in class com.oracle.truffle.api.debug.Breakpoint.Builder
-
Specify the breakpoint suspension anchor within the guest language source location.
- SuspendAnchor - Enum in com.oracle.truffle.api.debug
-
Describes where, within a guest language source section, the suspend position is.
- suspendAnchors(SourceElement, SuspendAnchor...) - Method in class com.oracle.truffle.api.debug.StepConfig.Builder
-
- SuspendedCallback - Interface in com.oracle.truffle.api.debug
-
- SuspendedEvent - Class in com.oracle.truffle.api.debug
-
Access for
Debugger clients to the state of a guest language execution thread that has
been suspended, for example by a
Breakpoint or stepping action.
- suspendHere(Node) - Method in class com.oracle.truffle.api.debug.DebuggerSession
-
Suspend immediately at the current location of the current execution thread.
- suspendNextExecution() - Method in class com.oracle.truffle.api.debug.DebuggerSession
-
Suspends the next execution on the first thread that is encountered.
- suspensionFilter(SuspensionFilter) - Method in class com.oracle.truffle.api.debug.Breakpoint.ExceptionBuilder
-
A filter to limit source locations which intercept exceptions.
- SuspensionFilter - Class in com.oracle.truffle.api.debug
-
A filter to limit the suspension locations.
- SuspensionFilter.Builder - Class in com.oracle.truffle.api.debug
-
A builder for creating a suspension filter.