Uses of Class
io.airlift.bytecode.Variable
-
Packages that use Variable Package Description io.airlift.bytecode io.airlift.bytecode.debug io.airlift.bytecode.instruction -
-
Uses of Variable in io.airlift.bytecode
Subclasses of Variable in io.airlift.bytecode Modifier and Type Class Description classParameterMethods in io.airlift.bytecode that return Variable Modifier and Type Method Description VariableScope. createTempVariable(Class<?> type)VariableScope. declareVariable(ParameterizedType type, String variableName)VariableScope. declareVariable(Class<?> type, String variableName)VariableScope. declareVariable(String variableName, BytecodeBlock block, BytecodeExpression initialValue)VariableScope. getTempVariable(String name)VariableMethodDefinition. getThis()VariableScope. getThis()VariableScope. getVariable(String name)Methods in io.airlift.bytecode that return types with arguments of type Variable Modifier and Type Method Description List<Variable>Scope. getVariables()Methods in io.airlift.bytecode with parameters of type Variable Modifier and Type Method Description BytecodeBlockBytecodeBlock. getVariable(Variable variable)intMethodGenerationContext. getVariableSlot(Variable variable)BytecodeBlockBytecodeBlock. incrementVariable(Variable variable, byte increment)BytecodeBlockBytecodeBlock. initializeVariable(Variable variable)BytecodeBlockBytecodeBlock. putVariable(Variable variable)BytecodeBlockBytecodeBlock. putVariable(Variable variable, boolean value)BytecodeBlockBytecodeBlock. putVariable(Variable variable, int value)BytecodeBlockBytecodeBlock. putVariable(Variable variable, ParameterizedType type)BytecodeBlockBytecodeBlock. putVariable(Variable variable, Class<?> type)BytecodeBlockBytecodeBlock. putVariable(Variable variable, Number value)BytecodeBlockBytecodeBlock. putVariable(Variable variable, String value) -
Uses of Variable in io.airlift.bytecode.debug
Constructors in io.airlift.bytecode.debug with parameters of type Variable Constructor Description LocalVariableNode(Variable variable, LabelNode start, LabelNode end) -
Uses of Variable in io.airlift.bytecode.instruction
Methods in io.airlift.bytecode.instruction that return Variable Modifier and Type Method Description VariableVariableInstruction. getVariable()Methods in io.airlift.bytecode.instruction with parameters of type Variable Modifier and Type Method Description static 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 Variable Constructor Description IncrementVariableInstruction(Variable variable, byte increment)LoadVariableInstruction(Variable variable)StoreVariableInstruction(Variable variable)
-