mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
a9d7ed8985
llvm-svn: 3538
31 lines
1.0 KiB
C++
31 lines
1.0 KiB
C++
//===- llvm/Analysis/ValueNumbering.h - Value #'ing Interface ---*- C++ -*-===//
|
|
//
|
|
// This file defines the abstract ValueNumbering interface, which is used as the
|
|
// common interface used by all clients of value numbering information, and
|
|
// implemented by all value numbering implementations.
|
|
//
|
|
// Implementations of this interface must implement the various virtual methods,
|
|
// which automatically provides functionality for the entire suite of client
|
|
// APIs.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_ANALYSIS_VALUE_NUMBERING_H
|
|
#define LLVM_ANALYSIS_VALUE_NUMBERING_H
|
|
|
|
#include <vector>
|
|
class Value;
|
|
|
|
struct ValueNumbering {
|
|
|
|
/// getEqualNumberNodes - Return nodes with the same value number as the
|
|
/// specified Value. This fills in the argument vector with any equal values.
|
|
///
|
|
virtual void getEqualNumberNodes(Value *V1,
|
|
std::vector<Value*> &RetVals) const = 0;
|
|
|
|
virtual ~ValueNumbering(); // We want to be subclassed
|
|
};
|
|
|
|
#endif
|