Uses of Class
com.googlecode.aviator.code.interpreter.ir.Label
-
Packages that use Label Package Description com.googlecode.aviator.code.interpreter com.googlecode.aviator.code.interpreter.ir -
-
Uses of Label in com.googlecode.aviator.code.interpreter
Fields in com.googlecode.aviator.code.interpreter declared as Label Modifier and Type Field Description private Label
InterpretCodeGenerator. currLabel
Fields in com.googlecode.aviator.code.interpreter with type parameters of type Label Modifier and Type Field Description private java.util.Stack<Label>
InterpretCodeGenerator. labels0
private java.util.Stack<Label>
InterpretCodeGenerator. labels1
Methods in com.googlecode.aviator.code.interpreter that return Label Modifier and Type Method Description private Label
InterpretCodeGenerator. makeLabel()
private Label
InterpretCodeGenerator. peekLabel0()
private Label
InterpretCodeGenerator. peekLabel1()
private Label
InterpretCodeGenerator. popLabel0()
private Label
InterpretCodeGenerator. popLabel1()
Methods in com.googlecode.aviator.code.interpreter with parameters of type Label Modifier and Type Method Description private void
InterpretCodeGenerator. pushLabel0(Label label)
private void
InterpretCodeGenerator. pushLabel1(Label label)
private void
InterpretCodeGenerator. visitLabel(Label label)
-
Uses of Label in com.googlecode.aviator.code.interpreter.ir
Fields in com.googlecode.aviator.code.interpreter.ir declared as Label Modifier and Type Field Description private Label
BranchIfIR. label
private Label
BranchUnlessIR. label
private Label
GotoIR. label
private Label
VisitLabelIR. label
Methods in com.googlecode.aviator.code.interpreter.ir that return Label Modifier and Type Method Description Label
BranchIfIR. getLabel()
Label
BranchUnlessIR. getLabel()
Label
GotoIR. getLabel()
Label
JumpIR. getLabel()
Label
VisitLabelIR. getLabel()
Constructors in com.googlecode.aviator.code.interpreter.ir with parameters of type Label Constructor Description BranchIfIR(Label label, SourceInfo sourceInfo)
BranchUnlessIR(Label label, SourceInfo sourceInfo)
GotoIR(Label label, SourceInfo sourceInfo)
VisitLabelIR(Label label)
-