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