Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | //===-- X86.h - Top-level interface for X86 representation ------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 081ce94 | 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. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file contains the entry points for global functions defined in the x86 |
| 11 | // target library, as used by the LLVM JIT. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #ifndef TARGET_X86_H |
| 16 | #define TARGET_X86_H |
| 17 | |
Bill Wendling | 5ed22ac | 2009-04-29 23:29:43 +0000 | [diff] [blame^] | 18 | #include "llvm/Target/TargetMachine.h" |
| 19 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 20 | namespace llvm { |
| 21 | |
| 22 | class X86TargetMachine; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 23 | class FunctionPass; |
| 24 | class MachineCodeEmitter; |
Owen Anderson | 847b99b | 2008-08-21 00:14:44 +0000 | [diff] [blame] | 25 | class raw_ostream; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 26 | |
| 27 | /// createX86ISelDag - This pass converts a legalized DAG into a |
| 28 | /// X86-specific DAG, ready for instruction scheduling. |
| 29 | /// |
Bill Wendling | 5ed22ac | 2009-04-29 23:29:43 +0000 | [diff] [blame^] | 30 | FunctionPass *createX86ISelDag(X86TargetMachine &TM, CodeGenOpt::Level OptLevel); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 31 | |
| 32 | /// createX86FloatingPointStackifierPass - This function returns a pass which |
| 33 | /// converts floating point register references and pseudo instructions into |
| 34 | /// floating point stack references and physical instructions. |
| 35 | /// |
| 36 | FunctionPass *createX86FloatingPointStackifierPass(); |
| 37 | |
Dan Gohman | fd6722c | 2008-11-12 22:55:05 +0000 | [diff] [blame] | 38 | /// createX87FPRegKillInserterPass - This function returns a pass which |
| 39 | /// inserts FP_REG_KILL instructions where needed. |
| 40 | /// |
| 41 | FunctionPass *createX87FPRegKillInserterPass(); |
| 42 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 43 | /// createX86CodePrinterPass - Returns a pass that prints the X86 |
| 44 | /// assembly code for a MachineFunction to the given output stream, |
| 45 | /// using the given target machine description. |
| 46 | /// |
Bill Wendling | 4f40531 | 2009-02-24 08:30:20 +0000 | [diff] [blame] | 47 | FunctionPass *createX86CodePrinterPass(raw_ostream &o, |
| 48 | X86TargetMachine &tm, |
Bill Wendling | 5ed22ac | 2009-04-29 23:29:43 +0000 | [diff] [blame^] | 49 | CodeGenOpt::Level OptLevel, |
| 50 | bool Verbose); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 51 | |
| 52 | /// createX86CodeEmitterPass - Return a pass that emits the collected X86 code |
| 53 | /// to the specified MCE object. |
| 54 | FunctionPass *createX86CodeEmitterPass(X86TargetMachine &TM, |
| 55 | MachineCodeEmitter &MCE); |
| 56 | |
| 57 | /// createX86EmitCodeToMemory - Returns a pass that converts a register |
| 58 | /// allocated function into raw machine code in a dynamically |
| 59 | /// allocated chunk of memory. |
| 60 | /// |
| 61 | FunctionPass *createEmitX86CodeToMemory(); |
| 62 | |
Anton Korobeynikov | 194ae6c | 2008-04-23 18:23:05 +0000 | [diff] [blame] | 63 | /// createX86MaxStackAlignmentCalculatorPass - This function returns a pass which |
| 64 | /// calculates maximal stack alignment required for function |
| 65 | /// |
| 66 | FunctionPass *createX86MaxStackAlignmentCalculatorPass(); |
| 67 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 68 | } // End llvm namespace |
| 69 | |
| 70 | // Defines symbolic names for X86 registers. This defines a mapping from |
| 71 | // register name to register number. |
| 72 | // |
| 73 | #include "X86GenRegisterNames.inc" |
| 74 | |
| 75 | // Defines symbolic names for the X86 instructions. |
| 76 | // |
| 77 | #include "X86GenInstrNames.inc" |
| 78 | |
| 79 | #endif |