summaryrefslogtreecommitdiffstats
path: root/org.eclipse.ptp.pldt.mpi.analysis.cdt/src/org/eclipse/ptp/pldt/mpi/analysis/cdt/graphs/IControlFlowGraph.java
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.ptp.pldt.mpi.analysis.cdt/src/org/eclipse/ptp/pldt/mpi/analysis/cdt/graphs/IControlFlowGraph.java')
-rw-r--r--org.eclipse.ptp.pldt.mpi.analysis.cdt/src/org/eclipse/ptp/pldt/mpi/analysis/cdt/graphs/IControlFlowGraph.java63
1 files changed, 63 insertions, 0 deletions
diff --git a/org.eclipse.ptp.pldt.mpi.analysis.cdt/src/org/eclipse/ptp/pldt/mpi/analysis/cdt/graphs/IControlFlowGraph.java b/org.eclipse.ptp.pldt.mpi.analysis.cdt/src/org/eclipse/ptp/pldt/mpi/analysis/cdt/graphs/IControlFlowGraph.java
new file mode 100644
index 0000000..ecc4449
--- /dev/null
+++ b/org.eclipse.ptp.pldt.mpi.analysis.cdt/src/org/eclipse/ptp/pldt/mpi/analysis/cdt/graphs/IControlFlowGraph.java
@@ -0,0 +1,63 @@
+/**********************************************************************
+ * Copyright (c) 2007 IBM Corporation.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+package org.eclipse.ptp.pldt.mpi.analysis.cdt.graphs;
+
+import org.eclipse.cdt.core.dom.ast.IASTExpression;
+import org.eclipse.cdt.core.dom.ast.IASTName;
+import org.eclipse.cdt.core.dom.ast.IASTStatement;
+
+/**
+ * A control flow graph is directed graph. Each node is a block, and
+ * each edge represents the jump in the control flow.
+ *
+ * @author Yuan Zhang
+ *
+ */
+
+public interface IControlFlowGraph {
+
+ /**
+ * @return the entry block
+ */
+ public IBlock getEntry();
+
+ /**
+ * @return the exit block
+ */
+ public IBlock getExit();
+
+
+ /** Search for the block which contains the statement <stmt>
+ */
+ public IBlock getBlock(IASTStatement stmt);
+ /**
+ * Search for the block which contains the condition expression
+ * <expr>, and <expr> is the predicate of statement <parent>
+ * @return
+ */
+ public IBlock getBlock(IASTExpression expr, IASTStatement parent);
+
+ /**
+ * Search for the block which contains the <label>
+ * @return
+ */
+ public IBlock getBlock(IASTName label);
+
+ public void addBlock(IBlock bb);
+
+ /**
+ * Build the control flow relation
+ */
+ public void buildCFG();
+
+ public void print();
+}