diff options
Diffstat (limited to 'contrib/llvm-project/llvm/lib/Target/Mips/Mips.h')
| -rw-r--r-- | contrib/llvm-project/llvm/lib/Target/Mips/Mips.h | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/contrib/llvm-project/llvm/lib/Target/Mips/Mips.h b/contrib/llvm-project/llvm/lib/Target/Mips/Mips.h new file mode 100644 index 000000000000..b3faaab436f0 --- /dev/null +++ b/contrib/llvm-project/llvm/lib/Target/Mips/Mips.h @@ -0,0 +1,52 @@ +//===-- 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 |
