mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-04 05:17:07 +00:00 
			
		
		
		
	Moving toward a uniform style of pass definition to allow easier target configuration. Globally declare Pass ID. Globally declare pass initializer. Use INITIALIZE_PASS consistently. Add a call to the initializer from CodeGen.cpp. Remove redundant "createPass" functions and "getPassName" methods. While cleaning up declarations, cleaned up comments (sorry for large diff). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150100 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			75 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			75 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
//===-- llvm/CodeGen/ExpandISelPseudos.cpp ----------------------*- C++ -*-===//
 | 
						|
//
 | 
						|
//                     The LLVM Compiler Infrastructure
 | 
						|
//
 | 
						|
// This file is distributed under the University of Illinois Open Source
 | 
						|
// License. See LICENSE.TXT for details.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
//
 | 
						|
// Expand Pseudo-instructions produced by ISel. These are usually to allow
 | 
						|
// the expansion to contain control flow, such as a conditional move
 | 
						|
// implemented with a conditional branch and a phi, or an atomic operation
 | 
						|
// implemented with a loop.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
 | 
						|
#define DEBUG_TYPE "expand-isel-pseudos"
 | 
						|
#include "llvm/CodeGen/MachineFunction.h"
 | 
						|
#include "llvm/CodeGen/MachineFunctionPass.h"
 | 
						|
#include "llvm/CodeGen/Passes.h"
 | 
						|
#include "llvm/Target/TargetLowering.h"
 | 
						|
#include "llvm/Target/TargetMachine.h"
 | 
						|
#include "llvm/Support/Debug.h"
 | 
						|
using namespace llvm;
 | 
						|
 | 
						|
namespace {
 | 
						|
  class ExpandISelPseudos : public MachineFunctionPass {
 | 
						|
  public:
 | 
						|
    static char ID; // Pass identification, replacement for typeid
 | 
						|
    ExpandISelPseudos() : MachineFunctionPass(ID) {}
 | 
						|
 | 
						|
  private:
 | 
						|
    virtual bool runOnMachineFunction(MachineFunction &MF);
 | 
						|
 | 
						|
    virtual void getAnalysisUsage(AnalysisUsage &AU) const {
 | 
						|
      MachineFunctionPass::getAnalysisUsage(AU);
 | 
						|
    }
 | 
						|
  };
 | 
						|
} // end anonymous namespace
 | 
						|
 | 
						|
char ExpandISelPseudos::ID = 0;
 | 
						|
char &llvm::ExpandISelPseudosID = ExpandISelPseudos::ID;
 | 
						|
INITIALIZE_PASS(ExpandISelPseudos, "expand-isel-pseudos",
 | 
						|
                "Expand ISel Pseudo-instructions", false, false)
 | 
						|
 | 
						|
bool ExpandISelPseudos::runOnMachineFunction(MachineFunction &MF) {
 | 
						|
  bool Changed = false;
 | 
						|
  const TargetLowering *TLI = MF.getTarget().getTargetLowering();
 | 
						|
 | 
						|
  // Iterate through each instruction in the function, looking for pseudos.
 | 
						|
  for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; ++I) {
 | 
						|
    MachineBasicBlock *MBB = I;
 | 
						|
    for (MachineBasicBlock::iterator MBBI = MBB->begin(), MBBE = MBB->end();
 | 
						|
         MBBI != MBBE; ) {
 | 
						|
      MachineInstr *MI = MBBI++;
 | 
						|
 | 
						|
      // If MI is a pseudo, expand it.
 | 
						|
      if (MI->usesCustomInsertionHook()) {
 | 
						|
        Changed = true;
 | 
						|
        MachineBasicBlock *NewMBB =
 | 
						|
          TLI->EmitInstrWithCustomInserter(MI, MBB);
 | 
						|
        // The expansion may involve new basic blocks.
 | 
						|
        if (NewMBB != MBB) {
 | 
						|
          MBB = NewMBB;
 | 
						|
          I = NewMBB;
 | 
						|
          MBBI = NewMBB->begin();
 | 
						|
          MBBE = NewMBB->end();
 | 
						|
        }
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  return Changed;
 | 
						|
}
 |