All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ibm.wala.cfg.ControlFlowGraph Maven / Gradle / Ivy

/*
 * Copyright (c) 2002 - 2006 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 com.ibm.wala.cfg;

import com.ibm.wala.classLoader.IMethod;
import com.ibm.wala.util.graph.NumberedGraph;
import com.ibm.wala.util.intset.BitVector;

/** An interface that is common to the Shrike and SSA CFG implementations. */
public interface ControlFlowGraph>
    extends NumberedGraph, MinimalCFG {

  /**
   * @return the indices of the catch blocks, as a bit vector
   */
  BitVector getCatchBlocks();

  /**
   * @param index an instruction index
   * @return the basic block which contains this instruction.
   */
  T getBlockForInstruction(int index);

  /**
   * @return the instructions of this CFG, as an array.
   */
  I[] getInstructions();

  /**
   * TODO: move this into IR?
   *
   * @param index an instruction index
   * @return the program counter (bytecode index) corresponding to that instruction
   */
  int getProgramCounter(int index);

  /**
   * @return the Method this CFG represents
   */
  IMethod getMethod();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy