Uses of Class
com.strobel.assembler.ir.InstructionBlock
-
Packages that use InstructionBlock Package Description com.strobel.assembler.flowanalysis com.strobel.assembler.ir com.strobel.decompiler.ast -
-
Uses of InstructionBlock in com.strobel.assembler.flowanalysis
Methods in com.strobel.assembler.flowanalysis with parameters of type InstructionBlock Modifier and Type Method Description private static boolean
ControlFlowGraphBuilder. isNarrower(InstructionBlock block, InstructionBlock anchor)
-
Uses of InstructionBlock in com.strobel.assembler.ir
Fields in com.strobel.assembler.ir declared as InstructionBlock Modifier and Type Field Description private InstructionBlock
ExceptionHandler. _handlerBlock
private InstructionBlock
ExceptionHandler. _tryBlock
Methods in com.strobel.assembler.ir that return InstructionBlock Modifier and Type Method Description InstructionBlock
ExceptionHandler. getHandlerBlock()
InstructionBlock
ExceptionHandler. getTryBlock()
Methods in com.strobel.assembler.ir that return types with arguments of type InstructionBlock Modifier and Type Method Description static Predicate<InstructionBlock>
InstructionBlock. containsBlockPredicate(InstructionBlock block)
static Predicate<InstructionBlock>
InstructionBlock. containsInstructionPredicate(Instruction instruction)
Methods in com.strobel.assembler.ir with parameters of type InstructionBlock Modifier and Type Method Description boolean
InstructionBlock. contains(InstructionBlock block)
static Predicate<InstructionBlock>
InstructionBlock. containsBlockPredicate(InstructionBlock block)
static ExceptionHandler
ExceptionHandler. createCatch(InstructionBlock tryBlock, InstructionBlock handlerBlock, TypeReference catchType)
static ExceptionHandler
ExceptionHandler. createFinally(InstructionBlock tryBlock, InstructionBlock handlerBlock)
boolean
InstructionBlock. intersects(InstructionBlock block)
Constructors in com.strobel.assembler.ir with parameters of type InstructionBlock Constructor Description ExceptionHandler(InstructionBlock tryBlock, InstructionBlock handlerBlock, ExceptionHandlerType handlerType, TypeReference catchType)
-
Uses of InstructionBlock in com.strobel.decompiler.ast
Methods in com.strobel.decompiler.ast with parameters of type InstructionBlock Modifier and Type Method Description private static ExceptionHandler
AstBuilder. findFirstHandler(InstructionBlock tryBlock, java.util.Collection<ExceptionHandler> handlers)
private static java.util.List<ExceptionHandler>
AstBuilder. findHandlers(InstructionBlock tryBlock, java.util.Collection<ExceptionHandler> handlers)
-