Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
Compil3r.Quad.ExceptionHandlerList

Uses of ExceptionHandlerList in Compil3r.Quad
 

Fields in Compil3r.Quad declared as ExceptionHandlerList
(package private)  ExceptionHandlerList ExceptionHandlerList.parent
          The parent exception handler set.
static ExceptionHandlerList ExceptionHandlerList.EMPTY
           
private  ExceptionHandlerList ExceptionHandlerIterator.root
           
private  ExceptionHandlerList ExceptionHandlerIterator.current
           
private  ExceptionHandlerList BasicBlock.exception_handler_list
          List of exception handlers for this basic block.
 

Methods in Compil3r.Quad that return ExceptionHandlerList
 ExceptionHandlerList ExceptionHandlerList.getParent()
          Return the parent set of exception handlers, or null if this set doesn't have a parent.
static ExceptionHandlerList ExceptionHandlerList.getEmptyList()
           
private  ExceptionHandlerList ControlFlowGraph.copier(java.util.HashMap map, ExceptionHandlerList this_ehl)
           
(package private)  ExceptionHandlerList BasicBlock.addExceptionHandler(ExceptionHandlerList eh)
           
 ExceptionHandlerList BasicBlock.getExceptionHandlers()
          Returns the list of exception handlers that guard this basic block.
 

Methods in Compil3r.Quad with parameters of type ExceptionHandlerList
 void ExceptionHandlerList.setParent(ExceptionHandlerList p)
           
 BasicBlock ControlFlowGraph.createBasicBlock(int numOfPredecessors, int numOfSuccessors, int numOfInstructions, ExceptionHandlerList ehs)
          Create a new basic block in this control flow graph.
private  ExceptionHandlerList ControlFlowGraph.copier(java.util.HashMap map, ExceptionHandlerList this_ehl)
           
 void ControlFlowGraph.appendExceptionHandlers(ExceptionHandlerList ehl)
           
(package private) static BasicBlock BasicBlock.createBasicBlock(int id, int numOfPredecessors, int numOfSuccessors, int numOfInstructions, ExceptionHandlerList ehs)
          Create new basic block with the given exception handlers.
(package private)  void BasicBlock.addExceptionHandler_first(ExceptionHandlerList eh)
           
(package private)  ExceptionHandlerList BasicBlock.addExceptionHandler(ExceptionHandlerList eh)
           
(package private)  void BasicBlock.setExceptionHandlerList(ExceptionHandlerList ehl)
           
 void BasicBlock.appendExceptionHandlerList(ExceptionHandlerList list)
          Appends the list of exception handlers to the current list of exception handlers.
 

Constructors in Compil3r.Quad with parameters of type ExceptionHandlerList
ExceptionHandlerList(ExceptionHandler exception_handler, ExceptionHandlerList parent)
          Creates new ExceptionHandlerList containing the given exception handler and parent set.
ExceptionHandlerIterator(ExceptionHandlerList ehs)
          Creates new ExceptionHandlerIterator.
BasicBlock(int id, int numOfPredecessors, int numOfSuccessors, int numOfInstructions, ExceptionHandlerList ehs)
          Private constructor for internal nodes.