Uses of Interface
org.eolang.jeo.representation.bytecode.BytecodeEntry
-
Packages that use BytecodeEntry Package Description org.eolang.jeo.representation.bytecode Contains classes for generating bytecode in the form of Java classes.org.eolang.jeo.representation.xmir Package for reading XMIR files and converting them into bytecode. -
-
Uses of BytecodeEntry in org.eolang.jeo.representation.bytecode
Classes in org.eolang.jeo.representation.bytecode that implement BytecodeEntry Modifier and Type Class Description class
BytecodeFrame
Bytecode frame.class
BytecodeInstruction
Bytecode instruction.class
BytecodeLabel
Mark label instruction.class
BytecodeLine
Bytecode line.class
BytecodeTryCatchBlock
Bytecode try-catch block.Methods in org.eolang.jeo.representation.bytecode that return types with arguments of type BytecodeEntry Modifier and Type Method Description List<BytecodeEntry>
BytecodeMethod. intructions()
Method instructions.Methods in org.eolang.jeo.representation.bytecode with parameters of type BytecodeEntry Modifier and Type Method Description BytecodeMethod
BytecodeMethod. entry(BytecodeEntry entry)
Add some bytecode entry.BytecodeMethod
BytecodeMethod. trycatch(BytecodeEntry entry)
Add try-catch block.BytecodeMethodBuilder
BytecodeMethodBuilder. trycatch(BytecodeEntry entry)
Add try-catch block.Method parameters in org.eolang.jeo.representation.bytecode with type arguments of type BytecodeEntry Modifier and Type Method Description Optional<T>
InstructionsFlow. max(T initial, Function<BytecodeEntry,T> generator)
Compute the maximum value for stack or variables.Constructors in org.eolang.jeo.representation.bytecode with parameters of type BytecodeEntry Constructor Description BytecodeMethod(BytecodeEntry... instructions)
Constructor.Constructor parameters in org.eolang.jeo.representation.bytecode with type arguments of type BytecodeEntry Constructor Description BytecodeMethod(List<BytecodeEntry> tryblocks, List<BytecodeEntry> instructions, BytecodeAnnotations annotations, BytecodeMethodProperties properties, List<BytecodeDefaultValue> defvalues, BytecodeMaxs maxs, BytecodeAttributes attributes)
Constructor. -
Uses of BytecodeEntry in org.eolang.jeo.representation.xmir
Methods in org.eolang.jeo.representation.xmir that return BytecodeEntry Modifier and Type Method Description BytecodeEntry
XmlBytecodeEntry. bytecode()
Convert to bytecode entry.
-