LLVM API Documentation
00001 //===-- Mips.h - Top-level interface for Mips representation ----*- C++ -*-===// 00002 // 00003 // The LLVM Compiler Infrastructure 00004 // 00005 // This file is distributed under the University of Illinois Open Source 00006 // License. See LICENSE.TXT for details. 00007 // 00008 //===----------------------------------------------------------------------===// 00009 // 00010 // This file contains the entry points for global functions defined in 00011 // the LLVM Mips back-end. 00012 // 00013 //===----------------------------------------------------------------------===// 00014 00015 #ifndef LLVM_LIB_TARGET_MIPS_MIPS_H 00016 #define LLVM_LIB_TARGET_MIPS_MIPS_H 00017 00018 #include "MCTargetDesc/MipsMCTargetDesc.h" 00019 #include "llvm/Target/TargetMachine.h" 00020 00021 namespace llvm { 00022 class MipsTargetMachine; 00023 class FunctionPass; 00024 00025 FunctionPass *createMipsISelDag(MipsTargetMachine &TM); 00026 FunctionPass *createMipsOptimizePICCallPass(MipsTargetMachine &TM); 00027 FunctionPass *createMipsDelaySlotFillerPass(MipsTargetMachine &TM); 00028 FunctionPass *createMipsLongBranchPass(MipsTargetMachine &TM); 00029 FunctionPass *createMipsConstantIslandPass(MipsTargetMachine &tm); 00030 } // end namespace llvm; 00031 00032 #endif