2002-08-30 20:27:15 +00:00
|
|
|
//===- llvm/Analysis/ValueNumbering.h - Value #'ing Interface ---*- C++ -*-===//
|
2003-10-20 20:19:47 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2002-08-30 20:27:15 +00:00
|
|
|
//
|
|
|
|
// 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>
|
2003-12-11 05:05:56 +00:00
|
|
|
#include "llvm/Pass.h"
|
2003-11-11 22:41:34 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2002-08-30 20:27:15 +00:00
|
|
|
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
|
|
|
|
};
|
|
|
|
|
2003-12-11 05:05:56 +00:00
|
|
|
extern void BasicValueNumberingStub();
|
|
|
|
static IncludeFile
|
|
|
|
HDR_INCLUDE_VALUENUMBERING_CPP((void*)&BasicValueNumberingStub);
|
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2002-08-30 20:27:15 +00:00
|
|
|
#endif
|