Uses of Class
assem.Instr

Packages that use Instr
assem   
flow_graph   
frame   
x86   
 

Uses of Instr in assem
 

Subclasses of Instr in assem
 class LABEL
           
 class MOVE
          Está classe é a instrução de MOVE da arquitetura x86.
 class OPER
          Classe que representa operações de assembly x86 que não são 'mov'.
 

Uses of Instr in flow_graph
 

Methods in flow_graph that return Instr
 Instr AssemFlowGraph.getInstr(Node node)
           
abstract  Instr FlowGraph.getInstr(Node node)
           
 

Methods in flow_graph with parameters of type Instr
 Node AssemFlowGraph.getNode(Instr instr)
           
 

Constructor parameters in flow_graph with type arguments of type Instr
AssemFlowGraph(List<Instr> list)
          Monta grafo de fluxo de execução de um código assembly.
 

Uses of Instr in frame
 

Methods in frame that return types with arguments of type Instr
abstract  List<Instr> Frame.codegen(List<Stm> body)
           
abstract  List<Instr> Frame.procEntryExit2(List<Instr> body)
           
 

Method parameters in frame with type arguments of type Instr
abstract  List<Instr> Frame.procEntryExit2(List<Instr> body)
           
abstract  frame.Proc Frame.procEntryExit3(List<Instr> body)
           
 

Uses of Instr in x86
 

Methods in x86 that return types with arguments of type Instr
 List<Instr> Frame.codegen(List<Stm> body)
           
 List<Instr> Frame.procEntryExit2(List<Instr> body)
           
 

Method parameters in x86 with type arguments of type Instr
 List<Instr> Frame.procEntryExit2(List<Instr> body)
           
 frame.Proc Frame.procEntryExit3(List<Instr> body)