Uses of Class
org.kink_lang.kink.Vm
Packages that use Vm
Package
Description
The core package of the Kink vm.
Implementations of the Execution Graph DSL.
Call stacks used in the evaluator.
Compiles itree to FunVal by runtime bytecode generation.
Generates compiled classes.
Intermediate representation before JVM byte code compilation.
Temporary vals used by generated code.
Provides funs used from intrinsics.
Package of JAVA and JAVA_PROXY mods.
The internal classes for mods under kink/random.
Provides kink/STOPWATCH mod.
Internal representation of vec vals.
-
Uses of Vm in org.kink_lang.kink
Fields in org.kink_lang.kink declared as VmMethods in org.kink_lang.kink that return VmMethod parameters in org.kink_lang.kink with type arguments of type VmModifier and TypeMethodDescription<T> T
ComponentRegistry.getOrRegister
(Class<T> klass, Function<Vm, T> makeComponent) Returns a component registered with the class; if it is not registered yet, makes one viamakeComponent
, then registers and returns it.Constructors in org.kink_lang.kink with parameters of type VmModifierConstructorDescriptionprotected
Constructs a val.protected
Val
(Vm vm, SharedVars sharedVars) Constructs a val with the shared vars. -
Uses of Vm in org.kink_lang.kink.hostfun.graph.impl
Constructors in org.kink_lang.kink.hostfun.graph.impl with parameters of type Vm -
Uses of Vm in org.kink_lang.kink.internal.callstack
Methods in org.kink_lang.kink.internal.callstack with parameters of type VmModifier and TypeMethodDescriptionTrace.toTraceVal
(Vm vm) Returns the val representing the trace. -
Uses of Vm in org.kink_lang.kink.internal.compile
Constructors in org.kink_lang.kink.internal.compile with parameters of type VmModifierConstructorDescriptionItreeCompiler
(Vm vm, MethodHandles.Lookup packageLookup, String programName, String programText, BindingVal binding) Constructs a compiler. -
Uses of Vm in org.kink_lang.kink.internal.compile.classgen
Constructors in org.kink_lang.kink.internal.compile.classgen with parameters of type VmModifierConstructorDescriptionClassGenerator
(Vm vm, MethodHandles.Lookup packageLookup) Constructs a generator. -
Uses of Vm in org.kink_lang.kink.internal.compile.javaclassir
Constructors in org.kink_lang.kink.internal.compile.javaclassir with parameters of type VmModifierConstructorDescriptionBindingCaptureFastFunCompiler
(Vm vm, String programName, String programText) Constructs a compiler.InsnsGenerator
(Vm vm, String programName, String programText, BindingGenerator bindingGen, LvarAccessGenerator lvarAccGen, MakeFastFunGenerator makeFastFunGen, LetRecGenerator letRecGen, ControlGenerator controlGen, KeyStrSupplier keySup, TraceAccumulator traceAccum, ProgramCounterSupplier pcSup, ChildJcirAccumulator jcirAccum) Constructs a generator.OverriddenControlGenerator
(Vm vm, String programName, String programText, KeyStrSupplier keySup, TraceAccumulator traceAccum) Constructs a generator.SlowFunCompiler
(Vm vm, String programName, String programText) Constructs a compiler.SlowLvarAccessGenerator
(Vm vm, BindingGenerator bindingGen, KeyStrSupplier keySup, TraceAccumulator traceAccum) Constructs a generator.TopLevelCompiler
(Vm vm, String programName, String programText) Constructs a compiler.UnchangedControlGenerator
(Vm vm, String programName, String programText, KeyStrSupplier keySup, TraceAccumulator traceAccum) Constructs a generator.ValCaptureFastFunCompiler
(Vm vm, String programName, String programText) Constructs a compiler. -
Uses of Vm in org.kink_lang.kink.internal.compile.tempval
Constructors in org.kink_lang.kink.internal.compile.tempval with parameters of type VmModifierConstructorDescriptionMaybeTraitVal
(Vm vm, MaybeTrait maybeTrait) Constructs a temporary val. -
Uses of Vm in org.kink_lang.kink.internal.intrinsicsupport
Methods in org.kink_lang.kink.internal.intrinsicsupport with parameters of type VmModifier and TypeMethodDescriptionstatic FunVal
BranchSupport.condNotBool
(Vm vm, int index, Val actual) Returns a nullary fun raising cond-result-not-bool error.static FunVal
IfSupport.condNotBool
(Vm vm, Val actual) Returns a fun to raise cond-not-bool exception.static FunVal
BranchSupport.noMatchingCond
(Vm vm) Returns a nullary fun raising no-matching-cond error.static FunVal
NewValSupport.oddNumbefOfArgs
(Vm vm, int argCount) Returns a nullary fun to raise odd-number-of-args error.static Val
PreloadedFuns.preloadedFun
(Vm vm, String sym) Returns a preloaded fun.static FunVal
ArgsSupport.raiseNotVecRhs
(Vm vm, Val rhs) Returns not-vec-rhs fun, which takes no arg.static FunVal
Returns a nullary fun to raise sym-not-str error.static FunVal
NewValSupport.traitError
(Vm vm, TraitError error, int arityDelta) Returns a nullary fun to raise an exception of an error of new_val.static FunVal
ArgsSupport.wrongNumberOfArgs
(Vm vm, int paramCount, GraphNode params, VecVal args) Returns wrong-number-of-args fun, which takes no args. -
Uses of Vm in org.kink_lang.kink.internal.mod.java
Methods in org.kink_lang.kink.internal.mod.java with parameters of type Vm -
Uses of Vm in org.kink_lang.kink.internal.mod.random
Methods in org.kink_lang.kink.internal.mod.random with parameters of type Vm -
Uses of Vm in org.kink_lang.kink.internal.mod.stopwatch
Methods in org.kink_lang.kink.internal.mod.stopwatch with parameters of type Vm -
Uses of Vm in org.kink_lang.kink.internal.vec
Methods in org.kink_lang.kink.internal.vec with parameters of type VmModifier and TypeMethodDescriptionstatic VecInternal
Returns a new vec internal containing the elements of the list.static VecInternal
Returns a new vec internal.static VecInternal
Returns a new vec containing elements betweenfrom
(inclusive) andto
(exclusive) on the array.static VecInternal
Returns a new vec internal.static VecInternal
Returns a new vec internal.static VecInternal
Returns a new vec internal.static VecInternal
Returns a new empty vec internal with the specified capa.