Akira Hatanaka | e248912 | 2011-04-15 21:51:11 +0000 | [diff] [blame] | 1 | //===-- Mips.h - Top-level interface for Mips representation ----*- C++ -*-===// |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 7 | // |
Akira Hatanaka | e248912 | 2011-04-15 21:51:11 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 9 | // |
Bruno Cardoso Lopes | ed874ef | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 10 | // This file contains the entry points for global functions defined in |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 11 | // the LLVM Mips back-end. |
| 12 | // |
Akira Hatanaka | e248912 | 2011-04-15 21:51:11 +0000 | [diff] [blame] | 13 | //===----------------------------------------------------------------------===// |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 14 | |
Benjamin Kramer | a7c40ef | 2014-08-13 16:26:38 +0000 | [diff] [blame] | 15 | #ifndef LLVM_LIB_TARGET_MIPS_MIPS_H |
| 16 | #define LLVM_LIB_TARGET_MIPS_MIPS_H |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 17 | |
Evan Cheng | bc153d4 | 2011-07-14 20:59:42 +0000 | [diff] [blame] | 18 | #include "MCTargetDesc/MipsMCTargetDesc.h" |
Bill Wendling | 026e5d7 | 2009-04-29 23:29:43 +0000 | [diff] [blame] | 19 | #include "llvm/Target/TargetMachine.h" |
| 20 | |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 21 | namespace llvm { |
| 22 | class MipsTargetMachine; |
Vasileios Kalintiris | 6312f51 | 2015-03-14 08:34:25 +0000 | [diff] [blame] | 23 | class ModulePass; |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 24 | class FunctionPass; |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 25 | |
Vasileios Kalintiris | 6312f51 | 2015-03-14 08:34:25 +0000 | [diff] [blame] | 26 | ModulePass *createMipsOs16Pass(MipsTargetMachine &TM); |
Vasileios Kalintiris | 6611eb3 | 2015-03-14 09:02:23 +0000 | [diff] [blame] | 27 | ModulePass *createMips16HardFloatPass(MipsTargetMachine &TM); |
Vasileios Kalintiris | 6312f51 | 2015-03-14 08:34:25 +0000 | [diff] [blame] | 28 | |
Vasileios Kalintiris | 46fa9b7 | 2015-03-14 09:20:52 +0000 | [diff] [blame] | 29 | FunctionPass *createMipsModuleISelDagPass(MipsTargetMachine &TM); |
Akira Hatanaka | 168d4e5 | 2013-11-27 23:38:42 +0000 | [diff] [blame] | 30 | FunctionPass *createMipsOptimizePICCallPass(MipsTargetMachine &TM); |
Bruno Cardoso Lopes | 833a1f9 | 2007-08-18 02:05:24 +0000 | [diff] [blame] | 31 | FunctionPass *createMipsDelaySlotFillerPass(MipsTargetMachine &TM); |
Chad Rosier | 7a21bb1 | 2016-03-14 18:10:20 +0000 | [diff] [blame] | 32 | FunctionPass *createMipsHazardSchedule(); |
Akira Hatanaka | eb36522 | 2012-06-14 01:19:35 +0000 | [diff] [blame] | 33 | FunctionPass *createMipsLongBranchPass(MipsTargetMachine &TM); |
Rafael Espindola | 6f7c280 | 2016-06-28 14:26:39 +0000 | [diff] [blame] | 34 | FunctionPass *createMipsConstantIslandPass(); |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 35 | } // end namespace llvm; |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 36 | |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 37 | #endif |