53 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C++
		
	
	
	
| //===-- Mips.h - Top-level interface for Mips representation ----*- C++ -*-===//
 | |
| //
 | |
| // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 | |
| // See https://llvm.org/LICENSE.txt for license information.
 | |
| // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 | |
| //
 | |
| //===----------------------------------------------------------------------===//
 | |
| //
 | |
| // This file contains the entry points for global functions defined in
 | |
| // the LLVM Mips back-end.
 | |
| //
 | |
| //===----------------------------------------------------------------------===//
 | |
| 
 | |
| #ifndef LLVM_LIB_TARGET_MIPS_MIPS_H
 | |
| #define LLVM_LIB_TARGET_MIPS_MIPS_H
 | |
| 
 | |
| #include "MCTargetDesc/MipsMCTargetDesc.h"
 | |
| #include "llvm/Target/TargetMachine.h"
 | |
| 
 | |
| namespace llvm {
 | |
|   class MipsTargetMachine;
 | |
|   class ModulePass;
 | |
|   class FunctionPass;
 | |
|   class MipsRegisterBankInfo;
 | |
|   class MipsSubtarget;
 | |
|   class MipsTargetMachine;
 | |
|   class InstructionSelector;
 | |
|   class PassRegistry;
 | |
| 
 | |
|   ModulePass *createMipsOs16Pass();
 | |
|   ModulePass *createMips16HardFloatPass();
 | |
| 
 | |
|   FunctionPass *createMipsModuleISelDagPass();
 | |
|   FunctionPass *createMipsOptimizePICCallPass();
 | |
|   FunctionPass *createMipsDelaySlotFillerPass();
 | |
|   FunctionPass *createMipsBranchExpansion();
 | |
|   FunctionPass *createMipsConstantIslandPass();
 | |
|   FunctionPass *createMicroMipsSizeReducePass();
 | |
|   FunctionPass *createMipsExpandPseudoPass();
 | |
|   FunctionPass *createMipsPreLegalizeCombiner();
 | |
| 
 | |
|   InstructionSelector *createMipsInstructionSelector(const MipsTargetMachine &,
 | |
|                                                      MipsSubtarget &,
 | |
|                                                      MipsRegisterBankInfo &);
 | |
| 
 | |
|   void initializeMipsDelaySlotFillerPass(PassRegistry &);
 | |
|   void initializeMipsBranchExpansionPass(PassRegistry &);
 | |
|   void initializeMicroMipsSizeReducePass(PassRegistry &);
 | |
|   void initializeMipsPreLegalizerCombinerPass(PassRegistry&);
 | |
| } // end namespace llvm;
 | |
| 
 | |
| #endif
 |