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
|
|
|
|
|
|
|
#ifndef TARGET_MIPS_H
|
|
|
|
#define TARGET_MIPS_H
|
|
|
|
|
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;
|
|
|
|
class FunctionPass;
|
|
|
|
|
2007-08-18 02:05:24 +00:00
|
|
|
FunctionPass *createMipsISelDag(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);
|
2011-07-21 16:28:51 +00:00
|
|
|
FunctionPass *createMipsJITCodeEmitterPass(MipsTargetMachine &TM,
|
|
|
|
JITCodeEmitter &JCE);
|
2013-02-27 03:33:58 +00:00
|
|
|
FunctionPass *createMipsConstantIslandPass(MipsTargetMachine &tm);
|
2007-06-06 07:42:06 +00:00
|
|
|
} // end namespace llvm;
|
|
|
|
|
|
|
|
#endif
|