2002-10-26 00:55:53 +02:00
|
|
|
//===-- X86.h - Top-level interface for X86 representation ------*- C++ -*-===//
|
2005-04-22 01:38:14 +02:00
|
|
|
//
|
2003-10-21 17:17:13 +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.
|
2005-04-22 01:38:14 +02:00
|
|
|
//
|
2003-10-21 17:17:13 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-10-26 00:55:53 +02: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
|
|
|
|
|
2011-07-25 20:43:53 +02:00
|
|
|
#include "MCTargetDesc/X86BaseInfo.h"
|
2011-07-07 00:01:53 +02:00
|
|
|
#include "MCTargetDesc/X86MCTargetDesc.h"
|
2010-12-20 16:45:51 +01:00
|
|
|
#include "llvm/Support/DataTypes.h"
|
2009-04-30 01:29:43 +02:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
namespace llvm {
|
|
|
|
|
2003-08-13 20:15:29 +02:00
|
|
|
class FunctionPass;
|
2010-02-21 22:54:14 +01:00
|
|
|
class JITCodeEmitter;
|
2011-07-11 05:57:24 +02:00
|
|
|
class MachineCodeEmitter;
|
2009-08-27 10:12:55 +02:00
|
|
|
class Target;
|
2010-02-21 22:54:14 +01:00
|
|
|
class X86TargetMachine;
|
2002-10-26 00:55:53 +02:00
|
|
|
|
2005-11-15 01:40:23 +01:00
|
|
|
/// createX86ISelDag - This pass converts a legalized DAG into a
|
|
|
|
/// X86-specific DAG, ready for instruction scheduling.
|
|
|
|
///
|
2009-06-01 21:57:37 +02:00
|
|
|
FunctionPass *createX86ISelDag(X86TargetMachine &TM,
|
|
|
|
CodeGenOpt::Level OptLevel);
|
2005-01-07 08:48:33 +01:00
|
|
|
|
2010-07-10 11:00:22 +02:00
|
|
|
/// createGlobalBaseRegPass - This pass initializes a global base
|
|
|
|
/// register for PIC on x86-32.
|
|
|
|
FunctionPass* createGlobalBaseRegPass();
|
|
|
|
|
2003-01-13 01:45:29 +01: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-28 21:26:16 +01:00
|
|
|
///
|
2003-08-13 20:15:29 +02:00
|
|
|
FunctionPass *createX86FloatingPointStackifierPass();
|
2002-10-29 23:37:54 +01:00
|
|
|
|
2010-03-25 18:25:00 +01:00
|
|
|
/// createSSEDomainFixPass - This pass twiddles SSE opcodes to prevent domain
|
|
|
|
/// crossings.
|
|
|
|
FunctionPass *createSSEDomainFixPass();
|
|
|
|
|
2011-08-23 03:14:17 +02:00
|
|
|
/// createX86IssueVZeroUpperPass - This pass inserts AVX vzeroupper instructions
|
|
|
|
/// before each call to avoid transition penalty between functions encoded with
|
|
|
|
/// AVX and SSE.
|
|
|
|
FunctionPass *createX86IssueVZeroUpperPass();
|
|
|
|
|
2005-07-11 07:17:48 +02:00
|
|
|
/// createX86CodeEmitterPass - Return a pass that emits the collected X86 code
|
|
|
|
/// to the specified MCE object.
|
2009-06-01 21:57:37 +02:00
|
|
|
FunctionPass *createX86JITCodeEmitterPass(X86TargetMachine &TM,
|
|
|
|
JITCodeEmitter &JCE);
|
2005-07-11 07:17:48 +02:00
|
|
|
|
2003-08-13 20:15:29 +02: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 00:55:53 +02:00
|
|
|
///
|
2003-08-13 20:15:29 +02:00
|
|
|
FunctionPass *createEmitX86CodeToMemory();
|
2002-10-26 00:55:53 +02:00
|
|
|
|
2010-04-06 22:26:37 +02:00
|
|
|
/// createX86MaxStackAlignmentHeuristicPass - This function returns a pass
|
|
|
|
/// which determines whether the frame pointer register should be
|
|
|
|
/// reserved in case dynamic stack alignment is later required.
|
|
|
|
///
|
|
|
|
FunctionPass *createX86MaxStackAlignmentHeuristicPass();
|
|
|
|
|
2005-01-07 08:48:33 +01:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2002-10-26 00:55:53 +02:00
|
|
|
#endif
|