Uses of Class
dspl.intermediate.instructions.BranchInstruction

Packages that use BranchInstruction
dspl.backend   
dspl.backend.x86   
dspl.intermediate.instructions   
 

Uses of BranchInstruction in dspl.backend
 

Methods in dspl.backend with parameters of type BranchInstruction
abstract  void BranchInstructionProcessor.processBranchInstruction(BranchInstruction inst, InstructionProcessor ip, SymbolTable st, AssemblyfileGenerator afg)
          Process a Branch Instruction, converting it into the proper asm instructions
 

Uses of BranchInstruction in dspl.backend.x86
 

Methods in dspl.backend.x86 with parameters of type BranchInstruction
 void X86BranchInstructionProcessor.processBranchInstruction(BranchInstruction inst, InstructionProcessor ip, SymbolTable st, AssemblyfileGenerator afg)
          Convert a BranchInstruction into x86 asm instructions
 

Uses of BranchInstruction in dspl.intermediate.instructions
 

Subclasses of BranchInstruction in dspl.intermediate.instructions
 class PartialBranchInstruction
          The Treewalker must first gather the instruction and its arguments when walking the tree, afterward, the walker can attach the conditional list of arguments
 

Methods in dspl.intermediate.instructions that return BranchInstruction
 BranchInstruction PartialBranchInstruction.fullFromPartial(Instruction ifInst, Instruction elseInst)