Uses of Class
dspl.intermediate.Comparison

Packages that use Comparison
dspl.frontend   
dspl.intermediate.instructions   
 

Uses of Comparison in dspl.frontend
 

Methods in dspl.frontend that return Comparison
 Comparison DSPLAstToIntermediateWalker.bool(antlr.collections.AST _t)
           
 

Uses of Comparison in dspl.intermediate.instructions
 

Fields in dspl.intermediate.instructions declared as Comparison
 Comparison LoopInstruction.comp
          Contains the single comparison instruction which if false, terminates the loop
 Comparison BranchInstruction.comp
          Contains the binary comparison which if true, the ifInstructions are evaluated, else, the elseInstructions are evaluated
 

Constructors in dspl.intermediate.instructions with parameters of type Comparison
BranchInstruction(Comparison comp, Instruction ifInst, Instruction elseInst)
           
LoopInstruction(Instruction assignmentInstr, Comparison comp, Instruction arithmaticInstr, Instruction loopInstr)
           
PartialBranchInstruction(Comparison comp)