Top Inners Fields Constructors Methods
jdk.internal.foreign.abi

public Class LinkerOptions

extends Object
Class Inheritance
Imports
java.lang.foreign.FunctionDescriptor, .Linker, java.util.HashMap, .Map, .Objects, .Set, java.util.function.BiConsumer, java.util.stream.Stream

Nested and Inner Type Summary

Modifier and TypeClass and Description
public static record
public static record
public static record
public static interface

Field Summary

Modifier and TypeField and Description
private static final LinkerOptions
private final Map<Class<?>, LinkerOptions.LinkerOptionImpl>

Constructor Summary

AccessConstructor and Description
private

Method Summary

Modifier and TypeMethod and Description
public boolean
public Stream<CapturableState>
public static LinkerOptions
public boolean
equals(Object
the reference object with which to compare.
o
)

Overrides java.lang.Object.equals.

Indicates whether some other object is "equal to" this one.

public int
public static LinkerOptions
private static LinkerOptions
public static LinkerOptions
private <T extends Linker.Option> T
getOption(Class<T> type)

public boolean
public int
hashCode()

Overrides java.lang.Object.hashCode.

Returns a hash code value for this object.

public boolean
public boolean
isVarargsIndex(int argIndex)

public boolean
Inherited from java.lang.Object:
clonefinalizegetClassnotifynotifyAlltoStringwaitwaitwait

Field Detail

EMPTYback to summary
private static final LinkerOptions EMPTY
optionsMapback to summary
private final Map<Class<?>, LinkerOptions.LinkerOptionImpl> optionsMap

Constructor Detail

LinkerOptionsback to summary
private LinkerOptions(Map<Class<?>, LinkerOptions.LinkerOptionImpl> optionsMap)

Method Detail

allowsHeapAccessback to summary
public boolean allowsHeapAccess()
capturedCallStateback to summary
public Stream<CapturableState> capturedCallState()
emptyback to summary
public static LinkerOptions empty()
equalsback to summary
public boolean equals(Object o)

Overrides java.lang.Object.equals.

Doc from java.lang.Object.equals.

Indicates whether some other object is "equal to" this one.

The equals method implements an equivalence relation on non-null object references:

  • It is reflexive: for any non-null reference value x, x.equals(x) should return true.
  • It is symmetric: for any non-null reference values x and y, x.equals(y) should return true if and only if y.equals(x) returns true.
  • It is transitive: for any non-null reference values x, y, and z, if x.equals(y) returns true and y.equals(z) returns true, then x.equals(z) should return true.
  • It is consistent: for any non-null reference values x and y, multiple invocations of x.equals(y) consistently return true or consistently return false, provided no information used in equals comparisons on the objects is modified.
  • For any non-null reference value x, x.equals(null) should return false.

An equivalence relation partitions the elements it operates on into equivalence classes; all the members of an equivalence class are equal to each other. Members of an equivalence class are substitutable for each other, at least for some purposes.

Parameters
o:Object

the reference object with which to compare.

Returns:boolean

true if this object is the same as the obj argument; false otherwise.

Annotations
@Override
firstVariadicArgIndexback to summary
public int firstVariadicArgIndex()
forDowncallback to summary
public static LinkerOptions forDowncall(FunctionDescriptor desc, Linker.Option... options)
forSharedback to summary
private static LinkerOptions forShared(BiConsumer<LinkerOptions.LinkerOptionImpl, FunctionDescriptor> validator, FunctionDescriptor desc, Linker.Option... options)
forUpcallback to summary
public static LinkerOptions forUpcall(FunctionDescriptor desc, Linker.Option[] options)
getOptionback to summary
private <T extends Linker.Option> T getOption(Class<T> type)
hasCapturedCallStateback to summary
public boolean hasCapturedCallState()
hashCodeback to summary
public int hashCode()

Overrides java.lang.Object.hashCode.

Doc from java.lang.Object.hashCode.

Returns a hash code value for this object. This method is supported for the benefit of hash tables such as those provided by java.util.HashMap.

The general contract of hashCode is:

  • Whenever it is invoked on the same object more than once during an execution of a Java application, the hashCode method must consistently return the same integer, provided no information used in equals comparisons on the object is modified. This integer need not remain consistent from one execution of an application to another execution of the same application.
  • If two objects are equal according to the equals method, then calling the hashCode method on each of the two objects must produce the same integer result.
  • It is not required that if two objects are unequal according to the equals method, then calling the hashCode method on each of the two objects must produce distinct integer results. However, the programmer should be aware that producing distinct integer results for unequal objects may improve the performance of hash tables.
Returns:int

a hash code value for this object

Annotations
@Override
isCriticalback to summary
public boolean isCritical()
isVarargsIndexback to summary
public boolean isVarargsIndex(int argIndex)
isVariadicFunctionback to summary
public boolean isVariadicFunction()
jdk.internal.foreign.abi back to summary

public final Record LinkerOptions.CaptureCallState

extends Record
implements LinkerOptionImpl
Class Inheritance
All Implemented Interfaces
jdk.internal.foreign.abi.LinkerOptions.LinkerOptionImpl, java.lang.foreign.Linker.Option
Record Components
saved:Set<CapturableState> 

Field Summary

Modifier and TypeField and Description
private final Set<CapturableState>
saved

Record Component accessed by saved().

Constructor Summary

AccessConstructor and Description
public

Method Summary

Modifier and TypeMethod and Description
public final boolean
equals(Object
the reference object with which to compare.
o
)

Implements abstract java.lang.Record.equals.

Indicates whether some other object is "equal to" this one.

public final int
hashCode()

Implements abstract java.lang.Record.hashCode.

Returns a hash code value for the record.

public Set<CapturableState>
saved()

Record Component getter of saved.

public final String
toString()

Implements abstract java.lang.Record.toString.

Returns a string representation of the record.

public void

Field Detail

savedback to summary
private final Set<CapturableState> saved

Record Component accessed by saved().

Constructor Detail

CaptureCallStateback to summary
public CaptureCallState(Set<CapturableState> saved)

Method Detail

equalsback to summary
public final boolean equals(Object o)

Implements abstract java.lang.Record.equals.

Doc from java.lang.Record.equals.

Indicates whether some other object is "equal to" this one. In addition to the general contract of Object.equals, record classes must further obey the invariant that when a record instance is "copied" by passing the result of the record component accessor methods to the canonical constructor, as follows:

    R copy = new R(r.c1(), r.c2(), ..., r.cn());
then it must be the case that r.equals(copy).
Parameters
o:Object

the reference object with which to compare.

Returns:boolean

true if this record is equal to the argument; false otherwise.

hashCodeback to summary
public final int hashCode()

Implements abstract java.lang.Record.hashCode.

Doc from java.lang.Record.hashCode.

Returns a hash code value for the record. Obeys the general contract of Object.hashCode. For records, hashing behavior is constrained by the refined contract of Record.equals, so that any two records created from the same components must have the same hash code.

Returns:int

a hash code value for this record.

savedback to summary
public Set<CapturableState> saved()

Record Component getter of saved.

toStringback to summary
public final String toString()

Implements abstract java.lang.Record.toString.

Doc from java.lang.Record.toString.

Returns a string representation of the record. In accordance with the general contract of Object#toString(), the toString method returns a string that "textually represents" this record. The result should be a concise but informative representation that is easy for a person to read.

In addition to this general contract, record classes must further participate in the invariant that any two records which are equal must produce equal strings. This invariant is necessarily relaxed in the rare case where corresponding equal component values might fail to produce equal strings for themselves.

Returns:String

a string representation of the object.

validateForDowncallback to summary
public void validateForDowncall(FunctionDescriptor descriptor)

Overrides default jdk.internal.foreign.abi.LinkerOptions.LinkerOptionImpl.validateForDowncall.

Annotations
@Override
jdk.internal.foreign.abi back to summary

public final Record LinkerOptions.Critical

extends Record
implements LinkerOptionImpl
Class Inheritance
All Implemented Interfaces
jdk.internal.foreign.abi.LinkerOptions.LinkerOptionImpl, java.lang.foreign.Linker.Option
Record Components
allowHeapAccess:boolean 

Field Summary

Modifier and TypeField and Description
public static LinkerOptions.Critical
private final boolean
allowHeapAccess

Record Component accessed by allowHeapAccess().

public static LinkerOptions.Critical

Constructor Summary

AccessConstructor and Description
public
Critical(boolean allowHeapAccess)

Method Summary

Modifier and TypeMethod and Description
public boolean
allowHeapAccess()

Record Component getter of allowHeapAccess.

public final boolean
equals(Object
the reference object with which to compare.
o
)

Implements abstract java.lang.Record.equals.

Indicates whether some other object is "equal to" this one.

public final int
hashCode()

Implements abstract java.lang.Record.hashCode.

Returns a hash code value for the record.

public final String
toString()

Implements abstract java.lang.Record.toString.

Returns a string representation of the record.

public void

Field Detail

ALLOW_HEAPback to summary
public static LinkerOptions.Critical ALLOW_HEAP
allowHeapAccessback to summary
private final boolean allowHeapAccess

Record Component accessed by allowHeapAccess().

DONT_ALLOW_HEAPback to summary
public static LinkerOptions.Critical DONT_ALLOW_HEAP

Constructor Detail

Criticalback to summary
public Critical(boolean allowHeapAccess)

Method Detail

allowHeapAccessback to summary
public boolean allowHeapAccess()

Record Component getter of allowHeapAccess.

equalsback to summary
public final boolean equals(Object o)

Implements abstract java.lang.Record.equals.

Doc from java.lang.Record.equals.

Indicates whether some other object is "equal to" this one. In addition to the general contract of Object.equals, record classes must further obey the invariant that when a record instance is "copied" by passing the result of the record component accessor methods to the canonical constructor, as follows:

    R copy = new R(r.c1(), r.c2(), ..., r.cn());
then it must be the case that r.equals(copy).
Parameters
o:Object

the reference object with which to compare.

Returns:boolean

true if this record is equal to the argument; false otherwise.

hashCodeback to summary
public final int hashCode()

Implements abstract java.lang.Record.hashCode.

Doc from java.lang.Record.hashCode.

Returns a hash code value for the record. Obeys the general contract of Object.hashCode. For records, hashing behavior is constrained by the refined contract of Record.equals, so that any two records created from the same components must have the same hash code.

Returns:int

a hash code value for this record.

toStringback to summary
public final String toString()

Implements abstract java.lang.Record.toString.

Doc from java.lang.Record.toString.

Returns a string representation of the record. In accordance with the general contract of Object#toString(), the toString method returns a string that "textually represents" this record. The result should be a concise but informative representation that is easy for a person to read.

In addition to this general contract, record classes must further participate in the invariant that any two records which are equal must produce equal strings. This invariant is necessarily relaxed in the rare case where corresponding equal component values might fail to produce equal strings for themselves.

Returns:String

a string representation of the object.

validateForDowncallback to summary
public void validateForDowncall(FunctionDescriptor descriptor)

Overrides default jdk.internal.foreign.abi.LinkerOptions.LinkerOptionImpl.validateForDowncall.

Annotations
@Override
jdk.internal.foreign.abi back to summary

public final Record LinkerOptions.FirstVariadicArg

extends Record
implements LinkerOptionImpl
Class Inheritance
All Implemented Interfaces
jdk.internal.foreign.abi.LinkerOptions.LinkerOptionImpl, java.lang.foreign.Linker.Option
Record Components
index:int 

Field Summary

Modifier and TypeField and Description
private final int
index

Record Component accessed by index().

Constructor Summary

AccessConstructor and Description
public
FirstVariadicArg(int index)

Method Summary

Modifier and TypeMethod and Description
public final boolean
equals(Object
the reference object with which to compare.
o
)

Implements abstract java.lang.Record.equals.

Indicates whether some other object is "equal to" this one.

public final int
hashCode()

Implements abstract java.lang.Record.hashCode.

Returns a hash code value for the record.

public int
index()

Record Component getter of index.

public final String
toString()

Implements abstract java.lang.Record.toString.

Returns a string representation of the record.

public void

Field Detail

indexback to summary
private final int index

Record Component accessed by index().

Constructor Detail

FirstVariadicArgback to summary
public FirstVariadicArg(int index)

Method Detail

equalsback to summary
public final boolean equals(Object o)

Implements abstract java.lang.Record.equals.

Doc from java.lang.Record.equals.

Indicates whether some other object is "equal to" this one. In addition to the general contract of Object.equals, record classes must further obey the invariant that when a record instance is "copied" by passing the result of the record component accessor methods to the canonical constructor, as follows:

    R copy = new R(r.c1(), r.c2(), ..., r.cn());
then it must be the case that r.equals(copy).
Parameters
o:Object

the reference object with which to compare.

Returns:boolean

true if this record is equal to the argument; false otherwise.

hashCodeback to summary
public final int hashCode()

Implements abstract java.lang.Record.hashCode.

Doc from java.lang.Record.hashCode.

Returns a hash code value for the record. Obeys the general contract of Object.hashCode. For records, hashing behavior is constrained by the refined contract of Record.equals, so that any two records created from the same components must have the same hash code.

Returns:int

a hash code value for this record.

indexback to summary
public int index()

Record Component getter of index.

toStringback to summary
public final String toString()

Implements abstract java.lang.Record.toString.

Doc from java.lang.Record.toString.

Returns a string representation of the record. In accordance with the general contract of Object#toString(), the toString method returns a string that "textually represents" this record. The result should be a concise but informative representation that is easy for a person to read.

In addition to this general contract, record classes must further participate in the invariant that any two records which are equal must produce equal strings. This invariant is necessarily relaxed in the rare case where corresponding equal component values might fail to produce equal strings for themselves.

Returns:String

a string representation of the object.

validateForDowncallback to summary
public void validateForDowncall(FunctionDescriptor descriptor)

Overrides default jdk.internal.foreign.abi.LinkerOptions.LinkerOptionImpl.validateForDowncall.

Annotations
@Override
jdk.internal.foreign.abi back to summary

public sealed Interface LinkerOptions.LinkerOptionImpl

extends Option
Known Direct Implementers
jdk.internal.foreign.abi.LinkerOptions.FirstVariadicArg, jdk.internal.foreign.abi.LinkerOptions.CaptureCallState, jdk.internal.foreign.abi.LinkerOptions.Critical

Method Summary

Modifier and TypeMethod and Description
public default void
public default void
Inherited from java.lang.foreign.Linker.Option:
captureCallStatecaptureStateLayoutcriticalfirstVariadicArg

Method Detail

validateForDowncallback to summary
public default void validateForDowncall(FunctionDescriptor descriptor)
validateForUpcallback to summary
public default void validateForUpcall(FunctionDescriptor descriptor)