public final class ExceptionHandlerBasicBlockBag extends Object
BasicBlock
,
ExceptionHandlerBasicBlock
Modifier and Type | Field and Description |
---|---|
private ExceptionHandlerBasicBlockBag |
caller
If this is an inlined method, then this points to the enclosing
method's (the caller's) ExcpetionHandlerBasicBlockBag.
|
private ExceptionHandlerBasicBlock[] |
local
The array of ExceptionHandlerBasicBlocks constructed by BC2IR
based on the local set of handlers visible within a single method
|
Constructor and Description |
---|
ExceptionHandlerBasicBlockBag(ExceptionHandlerBasicBlock[] l,
ExceptionHandlerBasicBlockBag c)
Create an EHBBB
|
Modifier and Type | Method and Description |
---|---|
Enumeration<BasicBlock> |
enumerator()
An enumeration of all the exception handler basic blocks
(transitively) in the EHBBB.
|
ExceptionHandlerBasicBlockBag |
getCaller()
only for use by BC2IR; return
caller |
void |
remove(BasicBlock bb)
Takes an element out of the bag.
|
private ExceptionHandlerBasicBlock[] local
private final ExceptionHandlerBasicBlockBag caller
public ExceptionHandlerBasicBlockBag(ExceptionHandlerBasicBlock[] l, ExceptionHandlerBasicBlockBag c)
l
- the local array of EHBBsc
- the enclosing EHBBBpublic ExceptionHandlerBasicBlockBag getCaller()
caller
caller
public void remove(BasicBlock bb)
bb
- the block to removepublic Enumeration<BasicBlock> enumerator()