2011-04-16 05:51:11 +08:00
|
|
|
//===-- Mips.h - Top-level interface for Mips representation ----*- C++ -*-===//
|
2007-06-06 15:42:06 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-06-06 15:42:06 +08:00
|
|
|
//
|
2011-04-16 05:51:11 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2007-06-06 15:42:06 +08:00
|
|
|
//
|
2011-03-05 01:51:39 +08:00
|
|
|
// This file contains the entry points for global functions defined in
|
2007-06-06 15:42:06 +08:00
|
|
|
// the LLVM Mips back-end.
|
|
|
|
//
|
2011-04-16 05:51:11 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2007-06-06 15:42:06 +08:00
|
|
|
|
2014-08-14 00:26:38 +08:00
|
|
|
#ifndef LLVM_LIB_TARGET_MIPS_MIPS_H
|
|
|
|
#define LLVM_LIB_TARGET_MIPS_MIPS_H
|
2007-06-06 15:42:06 +08:00
|
|
|
|
2011-07-15 04:59:42 +08:00
|
|
|
#include "MCTargetDesc/MipsMCTargetDesc.h"
|
2009-04-30 07:29:43 +08:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
|
2007-06-06 15:42:06 +08:00
|
|
|
namespace llvm {
|
|
|
|
class MipsTargetMachine;
|
2015-03-14 16:34:25 +08:00
|
|
|
class ModulePass;
|
2007-06-06 15:42:06 +08:00
|
|
|
class FunctionPass;
|
|
|
|
|
2015-03-14 16:34:25 +08:00
|
|
|
ModulePass *createMipsOs16Pass(MipsTargetMachine &TM);
|
2015-03-14 17:02:23 +08:00
|
|
|
ModulePass *createMips16HardFloatPass(MipsTargetMachine &TM);
|
2015-03-14 16:34:25 +08:00
|
|
|
|
2015-03-14 17:20:52 +08:00
|
|
|
FunctionPass *createMipsModuleISelDagPass(MipsTargetMachine &TM);
|
2013-11-28 07:38:42 +08:00
|
|
|
FunctionPass *createMipsOptimizePICCallPass(MipsTargetMachine &TM);
|
2007-08-18 10:05:24 +08:00
|
|
|
FunctionPass *createMipsDelaySlotFillerPass(MipsTargetMachine &TM);
|
2012-06-14 09:19:35 +08:00
|
|
|
FunctionPass *createMipsLongBranchPass(MipsTargetMachine &TM);
|
2013-02-27 11:33:58 +08:00
|
|
|
FunctionPass *createMipsConstantIslandPass(MipsTargetMachine &tm);
|
2015-06-23 17:49:53 +08:00
|
|
|
} // end namespace llvm;
|
2007-06-06 15:42:06 +08:00
|
|
|
|
|
|
|
#endif
|