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