2002-10-26 06:55:53 +08:00
|
|
|
//===-- X86.h - Top-level interface for X86 representation ------*- C++ -*-===//
|
2005-04-22 07:38:14 +08:00
|
|
|
//
|
2003-10-21 23:17:13 +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.
|
2005-04-22 07:38:14 +08:00
|
|
|
//
|
2003-10-21 23:17:13 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-10-26 06:55:53 +08:00
|
|
|
//
|
|
|
|
// This file contains the entry points for global functions defined in the x86
|
|
|
|
// target library, as used by the LLVM JIT.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef TARGET_X86_H
|
|
|
|
#define TARGET_X86_H
|
|
|
|
|
2009-04-30 07:29:43 +08:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
|
2003-11-12 06:41:34 +08:00
|
|
|
namespace llvm {
|
|
|
|
|
2006-03-14 07:20:37 +08:00
|
|
|
class X86TargetMachine;
|
2003-08-14 02:15:29 +08:00
|
|
|
class FunctionPass;
|
2005-07-11 13:17:48 +08:00
|
|
|
class MachineCodeEmitter;
|
2009-05-31 04:51:52 +08:00
|
|
|
class JITCodeEmitter;
|
2008-08-21 08:14:44 +08:00
|
|
|
class raw_ostream;
|
2002-10-26 06:55:53 +08:00
|
|
|
|
2005-11-15 08:40:23 +08:00
|
|
|
/// createX86ISelDag - This pass converts a legalized DAG into a
|
|
|
|
/// X86-specific DAG, ready for instruction scheduling.
|
|
|
|
///
|
2009-06-02 03:57:37 +08:00
|
|
|
FunctionPass *createX86ISelDag(X86TargetMachine &TM,
|
|
|
|
CodeGenOpt::Level OptLevel);
|
2005-01-07 15:48:33 +08:00
|
|
|
|
2003-01-13 08:45:29 +08:00
|
|
|
/// createX86FloatingPointStackifierPass - This function returns a pass which
|
|
|
|
/// converts floating point register references and pseudo instructions into
|
|
|
|
/// floating point stack references and physical instructions.
|
2002-12-29 04:26:16 +08:00
|
|
|
///
|
2003-08-14 02:15:29 +08:00
|
|
|
FunctionPass *createX86FloatingPointStackifierPass();
|
2002-10-30 06:37:54 +08:00
|
|
|
|
2008-11-13 06:55:05 +08:00
|
|
|
/// createX87FPRegKillInserterPass - This function returns a pass which
|
|
|
|
/// inserts FP_REG_KILL instructions where needed.
|
|
|
|
///
|
|
|
|
FunctionPass *createX87FPRegKillInserterPass();
|
|
|
|
|
2003-07-24 04:25:08 +08:00
|
|
|
/// createX86CodePrinterPass - Returns a pass that prints the X86
|
|
|
|
/// assembly code for a MachineFunction to the given output stream,
|
2005-07-11 13:17:48 +08:00
|
|
|
/// using the given target machine description.
|
2002-10-30 06:37:54 +08:00
|
|
|
///
|
2009-07-01 09:48:54 +08:00
|
|
|
FunctionPass *createX86CodePrinterPass(raw_ostream &o, X86TargetMachine &tm,
|
2009-04-30 07:29:43 +08:00
|
|
|
bool Verbose);
|
2002-10-26 06:55:53 +08:00
|
|
|
|
2005-07-11 13:17:48 +08:00
|
|
|
/// createX86CodeEmitterPass - Return a pass that emits the collected X86 code
|
|
|
|
/// to the specified MCE object.
|
2009-05-31 04:51:52 +08:00
|
|
|
|
2009-06-02 03:57:37 +08:00
|
|
|
FunctionPass *createX86CodeEmitterPass(X86TargetMachine &TM,
|
|
|
|
MachineCodeEmitter &MCE);
|
|
|
|
FunctionPass *createX86JITCodeEmitterPass(X86TargetMachine &TM,
|
|
|
|
JITCodeEmitter &JCE);
|
2009-07-06 13:09:34 +08:00
|
|
|
FunctionPass *createX86ObjectCodeEmitterPass(X86TargetMachine &TM,
|
|
|
|
ObjectCodeEmitter &OCE);
|
2005-07-11 13:17:48 +08:00
|
|
|
|
2003-08-14 02:15:29 +08:00
|
|
|
/// createX86EmitCodeToMemory - Returns a pass that converts a register
|
|
|
|
/// allocated function into raw machine code in a dynamically
|
|
|
|
/// allocated chunk of memory.
|
2002-10-26 06:55:53 +08:00
|
|
|
///
|
2003-08-14 02:15:29 +08:00
|
|
|
FunctionPass *createEmitX86CodeToMemory();
|
2002-10-26 06:55:53 +08:00
|
|
|
|
2009-06-02 03:57:37 +08:00
|
|
|
/// createX86MaxStackAlignmentCalculatorPass - This function returns a pass
|
|
|
|
/// which calculates maximal stack alignment required for function
|
2008-04-24 02:23:05 +08:00
|
|
|
///
|
|
|
|
FunctionPass *createX86MaxStackAlignmentCalculatorPass();
|
|
|
|
|
2005-01-07 15:48:33 +08:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2003-08-03 23:48:55 +08:00
|
|
|
// Defines symbolic names for X86 registers. This defines a mapping from
|
|
|
|
// register name to register number.
|
|
|
|
//
|
|
|
|
#include "X86GenRegisterNames.inc"
|
|
|
|
|
2003-08-04 05:57:05 +08:00
|
|
|
// Defines symbolic names for the X86 instructions.
|
|
|
|
//
|
|
|
|
#include "X86GenInstrNames.inc"
|
2002-10-26 06:55:53 +08:00
|
|
|
|
|
|
|
#endif
|