Uses of Class
org.jd.core.v1.service.converter.classfiletojavasyntax.model.cfg.ControlFlowGraph
-
Packages that use ControlFlowGraph Package Description org.jd.core.v1.service.converter.classfiletojavasyntax.model.cfg org.jd.core.v1.service.converter.classfiletojavasyntax.util -
-
Uses of ControlFlowGraph in org.jd.core.v1.service.converter.classfiletojavasyntax.model.cfg
Fields in org.jd.core.v1.service.converter.classfiletojavasyntax.model.cfg declared as ControlFlowGraph Modifier and Type Field Description protected ControlFlowGraph
BasicBlock. controlFlowGraph
Methods in org.jd.core.v1.service.converter.classfiletojavasyntax.model.cfg that return ControlFlowGraph Modifier and Type Method Description ControlFlowGraph
BasicBlock. getControlFlowGraph()
Constructors in org.jd.core.v1.service.converter.classfiletojavasyntax.model.cfg with parameters of type ControlFlowGraph Constructor Description BasicBlock(ControlFlowGraph controlFlowGraph, int index, int type, int fromOffset, int toOffset, boolean inverseCondition)
BasicBlock(ControlFlowGraph controlFlowGraph, int index, int type, int fromOffset, int toOffset, boolean inverseCondition, java.util.HashSet<BasicBlock> predecessors)
BasicBlock(ControlFlowGraph controlFlowGraph, int index, BasicBlock original)
BasicBlock(ControlFlowGraph controlFlowGraph, int index, BasicBlock original, java.util.HashSet<BasicBlock> predecessors)
-
Uses of ControlFlowGraph in org.jd.core.v1.service.converter.classfiletojavasyntax.util
Methods in org.jd.core.v1.service.converter.classfiletojavasyntax.util that return ControlFlowGraph Modifier and Type Method Description static ControlFlowGraph
ControlFlowGraphMaker. make(Method method)
Methods in org.jd.core.v1.service.converter.classfiletojavasyntax.util with parameters of type ControlFlowGraph Modifier and Type Method Description static java.util.BitSet[]
ControlFlowGraphLoopReducer. buildDominatorIndexes(ControlFlowGraph cfg)
static java.util.List<Loop>
ControlFlowGraphLoopReducer. identifyNaturalLoops(ControlFlowGraph cfg, java.util.BitSet[] arrayOfDominatorIndexes)
Statements
StatementMaker. make(ControlFlowGraph cfg)
static void
ControlFlowGraphGotoReducer. reduce(ControlFlowGraph cfg)
static void
ControlFlowGraphLoopReducer. reduce(ControlFlowGraph cfg)
static boolean
ControlFlowGraphReducer. reduce(ControlFlowGraph cfg)
-