From 8ec9d62380f7139c7c85bae9609e8e93d2799500 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Thu, 18 Nov 2010 18:45:06 +0000 Subject: [PATCH] Rename ExpandPseudos to ExpandISelPseudos to help clarify its role. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119716 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/Passes.h | 4 ++-- include/llvm/InitializePasses.h | 2 +- lib/CodeGen/CMakeLists.txt | 2 +- ...xpandPseudos.cpp => ExpandISelPseudos.cpp} | 20 +++++++++---------- 4 files changed, 14 insertions(+), 14 deletions(-) rename lib/CodeGen/{ExpandPseudos.cpp => ExpandISelPseudos.cpp} (81%) diff --git a/include/llvm/CodeGen/Passes.h b/include/llvm/CodeGen/Passes.h index 7345f15dd1c..30dbc404759 100644 --- a/include/llvm/CodeGen/Passes.h +++ b/include/llvm/CodeGen/Passes.h @@ -213,9 +213,9 @@ namespace llvm { /// addressing. FunctionPass *createLocalStackSlotAllocationPass(); - /// createExpandPseudosPass - This pass expands pseudo-instructions. + /// createExpandISelPseudosPass - This pass expands pseudo-instructions. /// - FunctionPass *createExpandPseudosPass(); + FunctionPass *createExpandISelPseudosPass(); } // End llvm namespace diff --git a/include/llvm/InitializePasses.h b/include/llvm/InitializePasses.h index 23f918797db..1cf22306d55 100644 --- a/include/llvm/InitializePasses.h +++ b/include/llvm/InitializePasses.h @@ -92,7 +92,7 @@ void initializeDomViewerPass(PassRegistry&); void initializeDominanceFrontierPass(PassRegistry&); void initializeDominatorTreePass(PassRegistry&); void initializeEdgeProfilerPass(PassRegistry&); -void initializeExpandPseudosPass(PassRegistry&); +void initializeExpandISelPseudosPass(PassRegistry&); void initializeFindUsedTypesPass(PassRegistry&); void initializeFunctionAttrsPass(PassRegistry&); void initializeGCModuleInfoPass(PassRegistry&); diff --git a/lib/CodeGen/CMakeLists.txt b/lib/CodeGen/CMakeLists.txt index cfc2c9e4830..7a36c5137ae 100644 --- a/lib/CodeGen/CMakeLists.txt +++ b/lib/CodeGen/CMakeLists.txt @@ -11,7 +11,7 @@ add_llvm_library(LLVMCodeGen DwarfEHPrepare.cpp ELFCodeEmitter.cpp ELFWriter.cpp - ExpandPseudos.cpp + ExpandISelPseudos.cpp GCMetadata.cpp GCMetadataPrinter.cpp GCStrategy.cpp diff --git a/lib/CodeGen/ExpandPseudos.cpp b/lib/CodeGen/ExpandISelPseudos.cpp similarity index 81% rename from lib/CodeGen/ExpandPseudos.cpp rename to lib/CodeGen/ExpandISelPseudos.cpp index df8d02a8005..b5ec303f5d9 100644 --- a/lib/CodeGen/ExpandPseudos.cpp +++ b/lib/CodeGen/ExpandISelPseudos.cpp @@ -1,4 +1,4 @@ -//===-- llvm/CodeGen/ExpandPseudos.cpp --------------------------*- C++ -*-===// +//===-- llvm/CodeGen/ExpandISelPseudos.cpp ----------------------*- C++ -*-===// // // The LLVM Compiler Infrastructure // @@ -14,7 +14,7 @@ // //===----------------------------------------------------------------------===// -#define DEBUG_TYPE "expand-pseudos" +#define DEBUG_TYPE "expand-isel-pseudos" #include "llvm/CodeGen/MachineFunction.h" #include "llvm/CodeGen/MachineFunctionPass.h" #include "llvm/CodeGen/Passes.h" @@ -24,16 +24,16 @@ using namespace llvm; namespace { - class ExpandPseudos : public MachineFunctionPass { + class ExpandISelPseudos : public MachineFunctionPass { public: static char ID; // Pass identification, replacement for typeid - ExpandPseudos() : MachineFunctionPass(ID) {} + ExpandISelPseudos() : MachineFunctionPass(ID) {} private: virtual bool runOnMachineFunction(MachineFunction &MF); const char *getPassName() const { - return "Expand CodeGen Pseudo-instructions"; + return "Expand ISel Pseudo-instructions"; } virtual void getAnalysisUsage(AnalysisUsage &AU) const { @@ -42,15 +42,15 @@ namespace { }; } // end anonymous namespace -char ExpandPseudos::ID = 0; -INITIALIZE_PASS(ExpandPseudos, "expand-pseudos", +char ExpandISelPseudos::ID = 0; +INITIALIZE_PASS(ExpandISelPseudos, "expand-isel-pseudos", "Expand CodeGen Pseudo-instructions", false, false) -FunctionPass *llvm::createExpandPseudosPass() { - return new ExpandPseudos(); +FunctionPass *llvm::createExpandISelPseudosPass() { + return new ExpandISelPseudos(); } -bool ExpandPseudos::runOnMachineFunction(MachineFunction &MF) { +bool ExpandISelPseudos::runOnMachineFunction(MachineFunction &MF) { bool Changed = false; const TargetLowering *TLI = MF.getTarget().getTargetLowering(); -- 2.34.1