Uses of Class
io.airlift.bytecode.Variable
Packages that use Variable
-
Uses of Variable in io.airlift.bytecode
Subclasses of Variable in io.airlift.bytecodeMethods in io.airlift.bytecode that return VariableModifier and TypeMethodDescriptionScope.createTempVariable(Class<?> type) Scope.declareVariable(ParameterizedType type, String variableName) Scope.declareVariable(Class<?> type, String variableName) Scope.declareVariable(String variableName, BytecodeBlock block, BytecodeExpression initialValue) Scope.getOrCreateTempVariable(Class<?> type) Scope.getTempVariable(String name) MethodDefinition.getThis()Scope.getThis()Scope.getVariable(String name) Methods in io.airlift.bytecode that return types with arguments of type VariableMethods in io.airlift.bytecode with parameters of type VariableModifier and TypeMethodDescriptionBytecodeBlock.getVariable(Variable variable) intMethodGenerationContext.getVariableSlot(Variable variable) BytecodeBlock.incrementVariable(Variable variable, byte increment) BytecodeBlock.initializeVariable(Variable variable) BytecodeBlock.putVariable(Variable variable) BytecodeBlock.putVariable(Variable variable, boolean value) BytecodeBlock.putVariable(Variable variable, int value) BytecodeBlock.putVariable(Variable variable, ParameterizedType type) BytecodeBlock.putVariable(Variable variable, Class<?> type) BytecodeBlock.putVariable(Variable variable, Number value) BytecodeBlock.putVariable(Variable variable, String value) voidScope.releaseTempVariableForReuse(Variable tempVariable) -
Uses of Variable in io.airlift.bytecode.debug
Constructors in io.airlift.bytecode.debug with parameters of type VariableModifierConstructorDescriptionLocalVariableNode(Variable variable, LabelNode start, LabelNode end) -
Uses of Variable in io.airlift.bytecode.instruction
Methods in io.airlift.bytecode.instruction that return VariableMethods in io.airlift.bytecode.instruction with parameters of type VariableModifier and TypeMethodDescriptionstatic InstructionNodeVariableInstruction.incrementVariable(Variable variable, byte increment) static InstructionNodeVariableInstruction.loadVariable(Variable variable) static InstructionNodeVariableInstruction.storeVariable(Variable variable) Constructors in io.airlift.bytecode.instruction with parameters of type VariableModifierConstructorDescriptionIncrementVariableInstruction(Variable variable, byte increment) LoadVariableInstruction(Variable variable) StoreVariableInstruction(Variable variable)