//===-- MipsSEISelDAGToDAG.h - A Dag to Dag Inst Selector for MipsSE -----===// // // 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 // //===----------------------------------------------------------------------===// // // Subclass of MipsDAGToDAGISel specialized for mips32/64. // //===----------------------------------------------------------------------===// #ifndef LLVM_LIB_TARGET_MIPS_MIPSSEISELDAGTODAG_H #define LLVM_LIB_TARGET_MIPS_MIPSSEISELDAGTODAG_H #include "MipsISelDAGToDAG.h" namespace llvm { class MipsSEDAGToDAGISel : public MipsDAGToDAGISel { … }; class MipsSEDAGToDAGISelLegacy : public MipsDAGToDAGISelLegacy { … }; FunctionPass *createMipsSEISelDag(MipsTargetMachine &TM, CodeGenOptLevel OptLevel); } #endif