Tidy up #includes, deleting a bunch of unnecessary #includes.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61715 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2009-01-05 17:59:02 +00:00
parent 08f053f5d1
commit d68a07650c
99 changed files with 97 additions and 171 deletions

View File

@ -457,6 +457,4 @@ template<typename T> struct FoldingSetTrait<const T*> {
} // End of namespace llvm. } // End of namespace llvm.
#endif #endif

View File

@ -19,7 +19,7 @@
#include <functional> #include <functional>
#include <utility> // for std::pair #include <utility> // for std::pair
#include <cstring> // for std::size_t #include <cstddef> // for std::size_t
#include "llvm/ADT/iterator.h" #include "llvm/ADT/iterator.h"
namespace llvm { namespace llvm {

View File

@ -17,11 +17,11 @@
#include <cassert> #include <cassert>
#include <cstring> #include <cstring>
#include <algorithm>
#include "llvm/Support/DataTypes.h" #include "llvm/Support/DataTypes.h"
#include "llvm/ADT/STLExtras.h" #include "llvm/ADT/STLExtras.h"
#include "llvm/Support/MathExtras.h" #include "llvm/Support/MathExtras.h"
#include "llvm/ADT/ilist.h" #include "llvm/ADT/ilist.h"
namespace llvm { namespace llvm {
/// SparseBitVector is an implementation of a bitvector that is sparse by only /// SparseBitVector is an implementation of a bitvector that is sparse by only

View File

@ -40,7 +40,6 @@
#include "llvm/ADT/iterator.h" #include "llvm/ADT/iterator.h"
#include <cassert> #include <cassert>
#include <cstdlib>
namespace llvm { namespace llvm {
@ -366,7 +365,7 @@ public:
} }
void swap(iplist &RHS) { void swap(iplist &RHS) {
abort(); // Swap does not use list traits callback correctly yet! assert(0 && "Swap does not use list traits callback correctly yet!");
std::swap(Head, RHS.Head); std::swap(Head, RHS.Head);
} }

View File

@ -17,7 +17,6 @@
#define LLVM_ANALYSIS_CONSTANTSSCANNER_H #define LLVM_ANALYSIS_CONSTANTSSCANNER_H
#include "llvm/Support/InstIterator.h" #include "llvm/Support/InstIterator.h"
#include "llvm/Instruction.h"
#include "llvm/ADT/iterator.h" #include "llvm/ADT/iterator.h"
namespace llvm { namespace llvm {

View File

@ -11,8 +11,8 @@
#define LLVM_ANALYSIS_DOMINATOR_INTERNALS_H #define LLVM_ANALYSIS_DOMINATOR_INTERNALS_H
#include "llvm/Analysis/Dominators.h" #include "llvm/Analysis/Dominators.h"
#include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/SmallPtrSet.h" #include "llvm/ADT/SmallPtrSet.h"
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
// //
// DominatorTree construction - This pass constructs immediate dominator // DominatorTree construction - This pass constructs immediate dominator

View File

@ -24,7 +24,6 @@
#include "llvm/Pass.h" #include "llvm/Pass.h"
#include "llvm/BasicBlock.h" #include "llvm/BasicBlock.h"
#include "llvm/Function.h" #include "llvm/Function.h"
#include "llvm/Instruction.h"
#include "llvm/Instructions.h" #include "llvm/Instructions.h"
#include "llvm/ADT/DenseMap.h" #include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/GraphTraits.h" #include "llvm/ADT/GraphTraits.h"

View File

@ -15,13 +15,13 @@
#define LLVM_ANALYSIS_ESCAPEANALYSIS_H #define LLVM_ANALYSIS_ESCAPEANALYSIS_H
#include "llvm/Pass.h" #include "llvm/Pass.h"
#include "llvm/Instructions.h"
#include "llvm/Analysis/AliasAnalysis.h"
#include "llvm/Target/TargetData.h"
#include <set> #include <set>
namespace llvm { namespace llvm {
class Instruction;
class Value;
/// EscapeAnalysis - This class determines whether an allocation (a MallocInst /// EscapeAnalysis - This class determines whether an allocation (a MallocInst
/// or an AllocaInst) can escape from the current function. It performs some /// or an AllocaInst) can escape from the current function. It performs some
/// precomputation, with the rest of the work happening on-demand. /// precomputation, with the rest of the work happening on-demand.
@ -40,11 +40,7 @@ public:
EscapePoints.clear(); EscapePoints.clear();
} }
void getAnalysisUsage(AnalysisUsage &AU) const { void getAnalysisUsage(AnalysisUsage &AU) const;
AU.addRequiredTransitive<TargetData>();
AU.addRequiredTransitive<AliasAnalysis>();
AU.setPreservesAll();
}
//===--------------------------------------------------------------------- //===---------------------------------------------------------------------
// Client API // Client API

View File

@ -20,6 +20,7 @@
namespace llvm { namespace llvm {
class Type; class Type;
class Value;
class FindUsedTypes : public ModulePass { class FindUsedTypes : public ModulePass {
std::set<const Type *> UsedTypes; std::set<const Type *> UsedTypes;

View File

@ -54,8 +54,6 @@ static void RemoveFromVector(std::vector<T*> &V, T *N) {
class DominatorTree; class DominatorTree;
class LoopInfo; class LoopInfo;
class PHINode;
class Instruction;
template<class N> class LoopInfoBase; template<class N> class LoopInfoBase;
template<class N> class LoopBase; template<class N> class LoopBase;

View File

@ -14,7 +14,7 @@
#ifndef LLVM_ANALYSIS_SCALAREVOLUTION_EXPANDER_H #ifndef LLVM_ANALYSIS_SCALAREVOLUTION_EXPANDER_H
#define LLVM_ANALYSIS_SCALAREVOLUTION_EXPANDER_H #define LLVM_ANALYSIS_SCALAREVOLUTION_EXPANDER_H
#include "llvm/Instructions.h" #include "llvm/Instruction.h"
#include "llvm/Type.h" #include "llvm/Type.h"
#include "llvm/Analysis/ScalarEvolution.h" #include "llvm/Analysis/ScalarEvolution.h"
#include "llvm/Analysis/ScalarEvolutionExpressions.h" #include "llvm/Analysis/ScalarEvolutionExpressions.h"
@ -119,4 +119,3 @@ namespace llvm {
} }
#endif #endif

View File

@ -17,7 +17,7 @@
#include "llvm/ADT/DenseMap.h" #include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/SmallPtrSet.h" #include "llvm/ADT/SmallPtrSet.h"
#include "llvm/ADT/SmallVector.h" #include <iosfwd>
#include <vector> #include <vector>
#include <set> #include <set>
@ -31,6 +31,8 @@ namespace llvm {
class BasicBlock; class BasicBlock;
class Function; class Function;
class SparseSolver; class SparseSolver;
template<typename T> class SmallVectorImpl;
/// AbstractLatticeFunction - This class is implemented by the dataflow instance /// AbstractLatticeFunction - This class is implemented by the dataflow instance
/// to specify what the lattice values are and how they handle merges etc. /// to specify what the lattice values are and how they handle merges etc.

View File

@ -15,8 +15,8 @@
#ifndef LLVM_ANALYSIS_VALUETRACKING_H #ifndef LLVM_ANALYSIS_VALUETRACKING_H
#define LLVM_ANALYSIS_VALUETRACKING_H #define LLVM_ANALYSIS_VALUETRACKING_H
#include "llvm/Support/DataTypes.h"
#include <string> #include <string>
#include <llvm/Support/DataTypes.h>
namespace llvm { namespace llvm {
class Value; class Value;

View File

@ -17,7 +17,6 @@
namespace llvm { namespace llvm {
class Function; class Function;
class CallInst; class CallInst;
class BasicBlock;
/// This is a more granular function that simply checks an intrinsic function /// This is a more granular function that simply checks an intrinsic function
/// for upgrading, and returns true if it requires upgrading. It may return /// for upgrading, and returns true if it requires upgrading. It may return

View File

@ -30,7 +30,6 @@ namespace llvm {
class ConstantVector; class ConstantVector;
class GCMetadataPrinter; class GCMetadataPrinter;
class GlobalVariable; class GlobalVariable;
class GlobalAlias;
class MachineConstantPoolEntry; class MachineConstantPoolEntry;
class MachineConstantPoolValue; class MachineConstantPoolValue;
class MachineModuleInfo; class MachineModuleInfo;

View File

@ -1,4 +1,4 @@
//===--------- BreakCriticalMachineEdges.h - Break critical edges ---------===// //===--------- BreakCriticalMachineEdge.h - Break critical edges ---------===//
// //
// The LLVM Compiler Infrastructure // The LLVM Compiler Infrastructure
// //
@ -11,8 +11,8 @@
// //
//===---------------------------------------------------------------------===// //===---------------------------------------------------------------------===//
#ifndef LLVM_CODEGEN_BREAKCRITICALMACHINEEDGES_H #ifndef LLVM_CODEGEN_BREAKCRITICALMACHINEEDGE_H
#define LLVM_CODEGEN_BREAKCRITICALMACHINEEDGES_H #define LLVM_CODEGEN_BREAKCRITICALMACHINEEDGE_H
#include "llvm/CodeGen/MachineJumpTableInfo.h" #include "llvm/CodeGen/MachineJumpTableInfo.h"
#include "llvm/Target/TargetInstrInfo.h" #include "llvm/Target/TargetInstrInfo.h"

View File

@ -20,8 +20,6 @@
#ifndef LLVM_CODEGEN_DWARFWRITER_H #ifndef LLVM_CODEGEN_DWARFWRITER_H
#define LLVM_CODEGEN_DWARFWRITER_H #define LLVM_CODEGEN_DWARFWRITER_H
#include <iosfwd>
namespace llvm { namespace llvm {
class AsmPrinter; class AsmPrinter;
@ -48,7 +46,6 @@ private:
DwarfException *DE; DwarfException *DE;
public: public:
DwarfWriter(raw_ostream &OS, AsmPrinter *A, const TargetAsmInfo *T); DwarfWriter(raw_ostream &OS, AsmPrinter *A, const TargetAsmInfo *T);
virtual ~DwarfWriter(); virtual ~DwarfWriter();

View File

@ -49,4 +49,3 @@ namespace llvm {
} // end llvm namespace } // end llvm namespace
#endif // LLVM_CODEGEN_ELF_RELOCATION_H #endif // LLVM_CODEGEN_ELF_RELOCATION_H

View File

@ -14,7 +14,6 @@
#ifndef LLVM_CODEGEN_FASTISEL_H #ifndef LLVM_CODEGEN_FASTISEL_H
#define LLVM_CODEGEN_FASTISEL_H #define LLVM_CODEGEN_FASTISEL_H
#include "llvm/BasicBlock.h"
#include "llvm/ADT/DenseMap.h" #include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/SmallSet.h" #include "llvm/ADT/SmallSet.h"
#include "llvm/CodeGen/SelectionDAGNodes.h" #include "llvm/CodeGen/SelectionDAGNodes.h"

View File

@ -14,8 +14,6 @@
#ifndef LLVM_CODEGEN_FILEWRITERS_H #ifndef LLVM_CODEGEN_FILEWRITERS_H
#define LLVM_CODEGEN_FILEWRITERS_H #define LLVM_CODEGEN_FILEWRITERS_H
#include <iosfwd>
namespace llvm { namespace llvm {
class PassManagerBase; class PassManagerBase;

View File

@ -23,8 +23,6 @@
#include "llvm/CodeGen/GCMetadata.h" #include "llvm/CodeGen/GCMetadata.h"
#include "llvm/CodeGen/GCStrategy.h" #include "llvm/CodeGen/GCStrategy.h"
#include "llvm/Support/Registry.h" #include "llvm/Support/Registry.h"
#include <iosfwd>
#include <string>
namespace llvm { namespace llvm {

View File

@ -38,7 +38,6 @@
#include "llvm/CodeGen/GCMetadata.h" #include "llvm/CodeGen/GCMetadata.h"
#include "llvm/Support/Registry.h" #include "llvm/Support/Registry.h"
#include <iosfwd>
#include <string> #include <string>
namespace llvm { namespace llvm {

View File

@ -34,4 +34,3 @@ namespace {
} }
#endif // LLVM_CODEGEN_LINKALLASMWRITERCOMPONENTS_H #endif // LLVM_CODEGEN_LINKALLASMWRITERCOMPONENTS_H

View File

@ -24,7 +24,6 @@
#include "llvm/CodeGen/LiveInterval.h" #include "llvm/CodeGen/LiveInterval.h"
#include "llvm/ADT/BitVector.h" #include "llvm/ADT/BitVector.h"
#include "llvm/ADT/DenseMap.h" #include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/SmallPtrSet.h"
#include "llvm/ADT/SmallVector.h" #include "llvm/ADT/SmallVector.h"
#include "llvm/Support/Allocator.h" #include "llvm/Support/Allocator.h"
#include <cmath> #include <cmath>

View File

@ -32,7 +32,6 @@
#include "llvm/CodeGen/MachineFunctionPass.h" #include "llvm/CodeGen/MachineFunctionPass.h"
#include "llvm/ADT/BitVector.h" #include "llvm/ADT/BitVector.h"
#include "llvm/ADT/DenseMap.h" #include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/SmallSet.h"
#include "llvm/ADT/SmallVector.h" #include "llvm/ADT/SmallVector.h"
namespace llvm { namespace llvm {

View File

@ -20,7 +20,6 @@
namespace llvm { namespace llvm {
class AsmPrinter;
class Constant; class Constant;
class FoldingSetNodeID; class FoldingSetNodeID;
class TargetData; class TargetData;

View File

@ -16,9 +16,6 @@
#define LLVM_CODEGEN_MACHINEDOMINATORS_H #define LLVM_CODEGEN_MACHINEDOMINATORS_H
#include "llvm/CodeGen/MachineFunctionPass.h" #include "llvm/CodeGen/MachineFunctionPass.h"
#include "llvm/CodeGen/MachineBasicBlock.h"
#include "llvm/CodeGen/MachineFunction.h"
#include "llvm/CodeGen/MachineInstr.h"
#include "llvm/Analysis/Dominators.h" #include "llvm/Analysis/Dominators.h"
#include "llvm/Analysis/DominatorInternals.h" #include "llvm/Analysis/DominatorInternals.h"
@ -45,21 +42,13 @@ public:
static char ID; // Pass ID, replacement for typeid static char ID; // Pass ID, replacement for typeid
DominatorTreeBase<MachineBasicBlock>* DT; DominatorTreeBase<MachineBasicBlock>* DT;
MachineDominatorTree() : MachineFunctionPass(intptr_t(&ID)) { MachineDominatorTree();
DT = new DominatorTreeBase<MachineBasicBlock>(false);
}
~MachineDominatorTree() { ~MachineDominatorTree();
DT->releaseMemory();
delete DT;
}
DominatorTreeBase<MachineBasicBlock>& getBase() { return *DT; } DominatorTreeBase<MachineBasicBlock>& getBase() { return *DT; }
virtual void getAnalysisUsage(AnalysisUsage &AU) const { virtual void getAnalysisUsage(AnalysisUsage &AU) const;
AU.setPreservesAll();
MachineFunctionPass::getAnalysisUsage(AU);
}
/// getRoots - Return the root blocks of the current CFG. This may include /// getRoots - Return the root blocks of the current CFG. This may include
/// multiple blocks if we are computing post dominators. For forward /// multiple blocks if we are computing post dominators. For forward
@ -77,11 +66,7 @@ public:
return DT->getRootNode(); return DT->getRootNode();
} }
virtual bool runOnMachineFunction(MachineFunction &F) { virtual bool runOnMachineFunction(MachineFunction &F);
DT->recalculate(F);
return false;
}
inline bool dominates(MachineDomTreeNode* A, MachineDomTreeNode* B) const { inline bool dominates(MachineDomTreeNode* A, MachineDomTreeNode* B) const {
return DT->dominates(A, B); return DT->dominates(A, B);
@ -173,9 +158,7 @@ public:
} }
virtual void releaseMemory() { virtual void releaseMemory();
DT->releaseMemory();
}
virtual void print(std::ostream &OS, const Module* M= 0) const { virtual void print(std::ostream &OS, const Module* M= 0) const {
DT->print(OS, M); DT->print(OS, M);

View File

@ -17,7 +17,6 @@
#ifndef LLVM_CODEGEN_MACHINEINSTRBUILDER_H #ifndef LLVM_CODEGEN_MACHINEINSTRBUILDER_H
#define LLVM_CODEGEN_MACHINEINSTRBUILDER_H #define LLVM_CODEGEN_MACHINEINSTRBUILDER_H
#include "llvm/CodeGen/MachineBasicBlock.h"
#include "llvm/CodeGen/MachineFunction.h" #include "llvm/CodeGen/MachineFunction.h"
namespace llvm { namespace llvm {

View File

@ -31,9 +31,6 @@
#define LLVM_CODEGEN_MACHINE_LOOP_INFO_H #define LLVM_CODEGEN_MACHINE_LOOP_INFO_H
#include "llvm/CodeGen/MachineFunctionPass.h" #include "llvm/CodeGen/MachineFunctionPass.h"
#include "llvm/CodeGen/MachineBasicBlock.h"
#include "llvm/CodeGen/MachineFunction.h"
#include "llvm/CodeGen/MachineInstr.h"
#include "llvm/Analysis/LoopInfo.h" #include "llvm/Analysis/LoopInfo.h"
namespace llvm { namespace llvm {

View File

@ -13,22 +13,18 @@
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
#include "llvm/System/IncludeFile.h" #include "llvm/System/IncludeFile.h"
#include "llvm/CodeGen/MachineInstr.h" #include "llvm/CodeGen/LiveInterval.h"
#include "llvm/CodeGen/LiveIntervalAnalysis.h" #include "llvm/ADT/SmallPtrSet.h"
#include "llvm/CodeGen/LiveVariables.h"
#include "llvm/Target/TargetRegisterInfo.h"
#ifndef LLVM_CODEGEN_REGISTER_COALESCER_H #ifndef LLVM_CODEGEN_REGISTER_COALESCER_H
#define LLVM_CODEGEN_REGISTER_COALESCER_H #define LLVM_CODEGEN_REGISTER_COALESCER_H
namespace llvm namespace llvm {
{
class MachineFunction; class MachineFunction;
class RegallocQuery; class RegallocQuery;
class AnalysisUsage; class AnalysisUsage;
class LiveIntervals;
class MachineInstr; class MachineInstr;
class TargetRegisterInfo;
/// An abstract interface for register coalescers. Coalescers must /// An abstract interface for register coalescers. Coalescers must
/// implement this interface to be part of the coalescer analysis /// implement this interface to be part of the coalescer analysis

View File

@ -19,7 +19,6 @@
#ifndef LLVM_CODEGEN_SELECTIONDAGNODES_H #ifndef LLVM_CODEGEN_SELECTIONDAGNODES_H
#define LLVM_CODEGEN_SELECTIONDAGNODES_H #define LLVM_CODEGEN_SELECTIONDAGNODES_H
#include "llvm/Value.h"
#include "llvm/Constants.h" #include "llvm/Constants.h"
#include "llvm/ADT/FoldingSet.h" #include "llvm/ADT/FoldingSet.h"
#include "llvm/ADT/GraphTraits.h" #include "llvm/ADT/GraphTraits.h"

View File

@ -20,7 +20,6 @@
#include "llvm/ADT/StringSet.h" #include "llvm/ADT/StringSet.h"
#include "llvm/System/Path.h" #include "llvm/System/Path.h"
#include <string>
#include <vector> #include <vector>
namespace llvmc { namespace llvmc {

View File

@ -47,4 +47,3 @@
#endif #endif
#endif #endif

View File

@ -135,4 +135,3 @@ namespace llvm {
} // end namespace llvm } // end namespace llvm
#endif #endif

View File

@ -17,7 +17,6 @@
#include <vector> #include <vector>
#include <map> #include <map>
#include <cassert>
#include <string> #include <string>
#include "llvm/System/Mutex.h" #include "llvm/System/Mutex.h"
#include "llvm/ADT/SmallVector.h" #include "llvm/ADT/SmallVector.h"

View File

@ -23,7 +23,6 @@ namespace llvm {
class Module; class Module;
class Constant; class Constant;
class PointerType;
template<typename ValueSubClass, typename ItemParentClass> template<typename ValueSubClass, typename ItemParentClass>
class SymbolTableListTraits; class SymbolTableListTraits;

View File

@ -28,7 +28,6 @@ namespace llvm {
class Module; class Module;
class Constant; class Constant;
class PointerType;
template<typename ValueSubClass, typename ItemParentClass> template<typename ValueSubClass, typename ItemParentClass>
class SymbolTableListTraits; class SymbolTableListTraits;

View File

@ -16,19 +16,16 @@
#ifndef LLVM_INSTRUCTIONS_H #ifndef LLVM_INSTRUCTIONS_H
#define LLVM_INSTRUCTIONS_H #define LLVM_INSTRUCTIONS_H
#include <iterator>
#include "llvm/InstrTypes.h" #include "llvm/InstrTypes.h"
#include "llvm/DerivedTypes.h" #include "llvm/DerivedTypes.h"
#include "llvm/Attributes.h" #include "llvm/Attributes.h"
#include "llvm/BasicBlock.h" #include "llvm/BasicBlock.h"
#include "llvm/ADT/SmallVector.h" #include "llvm/ADT/SmallVector.h"
#include <iterator>
namespace llvm { namespace llvm {
class ConstantInt; class ConstantInt;
class PointerType;
class VectorType;
class ConstantRange; class ConstantRange;
class APInt; class APInt;

View File

@ -38,7 +38,6 @@
namespace llvm { namespace llvm {
class Value;
class BasicBlock; class BasicBlock;
class Function; class Function;
class Module; class Module;

View File

@ -1,4 +1,4 @@
//===- llvm/PassManager.h - Pass Inftrastructre classes --------*- C++ -*-===// //===- llvm/PassManagers.h - Pass Infrastructure classes -------*- C++ -*-===//
// //
// The LLVM Compiler Infrastructure // The LLVM Compiler Infrastructure
// //
@ -11,8 +11,8 @@
// //
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
#ifndef PASSMANAGERS_H #ifndef LLVM_PASSMANAGERS_H
#define PASSMANAGERS_H #define LLVM_PASSMANAGERS_H
#include "llvm/PassManager.h" #include "llvm/PassManager.h"
#include "llvm/ADT/SmallVector.h" #include "llvm/ADT/SmallVector.h"
@ -428,4 +428,3 @@ extern void StartPassTimer(llvm::Pass *);
extern void StopPassTimer(llvm::Pass *); extern void StopPassTimer(llvm::Pass *);
#endif #endif

View File

@ -22,7 +22,6 @@
#ifndef LLVM_SUPPORT_ANNOTATION_H #ifndef LLVM_SUPPORT_ANNOTATION_H
#define LLVM_SUPPORT_ANNOTATION_H #define LLVM_SUPPORT_ANNOTATION_H
#include <string>
#include <cassert> #include <cassert>
namespace llvm { namespace llvm {

View File

@ -15,7 +15,6 @@
#define LLVM_SUPPORT_DATAFLOW_H #define LLVM_SUPPORT_DATAFLOW_H
#include "llvm/User.h" #include "llvm/User.h"
#include "llvm/Value.h"
#include "llvm/ADT/GraphTraits.h" #include "llvm/ADT/GraphTraits.h"
namespace llvm { namespace llvm {

View File

@ -15,7 +15,7 @@
#ifndef LLVM_SUPPORT_DEBUGINFOBUILDER_H #ifndef LLVM_SUPPORT_DEBUGINFOBUILDER_H
#define LLVM_SUPPORT_DEBUGINFOBUILDER_H #define LLVM_SUPPORT_DEBUGINFOBUILDER_H
#include <llvm/Module.h> #include "llvm/Module.h"
#include <string> #include <string>
namespace llvm { namespace llvm {

View File

@ -23,7 +23,6 @@
#include "llvm/Support/DataTypes.h" #include "llvm/Support/DataTypes.h"
#include <cstring> #include <cstring>
#include <cstdlib>
namespace llvm { namespace llvm {

View File

@ -15,7 +15,6 @@
#ifndef LLVM_SUPPORT_IRBUILDER_H #ifndef LLVM_SUPPORT_IRBUILDER_H
#define LLVM_SUPPORT_IRBUILDER_H #define LLVM_SUPPORT_IRBUILDER_H
#include "llvm/BasicBlock.h"
#include "llvm/Constants.h" #include "llvm/Constants.h"
#include "llvm/Instructions.h" #include "llvm/Instructions.h"
#include "llvm/GlobalVariable.h" #include "llvm/GlobalVariable.h"

View File

@ -23,10 +23,6 @@ namespace llvm {
#define HANDLE_INST(NUM, OPCODE, CLASS) class CLASS; #define HANDLE_INST(NUM, OPCODE, CLASS) class CLASS;
#include "llvm/Instruction.def" #include "llvm/Instruction.def"
// Forward declare the intermediate types...
class TerminatorInst; class BinaryOperator;
class AllocationInst;
#define DELEGATE(CLASS_TO_VISIT) \ #define DELEGATE(CLASS_TO_VISIT) \
return static_cast<SubClass*>(this)-> \ return static_cast<SubClass*>(this)-> \
visit##CLASS_TO_VISIT(static_cast<CLASS_TO_VISIT&>(I)) visit##CLASS_TO_VISIT(static_cast<CLASS_TO_VISIT&>(I))

View File

@ -15,7 +15,7 @@
#ifndef LLVM_SUPPORT_MUTEXGUARD_H #ifndef LLVM_SUPPORT_MUTEXGUARD_H
#define LLVM_SUPPORT_MUTEXGUARD_H #define LLVM_SUPPORT_MUTEXGUARD_H
#include <llvm/System/Mutex.h> #include "llvm/System/Mutex.h"
namespace llvm { namespace llvm {
/// Instances of this class acquire a given Mutex Lock when constructed and /// Instances of this class acquire a given Mutex Lock when constructed and

View File

@ -129,4 +129,5 @@ public:
}; };
} // End llvm namespace } // End llvm namespace
#endif #endif

View File

@ -59,4 +59,3 @@ namespace llvm {
} // end namespace llvm } // end namespace llvm
#endif #endif

View File

@ -16,7 +16,6 @@
#define LLVM_DARWIN_TARGET_ASM_INFO_H #define LLVM_DARWIN_TARGET_ASM_INFO_H
#include "llvm/Target/TargetAsmInfo.h" #include "llvm/Target/TargetAsmInfo.h"
#include "llvm/Target/TargetMachine.h"
namespace llvm { namespace llvm {
class GlobalValue; class GlobalValue;

View File

@ -16,7 +16,6 @@
#define LLVM_ELF_TARGET_ASM_INFO_H #define LLVM_ELF_TARGET_ASM_INFO_H
#include "llvm/Target/TargetAsmInfo.h" #include "llvm/Target/TargetAsmInfo.h"
#include "llvm/Target/TargetMachine.h"
namespace llvm { namespace llvm {
class GlobalValue; class GlobalValue;

View File

@ -16,8 +16,6 @@
namespace llvm { namespace llvm {
class MachineBasicBlock;
//===--------------------------------------------------------------------===// //===--------------------------------------------------------------------===//
// TargetELFWriterInfo // TargetELFWriterInfo
//===--------------------------------------------------------------------===// //===--------------------------------------------------------------------===//

View File

@ -18,8 +18,6 @@
namespace llvm { namespace llvm {
class MachineFunction;
/// Information about stack frame layout on the target. It holds the direction /// Information about stack frame layout on the target. It holds the direction
/// of stack growth, the known stack alignment on entry to each function, and /// of stack growth, the known stack alignment on entry to each function, and
/// the offset to the locals area. /// the offset to the locals area.

View File

@ -15,8 +15,6 @@
#ifndef LLVM_TARGET_TARGETINSTRDESC_H #ifndef LLVM_TARGET_TARGETINSTRDESC_H
#define LLVM_TARGET_TARGETINSTRDESC_H #define LLVM_TARGET_TARGETINSTRDESC_H
#include <cassert>
namespace llvm { namespace llvm {
class TargetRegisterClass; class TargetRegisterClass;

View File

@ -23,7 +23,6 @@
namespace llvm { namespace llvm {
class Function; class Function;
class GlobalValue; class GlobalValue;
class MachineBasicBlock;
class MachineCodeEmitter; class MachineCodeEmitter;
class MachineRelocation; class MachineRelocation;

View File

@ -22,9 +22,7 @@
#ifndef LLVM_TARGET_TARGETLOWERING_H #ifndef LLVM_TARGET_TARGETLOWERING_H
#define LLVM_TARGET_TARGETLOWERING_H #define LLVM_TARGET_TARGETLOWERING_H
#include "llvm/Constants.h"
#include "llvm/InlineAsm.h" #include "llvm/InlineAsm.h"
#include "llvm/Instructions.h"
#include "llvm/CodeGen/SelectionDAGNodes.h" #include "llvm/CodeGen/SelectionDAGNodes.h"
#include "llvm/CodeGen/RuntimeLibcalls.h" #include "llvm/CodeGen/RuntimeLibcalls.h"
#include "llvm/ADT/APFloat.h" #include "llvm/ADT/APFloat.h"
@ -36,6 +34,7 @@
namespace llvm { namespace llvm {
class AllocaInst; class AllocaInst;
class CallInst;
class Function; class Function;
class FastISel; class FastISel;
class MachineBasicBlock; class MachineBasicBlock;
@ -51,7 +50,6 @@ namespace llvm {
class TargetRegisterClass; class TargetRegisterClass;
class TargetSubtarget; class TargetSubtarget;
class Value; class Value;
class VectorType;
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
/// TargetLowering - This class defines information used to lower LLVM code to /// TargetLowering - This class defines information used to lower LLVM code to

View File

@ -16,7 +16,6 @@
#include "llvm/Target/TargetInstrItineraries.h" #include "llvm/Target/TargetInstrItineraries.h"
#include <cassert> #include <cassert>
#include <iosfwd>
namespace llvm { namespace llvm {
@ -78,7 +77,7 @@ class TargetMachine {
TargetMachine(const TargetMachine &); // DO NOT IMPLEMENT TargetMachine(const TargetMachine &); // DO NOT IMPLEMENT
void operator=(const TargetMachine &); // DO NOT IMPLEMENT void operator=(const TargetMachine &); // DO NOT IMPLEMENT
protected: // Can only create subclasses. protected: // Can only create subclasses.
TargetMachine() : AsmInfo(NULL) { } TargetMachine() : AsmInfo(0) { }
/// getSubtargetImpl - virtual method implemented by subclasses that returns /// getSubtargetImpl - virtual method implemented by subclasses that returns
/// a reference to that target's TargetSubtarget-derived member variable. /// a reference to that target's TargetSubtarget-derived member variable.
@ -90,7 +89,7 @@ protected: // Can only create subclasses.
/// createTargetAsmInfo - Create a new instance of target specific asm /// createTargetAsmInfo - Create a new instance of target specific asm
/// information. /// information.
virtual const TargetAsmInfo *createTargetAsmInfo() const { return NULL; } virtual const TargetAsmInfo *createTargetAsmInfo() const { return 0; }
public: public:
virtual ~TargetMachine(); virtual ~TargetMachine();

View File

@ -16,7 +16,6 @@
#ifndef LLVM_TARGET_TARGETREGISTERINFO_H #ifndef LLVM_TARGET_TARGETREGISTERINFO_H
#define LLVM_TARGET_TARGETREGISTERINFO_H #define LLVM_TARGET_TARGETREGISTERINFO_H
#include "llvm/ADT/SmallVector.h"
#include "llvm/CodeGen/MachineBasicBlock.h" #include "llvm/CodeGen/MachineBasicBlock.h"
#include "llvm/CodeGen/ValueTypes.h" #include "llvm/CodeGen/ValueTypes.h"
#include <cassert> #include <cassert>
@ -26,12 +25,8 @@ namespace llvm {
class BitVector; class BitVector;
class MachineFunction; class MachineFunction;
class MachineInstr;
class MachineMove; class MachineMove;
class RegScavenger; class RegScavenger;
class SDNode;
class SelectionDAG;
class Type;
/// TargetRegisterDesc - This record contains all of the information known about /// TargetRegisterDesc - This record contains all of the information known about
/// a particular register. The AliasSet field (if not null) contains a pointer /// a particular register. The AliasSet field (if not null) contains a pointer

View File

@ -15,15 +15,18 @@
#ifndef LLVM_TRANSFORMS_UTILS_LOCAL_H #ifndef LLVM_TRANSFORMS_UTILS_LOCAL_H
#define LLVM_TRANSFORMS_UTILS_LOCAL_H #define LLVM_TRANSFORMS_UTILS_LOCAL_H
#include "llvm/Function.h"
namespace llvm { namespace llvm {
class BasicBlock;
class Instruction;
class Value;
class Pass; class Pass;
class PHINode; class PHINode;
class AllocaInst; class AllocaInst;
class ConstantExpr; class ConstantExpr;
class TargetData; class TargetData;
template<typename T> class SmallVectorImpl;
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
// Local constant propagation. // Local constant propagation.
@ -84,12 +87,12 @@ bool SimplifyCFG(BasicBlock *BB);
/// the alloca inserted to create a stack slot for X. /// the alloca inserted to create a stack slot for X.
/// ///
AllocaInst *DemoteRegToStack(Instruction &X, bool VolatileLoads = false, AllocaInst *DemoteRegToStack(Instruction &X, bool VolatileLoads = false,
Instruction *AllocaPoint = NULL); Instruction *AllocaPoint = 0);
/// DemotePHIToStack - This function takes a virtual register computed by a phi /// DemotePHIToStack - This function takes a virtual register computed by a phi
/// node and replaces it with a slot in the stack frame, allocated via alloca. /// node and replaces it with a slot in the stack frame, allocated via alloca.
/// The phi node is deleted and it returns the pointer to the alloca inserted. /// The phi node is deleted and it returns the pointer to the alloca inserted.
AllocaInst *DemotePHIToStack(PHINode *P, Instruction *AllocaPoint = NULL); AllocaInst *DemotePHIToStack(PHINode *P, Instruction *AllocaPoint = 0);
} // End llvm namespace } // End llvm namespace

View File

@ -134,4 +134,3 @@ private:
} // End llvm namespace } // End llvm namespace
#endif #endif

View File

@ -14,8 +14,11 @@
#define DEBUG_TYPE "escape-analysis" #define DEBUG_TYPE "escape-analysis"
#include "llvm/Analysis/EscapeAnalysis.h" #include "llvm/Analysis/EscapeAnalysis.h"
#include "llvm/Constants.h" #include "llvm/Constants.h"
#include "llvm/Instructions.h"
#include "llvm/Module.h" #include "llvm/Module.h"
#include "llvm/Analysis/AliasAnalysis.h"
#include "llvm/Support/InstIterator.h" #include "llvm/Support/InstIterator.h"
#include "llvm/Target/TargetData.h"
#include "llvm/ADT/SmallPtrSet.h" #include "llvm/ADT/SmallPtrSet.h"
#include <vector> #include <vector>
using namespace llvm; using namespace llvm;
@ -25,6 +28,12 @@ static RegisterPass<EscapeAnalysis> X("escape-analysis",
"Pointer Escape Analysis", true, true); "Pointer Escape Analysis", true, true);
void EscapeAnalysis::getAnalysisUsage(AnalysisUsage &AU) const {
AU.addRequiredTransitive<TargetData>();
AU.addRequiredTransitive<AliasAnalysis>();
AU.setPreservesAll();
}
/// runOnFunction - Precomputation for escape analysis. This collects all know /// runOnFunction - Precomputation for escape analysis. This collects all know
/// "escape points" in the def-use graph of the function. These are /// "escape points" in the def-use graph of the function. These are
/// instructions which allow their inputs to escape from the current function. /// instructions which allow their inputs to escape from the current function.

View File

@ -18,6 +18,7 @@
#include "llvm/InstrTypes.h" #include "llvm/InstrTypes.h"
#include "llvm/Support/Streams.h" #include "llvm/Support/Streams.h"
#include <cstdio> #include <cstdio>
#include <cstdlib>
#include <map> #include <map>
using namespace llvm; using namespace llvm;

View File

@ -15,6 +15,7 @@
#include "llvm/Bitcode/ReaderWriter.h" #include "llvm/Bitcode/ReaderWriter.h"
#include "llvm/Support/MemoryBuffer.h" #include "llvm/Support/MemoryBuffer.h"
#include "llvm/Module.h" #include "llvm/Module.h"
#include <cstdlib>
#include <memory> #include <memory>
using namespace llvm; using namespace llvm;

View File

@ -17,9 +17,7 @@
#include "LLToken.h" #include "LLToken.h"
#include "llvm/ADT/APSInt.h" #include "llvm/ADT/APSInt.h"
#include "llvm/ADT/APFloat.h" #include "llvm/ADT/APFloat.h"
#include <iosfwd>
#include <string> #include <string>
#include <vector>
namespace llvm { namespace llvm {
class MemoryBuffer; class MemoryBuffer;

View File

@ -26,3 +26,28 @@ static RegisterPass<MachineDominatorTree>
E("machinedomtree", "MachineDominator Tree Construction", true); E("machinedomtree", "MachineDominator Tree Construction", true);
const PassInfo *const llvm::MachineDominatorsID = &E; const PassInfo *const llvm::MachineDominatorsID = &E;
void MachineDominatorTree::getAnalysisUsage(AnalysisUsage &AU) const {
AU.setPreservesAll();
MachineFunctionPass::getAnalysisUsage(AU);
}
bool MachineDominatorTree::runOnMachineFunction(MachineFunction &F) {
DT->recalculate(F);
return false;
}
MachineDominatorTree::MachineDominatorTree()
: MachineFunctionPass(intptr_t(&ID)) {
DT = new DominatorTreeBase<MachineBasicBlock>(false);
}
MachineDominatorTree::~MachineDominatorTree() {
DT->releaseMemory();
delete DT;
}
void MachineDominatorTree::releaseMemory() {
DT->releaseMemory();
}

View File

@ -20,7 +20,6 @@
#include "llvm/Target/TargetRegisterInfo.h" #include "llvm/Target/TargetRegisterInfo.h"
#include "llvm/Target/TargetInstrInfo.h" #include "llvm/Target/TargetInstrInfo.h"
#include "llvm/Target/TargetMachine.h" #include "llvm/Target/TargetMachine.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/Statistic.h" #include "llvm/ADT/Statistic.h"
#include "llvm/Support/CommandLine.h" #include "llvm/Support/CommandLine.h"
#include "llvm/Support/Compiler.h" #include "llvm/Support/Compiler.h"

View File

@ -18,7 +18,6 @@
#include "llvm/Target/TargetRegisterInfo.h" #include "llvm/Target/TargetRegisterInfo.h"
#include "llvm/Target/TargetInstrInfo.h" #include "llvm/Target/TargetInstrInfo.h"
#include "llvm/Target/TargetMachine.h" #include "llvm/Target/TargetMachine.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/Statistic.h" #include "llvm/ADT/Statistic.h"
#include "llvm/Support/Compiler.h" #include "llvm/Support/Compiler.h"
#include "llvm/Support/Debug.h" #include "llvm/Support/Debug.h"

View File

@ -32,10 +32,7 @@
#include "llvm/Support/Compiler.h" #include "llvm/Support/Compiler.h"
#include "llvm/Support/Debug.h" #include "llvm/Support/Debug.h"
#include "llvm/ADT/Statistic.h" #include "llvm/ADT/Statistic.h"
#include "llvm/ADT/DenseSet.h"
#include "llvm/ADT/SmallVector.h"
#include <map> #include <map>
#include <climits>
using namespace llvm; using namespace llvm;
STATISTIC(NumStalls, "Number of pipeline stalls"); STATISTIC(NumStalls, "Number of pipeline stalls");

View File

@ -29,6 +29,7 @@
#include "llvm/Target/TargetOptions.h" #include "llvm/Target/TargetOptions.h"
#include "llvm/Target/TargetInstrInfo.h" #include "llvm/Target/TargetInstrInfo.h"
#include "llvm/ADT/EquivalenceClasses.h" #include "llvm/ADT/EquivalenceClasses.h"
#include "llvm/ADT/SmallSet.h"
#include "llvm/ADT/Statistic.h" #include "llvm/ADT/Statistic.h"
#include "llvm/ADT/STLExtras.h" #include "llvm/ADT/STLExtras.h"
#include "llvm/Support/Debug.h" #include "llvm/Support/Debug.h"

View File

@ -24,6 +24,7 @@
#include "llvm/Target/TargetInstrInfo.h" #include "llvm/Target/TargetInstrInfo.h"
#include "llvm/Target/TargetMachine.h" #include "llvm/Target/TargetMachine.h"
#include "llvm/ADT/SmallPtrSet.h" #include "llvm/ADT/SmallPtrSet.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/STLExtras.h" #include "llvm/ADT/STLExtras.h"
using namespace llvm; using namespace llvm;

View File

@ -24,9 +24,7 @@
#include "llvm/Target/TargetInstrInfo.h" #include "llvm/Target/TargetInstrInfo.h"
#include "llvm/Support/Debug.h" #include "llvm/Support/Debug.h"
#include "llvm/Support/Compiler.h" #include "llvm/Support/Compiler.h"
#include "llvm/ADT/BitVector.h"
#include "llvm/ADT/PriorityQueue.h" #include "llvm/ADT/PriorityQueue.h"
#include "llvm/ADT/SmallPtrSet.h"
#include "llvm/ADT/SmallSet.h" #include "llvm/ADT/SmallSet.h"
#include "llvm/ADT/Statistic.h" #include "llvm/ADT/Statistic.h"
#include "llvm/ADT/STLExtras.h" #include "llvm/ADT/STLExtras.h"

View File

@ -14,7 +14,6 @@
#define DEBUG_TYPE "isel" #define DEBUG_TYPE "isel"
#include "llvm/CodeGen/SelectionDAGISel.h" #include "llvm/CodeGen/SelectionDAGISel.h"
#include "SelectionDAGBuild.h" #include "SelectionDAGBuild.h"
#include "llvm/ADT/BitVector.h"
#include "llvm/Analysis/AliasAnalysis.h" #include "llvm/Analysis/AliasAnalysis.h"
#include "llvm/Constants.h" #include "llvm/Constants.h"
#include "llvm/CallingConv.h" #include "llvm/CallingConv.h"

View File

@ -15,11 +15,9 @@
#define LLVM_CODEGEN_SIMPLE_REGISTER_COALESCING_H #define LLVM_CODEGEN_SIMPLE_REGISTER_COALESCING_H
#include "llvm/CodeGen/MachineFunctionPass.h" #include "llvm/CodeGen/MachineFunctionPass.h"
#include "llvm/CodeGen/LiveInterval.h"
#include "llvm/CodeGen/LiveIntervalAnalysis.h" #include "llvm/CodeGen/LiveIntervalAnalysis.h"
#include "llvm/CodeGen/RegisterCoalescer.h" #include "llvm/CodeGen/RegisterCoalescer.h"
#include "llvm/ADT/BitVector.h" #include "llvm/ADT/BitVector.h"
#include "llvm/ADT/IndexedMap.h"
#include <queue> #include <queue>
namespace llvm { namespace llvm {

View File

@ -42,7 +42,7 @@
#include "llvm/Support/Debug.h" #include "llvm/Support/Debug.h"
#include "llvm/ADT/BitVector.h" #include "llvm/ADT/BitVector.h"
#include "llvm/ADT/DenseMap.h" #include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/SmallPtrSet.h" #include "llvm/ADT/SmallSet.h"
#include "llvm/ADT/Statistic.h" #include "llvm/ADT/Statistic.h"
#include "llvm/ADT/STLExtras.h" #include "llvm/ADT/STLExtras.h"
using namespace llvm; using namespace llvm;

View File

@ -21,6 +21,7 @@
#include "llvm/ADT/BitVector.h" #include "llvm/ADT/BitVector.h"
#include "llvm/ADT/IndexedMap.h" #include "llvm/ADT/IndexedMap.h"
#include "llvm/ADT/SmallPtrSet.h" #include "llvm/ADT/SmallPtrSet.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/Support/Streams.h" #include "llvm/Support/Streams.h"
#include <map> #include <map>

View File

@ -18,6 +18,7 @@
#include "llvm/Debugger/InferiorProcess.h" #include "llvm/Debugger/InferiorProcess.h"
#include "llvm/Support/MemoryBuffer.h" #include "llvm/Support/MemoryBuffer.h"
#include "llvm/ADT/StringExtras.h" #include "llvm/ADT/StringExtras.h"
#include <cstdlib>
#include <memory> #include <memory>
using namespace llvm; using namespace llvm;

View File

@ -17,7 +17,6 @@
#include "llvm/Function.h" #include "llvm/Function.h"
#include "llvm/ExecutionEngine/ExecutionEngine.h" #include "llvm/ExecutionEngine/ExecutionEngine.h"
#include "llvm/ExecutionEngine/GenericValue.h" #include "llvm/ExecutionEngine/GenericValue.h"
#include "llvm/ADT/APInt.h"
#include "llvm/Support/InstVisitor.h" #include "llvm/Support/InstVisitor.h"
#include "llvm/Support/CallSite.h" #include "llvm/Support/CallSite.h"
#include "llvm/Target/TargetData.h" #include "llvm/Target/TargetData.h"

View File

@ -15,7 +15,6 @@
#ifndef TARGET_ARM_H #ifndef TARGET_ARM_H
#define TARGET_ARM_H #define TARGET_ARM_H
#include <iosfwd>
#include <cassert> #include <cassert>
namespace llvm { namespace llvm {

View File

@ -15,7 +15,7 @@
#define LLVM_TARGET_ARM_CONSTANTPOOLVALUE_H #define LLVM_TARGET_ARM_CONSTANTPOOLVALUE_H
#include "llvm/CodeGen/MachineConstantPool.h" #include "llvm/CodeGen/MachineConstantPool.h"
#include <ostream> #include <iosfwd>
namespace llvm { namespace llvm {

View File

@ -15,8 +15,6 @@
#ifndef TARGET_ALPHA_H #ifndef TARGET_ALPHA_H
#define TARGET_ALPHA_H #define TARGET_ALPHA_H
#include <iosfwd>
namespace llvm { namespace llvm {
class AlphaTargetMachine; class AlphaTargetMachine;

View File

@ -15,6 +15,7 @@
#include "AlphaInstrInfo.h" #include "AlphaInstrInfo.h"
#include "AlphaGenInstrInfo.inc" #include "AlphaGenInstrInfo.inc"
#include "llvm/ADT/STLExtras.h" #include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/CodeGen/MachineInstrBuilder.h" #include "llvm/CodeGen/MachineInstrBuilder.h"
using namespace llvm; using namespace llvm;

View File

@ -16,7 +16,6 @@
#define LLVM_TARGET_IBMCELLSPU_H #define LLVM_TARGET_IBMCELLSPU_H
#include "llvm/Support/DataTypes.h" #include "llvm/Support/DataTypes.h"
#include <iosfwd>
namespace llvm { namespace llvm {
class SPUTargetMachine; class SPUTargetMachine;

View File

@ -14,8 +14,6 @@
#ifndef TARGET_IA64_H #ifndef TARGET_IA64_H
#define TARGET_IA64_H #define TARGET_IA64_H
#include <iosfwd>
namespace llvm { namespace llvm {
class IA64TargetMachine; class IA64TargetMachine;

View File

@ -15,6 +15,7 @@
#include "IA64.h" #include "IA64.h"
#include "IA64InstrBuilder.h" #include "IA64InstrBuilder.h"
#include "llvm/CodeGen/MachineInstrBuilder.h" #include "llvm/CodeGen/MachineInstrBuilder.h"
#include "llvm/ADT/SmallVector.h"
#include "IA64GenInstrInfo.inc" #include "IA64GenInstrInfo.inc"
using namespace llvm; using namespace llvm;

View File

@ -27,7 +27,6 @@
#include "llvm/Target/TargetMachine.h" #include "llvm/Target/TargetMachine.h"
#include "llvm/Target/TargetMachineRegistry.h" #include "llvm/Target/TargetMachineRegistry.h"
#include "llvm/Support/Mangler.h" #include "llvm/Support/Mangler.h"
#include <algorithm>
#include <ios> #include <ios>
using namespace llvm; using namespace llvm;

View File

@ -15,8 +15,6 @@
#ifndef TARGET_MIPS_H #ifndef TARGET_MIPS_H
#define TARGET_MIPS_H #define TARGET_MIPS_H
#include <iosfwd>
namespace llvm { namespace llvm {
class MipsTargetMachine; class MipsTargetMachine;
class FunctionPass; class FunctionPass;

View File

@ -14,6 +14,7 @@
#ifndef MIPS_MACHINE_FUNCTION_INFO_H #ifndef MIPS_MACHINE_FUNCTION_INFO_H
#define MIPS_MACHINE_FUNCTION_INFO_H #define MIPS_MACHINE_FUNCTION_INFO_H
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/VectorExtras.h" #include "llvm/ADT/VectorExtras.h"
#include "llvm/CodeGen/MachineFunction.h" #include "llvm/CodeGen/MachineFunction.h"
#include "llvm/CodeGen/MachineFrameInfo.h" #include "llvm/CodeGen/MachineFrameInfo.h"

View File

@ -15,8 +15,6 @@
#ifndef LLVM_TARGET_PIC16_H #ifndef LLVM_TARGET_PIC16_H
#define LLVM_TARGET_PIC16_H #define LLVM_TARGET_PIC16_H
#include <iosfwd>
namespace llvm { namespace llvm {
class PIC16TargetMachine; class PIC16TargetMachine;
class FunctionPass; class FunctionPass;

View File

@ -15,9 +15,6 @@
#ifndef LLVM_TARGET_POWERPC_H #ifndef LLVM_TARGET_POWERPC_H
#define LLVM_TARGET_POWERPC_H #define LLVM_TARGET_POWERPC_H
#include <iosfwd>
// GCC #defines PPC on Linux but we use it as our namespace name // GCC #defines PPC on Linux but we use it as our namespace name
#undef PPC #undef PPC

View File

@ -16,6 +16,7 @@
#include "llvm/Module.h" #include "llvm/Module.h"
#include "llvm/Target/TargetMachine.h" #include "llvm/Target/TargetMachine.h"
#include "PPCGenSubtarget.inc" #include "PPCGenSubtarget.inc"
#include <cstdlib>
using namespace llvm; using namespace llvm;
#if defined(__APPLE__) #if defined(__APPLE__)

View File

@ -15,7 +15,6 @@
#ifndef TARGET_SPARC_H #ifndef TARGET_SPARC_H
#define TARGET_SPARC_H #define TARGET_SPARC_H
#include <iosfwd>
#include <cassert> #include <cassert>
namespace llvm { namespace llvm {

View File

@ -15,6 +15,7 @@
#include "SparcSubtarget.h" #include "SparcSubtarget.h"
#include "Sparc.h" #include "Sparc.h"
#include "llvm/ADT/STLExtras.h" #include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/CodeGen/MachineInstrBuilder.h" #include "llvm/CodeGen/MachineInstrBuilder.h"
#include "SparcGenInstrInfo.inc" #include "SparcGenInstrInfo.inc"
using namespace llvm; using namespace llvm;

View File

@ -15,8 +15,6 @@
#ifndef TARGET_X86_H #ifndef TARGET_X86_H
#define TARGET_X86_H #define TARGET_X86_H
#include <iosfwd>
namespace llvm { namespace llvm {
class X86TargetMachine; class X86TargetMachine;

View File

@ -18,6 +18,7 @@
#include "X86MachineFunctionInfo.h" #include "X86MachineFunctionInfo.h"
#include "X86Subtarget.h" #include "X86Subtarget.h"
#include "X86TargetMachine.h" #include "X86TargetMachine.h"
#include "llvm/DerivedTypes.h"
#include "llvm/ADT/STLExtras.h" #include "llvm/ADT/STLExtras.h"
#include "llvm/CodeGen/MachineConstantPool.h" #include "llvm/CodeGen/MachineConstantPool.h"
#include "llvm/CodeGen/MachineFrameInfo.h" #include "llvm/CodeGen/MachineFrameInfo.h"
@ -1913,7 +1914,7 @@ bool X86InstrInfo::restoreCalleeSavedRegisters(MachineBasicBlock &MBB,
} }
static MachineInstr *FuseTwoAddrInst(MachineFunction &MF, unsigned Opcode, static MachineInstr *FuseTwoAddrInst(MachineFunction &MF, unsigned Opcode,
const SmallVector<MachineOperand,4> &MOs, const SmallVectorImpl<MachineOperand> &MOs,
MachineInstr *MI, const TargetInstrInfo &TII) { MachineInstr *MI, const TargetInstrInfo &TII) {
// Create the base instruction with the memory operand as the first part. // Create the base instruction with the memory operand as the first part.
MachineInstr *NewMI = MF.CreateMachineInstr(TII.get(Opcode), true); MachineInstr *NewMI = MF.CreateMachineInstr(TII.get(Opcode), true);
@ -1939,7 +1940,7 @@ static MachineInstr *FuseTwoAddrInst(MachineFunction &MF, unsigned Opcode,
static MachineInstr *FuseInst(MachineFunction &MF, static MachineInstr *FuseInst(MachineFunction &MF,
unsigned Opcode, unsigned OpNo, unsigned Opcode, unsigned OpNo,
const SmallVector<MachineOperand,4> &MOs, const SmallVectorImpl<MachineOperand> &MOs,
MachineInstr *MI, const TargetInstrInfo &TII) { MachineInstr *MI, const TargetInstrInfo &TII) {
MachineInstr *NewMI = MF.CreateMachineInstr(TII.get(Opcode), true); MachineInstr *NewMI = MF.CreateMachineInstr(TII.get(Opcode), true);
MachineInstrBuilder MIB(NewMI); MachineInstrBuilder MIB(NewMI);
@ -1961,7 +1962,7 @@ static MachineInstr *FuseInst(MachineFunction &MF,
} }
static MachineInstr *MakeM0Inst(const TargetInstrInfo &TII, unsigned Opcode, static MachineInstr *MakeM0Inst(const TargetInstrInfo &TII, unsigned Opcode,
const SmallVector<MachineOperand,4> &MOs, const SmallVectorImpl<MachineOperand> &MOs,
MachineInstr *MI) { MachineInstr *MI) {
MachineFunction &MF = *MI->getParent()->getParent(); MachineFunction &MF = *MI->getParent()->getParent();
MachineInstrBuilder MIB = BuildMI(MF, TII.get(Opcode)); MachineInstrBuilder MIB = BuildMI(MF, TII.get(Opcode));
@ -1977,7 +1978,7 @@ static MachineInstr *MakeM0Inst(const TargetInstrInfo &TII, unsigned Opcode,
MachineInstr* MachineInstr*
X86InstrInfo::foldMemoryOperandImpl(MachineFunction &MF, X86InstrInfo::foldMemoryOperandImpl(MachineFunction &MF,
MachineInstr *MI, unsigned i, MachineInstr *MI, unsigned i,
const SmallVector<MachineOperand,4> &MOs) const{ const SmallVectorImpl<MachineOperand> &MOs) const{
const DenseMap<unsigned*, unsigned> *OpcodeTablePtr = NULL; const DenseMap<unsigned*, unsigned> *OpcodeTablePtr = NULL;
bool isTwoAddrFold = false; bool isTwoAddrFold = false;
unsigned NumOps = MI->getDesc().getNumOperands(); unsigned NumOps = MI->getDesc().getNumOperands();

View File

@ -17,7 +17,7 @@
#include "llvm/Target/TargetInstrInfo.h" #include "llvm/Target/TargetInstrInfo.h"
#include "X86.h" #include "X86.h"
#include "X86RegisterInfo.h" #include "X86RegisterInfo.h"
#include "llvm/ADT/IndexedMap.h" #include "llvm/ADT/DenseMap.h"
#include "llvm/Target/TargetRegisterInfo.h" #include "llvm/Target/TargetRegisterInfo.h"
namespace llvm { namespace llvm {
@ -447,7 +447,7 @@ private:
MachineInstr* foldMemoryOperandImpl(MachineFunction &MF, MachineInstr* foldMemoryOperandImpl(MachineFunction &MF,
MachineInstr* MI, MachineInstr* MI,
unsigned OpNum, unsigned OpNum,
const SmallVector<MachineOperand,4> &MOs) const; const SmallVectorImpl<MachineOperand> &MOs) const;
}; };
} // End llvm namespace } // End llvm namespace

View File

@ -14,8 +14,6 @@
#ifndef X86REGISTERINFO_H #ifndef X86REGISTERINFO_H
#define X86REGISTERINFO_H #define X86REGISTERINFO_H
#include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/Target/TargetRegisterInfo.h" #include "llvm/Target/TargetRegisterInfo.h"
#include "X86GenRegisterInfo.h.inc" #include "X86GenRegisterInfo.h.inc"

View File

@ -15,7 +15,6 @@
#define X86SUBTARGET_H #define X86SUBTARGET_H
#include "llvm/Target/TargetSubtarget.h" #include "llvm/Target/TargetSubtarget.h"
#include <string> #include <string>
namespace llvm { namespace llvm {

View File

@ -20,7 +20,6 @@
#include "llvm/Function.h" #include "llvm/Function.h"
#include "llvm/Instructions.h" #include "llvm/Instructions.h"
#include "llvm/Type.h" #include "llvm/Type.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringExtras.h" #include "llvm/ADT/StringExtras.h"
using namespace llvm; using namespace llvm;

View File

@ -18,7 +18,6 @@
#include "llvm/Support/LeakDetector.h" #include "llvm/Support/LeakDetector.h"
#include "llvm/Support/StringPool.h" #include "llvm/Support/StringPool.h"
#include "SymbolTableListTraitsImpl.h" #include "SymbolTableListTraitsImpl.h"
#include "llvm/ADT/BitVector.h"
#include "llvm/ADT/DenseMap.h" #include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/StringExtras.h" #include "llvm/ADT/StringExtras.h"
using namespace llvm; using namespace llvm;