mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 12:50:30 +00:00
Rename ExpandPseudos to ExpandISelPseudos to help clarify its role.
llvm-svn: 119716
This commit is contained in:
parent
c2db966e5e
commit
3998a0430f
@ -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
|
||||
|
||||
|
@ -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&);
|
||||
|
@ -11,7 +11,7 @@ add_llvm_library(LLVMCodeGen
|
||||
DwarfEHPrepare.cpp
|
||||
ELFCodeEmitter.cpp
|
||||
ELFWriter.cpp
|
||||
ExpandPseudos.cpp
|
||||
ExpandISelPseudos.cpp
|
||||
GCMetadata.cpp
|
||||
GCMetadataPrinter.cpp
|
||||
GCStrategy.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();
|
||||
|
Loading…
Reference in New Issue
Block a user