2011-04-15 23:51:11 +02:00
|
|
|
//===-- Mips.h - Top-level interface for Mips representation ----*- C++ -*-===//
|
2007-06-06 09:42:06 +02:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-06-06 09:42:06 +02:00
|
|
|
//
|
2011-04-15 23:51:11 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2007-06-06 09:42:06 +02:00
|
|
|
//
|
2011-03-04 18:51:39 +01:00
|
|
|
// This file contains the entry points for global functions defined in
|
2007-06-06 09:42:06 +02:00
|
|
|
// the LLVM Mips back-end.
|
|
|
|
//
|
2011-04-15 23:51:11 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2007-06-06 09:42:06 +02:00
|
|
|
|
|
|
|
#ifndef TARGET_MIPS_H
|
|
|
|
#define TARGET_MIPS_H
|
|
|
|
|
2011-07-14 22:59:42 +02:00
|
|
|
#include "MCTargetDesc/MipsMCTargetDesc.h"
|
2009-04-30 01:29:43 +02:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
|
2007-06-06 09:42:06 +02:00
|
|
|
namespace llvm {
|
|
|
|
class MipsTargetMachine;
|
|
|
|
class FunctionPass;
|
|
|
|
class MachineCodeEmitter;
|
2009-07-14 22:18:05 +02:00
|
|
|
class formatted_raw_ostream;
|
2007-06-06 09:42:06 +02:00
|
|
|
|
2007-08-18 04:05:24 +02:00
|
|
|
FunctionPass *createMipsISelDag(MipsTargetMachine &TM);
|
|
|
|
FunctionPass *createMipsDelaySlotFillerPass(MipsTargetMachine &TM);
|
2011-04-15 21:52:08 +02:00
|
|
|
FunctionPass *createMipsExpandPseudoPass(MipsTargetMachine &TM);
|
2011-05-04 19:54:27 +02:00
|
|
|
FunctionPass *createMipsEmitGPRestorePass(MipsTargetMachine &TM);
|
2009-07-19 01:03:22 +02:00
|
|
|
|
2011-07-21 18:28:51 +02:00
|
|
|
FunctionPass *createMipsJITCodeEmitterPass(MipsTargetMachine &TM,
|
|
|
|
JITCodeEmitter &JCE);
|
|
|
|
|
2007-06-06 09:42:06 +02:00
|
|
|
} // end namespace llvm;
|
|
|
|
|
|
|
|
#endif
|