mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Move llvm/Analysis/LiveVar/ValueSet.h to CodeGen/ValueSet.h
llvm-svn: 5282
This commit is contained in:
parent
9cb223ad0d
commit
57b5e8891e
@ -62,7 +62,7 @@
|
||||
#define FUNCTION_LIVE_VAR_INFO_H
|
||||
|
||||
#include "llvm/Pass.h"
|
||||
#include "llvm/Analysis/LiveVar/ValueSet.h"
|
||||
#include "llvm/CodeGen/ValueSet.h"
|
||||
|
||||
class BBLiveVar;
|
||||
class MachineInstr;
|
||||
|
@ -1,20 +0,0 @@
|
||||
#ifndef VALUE_SET_H
|
||||
#define VALUE_SET_H
|
||||
|
||||
#include <set>
|
||||
class Value;
|
||||
|
||||
// RAV - Used to print values in a form used by the register allocator.
|
||||
//
|
||||
struct RAV { // Register Allocator Value
|
||||
const Value &V;
|
||||
RAV(const Value *v) : V(*v) {}
|
||||
RAV(const Value &v) : V(v) {}
|
||||
};
|
||||
std::ostream &operator<<(std::ostream &out, RAV Val);
|
||||
|
||||
|
||||
typedef std::set<const Value*> ValueSet;
|
||||
void printSet(const ValueSet &S);
|
||||
|
||||
#endif
|
@ -62,7 +62,7 @@
|
||||
#define FUNCTION_LIVE_VAR_INFO_H
|
||||
|
||||
#include "llvm/Pass.h"
|
||||
#include "llvm/Analysis/LiveVar/ValueSet.h"
|
||||
#include "llvm/CodeGen/ValueSet.h"
|
||||
|
||||
class BBLiveVar;
|
||||
class MachineInstr;
|
||||
|
@ -1,3 +1,8 @@
|
||||
//
|
||||
// VALUESET.H - This header is OBSOLETE, do not use it for new code.
|
||||
//
|
||||
// FIXME: Eliminate this file.
|
||||
|
||||
#ifndef VALUE_SET_H
|
||||
#define VALUE_SET_H
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
#ifndef LIVE_VAR_BB_H
|
||||
#define LIVE_VAR_BB_H
|
||||
|
||||
#include "llvm/Analysis/LiveVar/ValueSet.h"
|
||||
#include "llvm/CodeGen/ValueSet.h"
|
||||
#include "Support/Annotation.h"
|
||||
#include <map>
|
||||
class BasicBlock;
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
// FIXME: Eliminate this file.
|
||||
|
||||
|
||||
#include "llvm/Analysis/LiveVar/ValueSet.h"
|
||||
#include "llvm/CodeGen/ValueSet.h"
|
||||
#include "llvm/Value.h"
|
||||
#include <iostream>
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
||||
#ifndef LIVE_RANGE_H
|
||||
#define LIVE_RANGE_H
|
||||
|
||||
#include "llvm/Analysis/LiveVar/ValueSet.h"
|
||||
#include "llvm/CodeGen/ValueSet.h"
|
||||
#include "llvm/Value.h"
|
||||
|
||||
class RegClass;
|
||||
|
@ -20,7 +20,7 @@
|
||||
#define LIVE_RANGE_INFO_H
|
||||
|
||||
#include "Support/HashExtras.h"
|
||||
#include "llvm/Analysis/LiveVar/ValueSet.h"
|
||||
#include "llvm/CodeGen/ValueSet.h"
|
||||
|
||||
class LiveRange;
|
||||
class MachineInstr;
|
||||
|
Loading…
Reference in New Issue
Block a user