2002-10-25 22:55:53 +00:00
|
|
|
//===-- X86.h - Top-level interface for X86 representation ------*- C++ -*-===//
|
2005-04-21 23:38:14 +00:00
|
|
|
//
|
2003-10-21 15:17:13 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 23:38:14 +00:00
|
|
|
//
|
2003-10-21 15:17:13 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-10-25 22:55:53 +00:00
|
|
|
//
|
|
|
|
// This file contains the entry points for global functions defined in the x86
|
|
|
|
// target library, as used by the LLVM JIT.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#ifndef LLVM_LIB_TARGET_X86_X86_H
|
|
|
|
#define LLVM_LIB_TARGET_X86_X86_H
|
2002-10-25 22:55:53 +00:00
|
|
|
|
2014-03-19 06:53:25 +00:00
|
|
|
#include "llvm/Support/CodeGen.h"
|
2009-04-29 23:29:43 +00:00
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
namespace llvm {
|
|
|
|
|
2003-08-13 18:15:29 +00:00
|
|
|
class FunctionPass;
|
2014-03-19 06:53:25 +00:00
|
|
|
class ImmutablePass;
|
2010-02-21 21:54:14 +00:00
|
|
|
class X86TargetMachine;
|
2002-10-25 22:55:53 +00:00
|
|
|
|
2012-08-01 18:39:17 +00:00
|
|
|
/// createX86ISelDag - This pass converts a legalized DAG into a
|
2005-11-15 00:40:23 +00:00
|
|
|
/// X86-specific DAG, ready for instruction scheduling.
|
|
|
|
///
|
2009-06-01 19:57:37 +00:00
|
|
|
FunctionPass *createX86ISelDag(X86TargetMachine &TM,
|
|
|
|
CodeGenOpt::Level OptLevel);
|
2005-01-07 07:48:33 +00:00
|
|
|
|
2014-05-22 01:45:57 +00:00
|
|
|
/// createX86GlobalBaseRegPass - This pass initializes a global base
|
2010-07-10 09:00:22 +00:00
|
|
|
/// register for PIC on x86-32.
|
2014-05-22 01:45:57 +00:00
|
|
|
FunctionPass* createX86GlobalBaseRegPass();
|
2010-07-10 09:00:22 +00:00
|
|
|
|
2012-06-01 16:27:21 +00:00
|
|
|
/// createCleanupLocalDynamicTLSPass() - This pass combines multiple accesses
|
|
|
|
/// to local-dynamic TLS variables so that the TLS base address for the module
|
|
|
|
/// is only fetched once per execution path through the function.
|
|
|
|
FunctionPass *createCleanupLocalDynamicTLSPass();
|
|
|
|
|
2003-01-13 00:45:29 +00: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 20:26:16 +00:00
|
|
|
///
|
2003-08-13 18:15:29 +00:00
|
|
|
FunctionPass *createX86FloatingPointStackifierPass();
|
2002-10-29 22:37:54 +00:00
|
|
|
|
2011-08-23 01:14:17 +00:00
|
|
|
/// createX86IssueVZeroUpperPass - This pass inserts AVX vzeroupper instructions
|
|
|
|
/// before each call to avoid transition penalty between functions encoded with
|
|
|
|
/// AVX and SSE.
|
|
|
|
FunctionPass *createX86IssueVZeroUpperPass();
|
|
|
|
|
2003-08-13 18:15:29 +00:00
|
|
|
/// createX86EmitCodeToMemory - Returns a pass that converts a register
|
|
|
|
/// allocated function into raw machine code in a dynamically
|
|
|
|
/// allocated chunk of memory.
|
2002-10-25 22:55:53 +00:00
|
|
|
///
|
2003-08-13 18:15:29 +00:00
|
|
|
FunctionPass *createEmitX86CodeToMemory();
|
2002-10-25 22:55:53 +00:00
|
|
|
|
2013-01-08 18:27:24 +00:00
|
|
|
/// createX86PadShortFunctions - Return a pass that pads short functions
|
|
|
|
/// with NOOPs. This will prevent a stall when returning on the Atom.
|
|
|
|
FunctionPass *createX86PadShortFunctions();
|
2013-04-25 20:29:37 +00:00
|
|
|
/// createX86FixupLEAs - Return a a pass that selectively replaces
|
|
|
|
/// certain instructions (like add, sub, inc, dec, some shifts,
|
|
|
|
/// and some multiplies) by equivalent LEA instructions, in order
|
|
|
|
/// to eliminate execution delays in some Atom processors.
|
|
|
|
FunctionPass *createX86FixupLEAs();
|
2013-01-08 18:27:24 +00:00
|
|
|
|
2015-02-01 16:56:04 +00:00
|
|
|
/// createX86CallFrameOptimization - Return a pass that optimizes
|
|
|
|
/// the code-size of x86 call sequences. This is done by replacing
|
|
|
|
/// esp-relative movs with pushes.
|
|
|
|
FunctionPass *createX86CallFrameOptimization();
|
|
|
|
|
2015-05-05 17:44:16 +00:00
|
|
|
/// createX86WinEHStatePass - Return an IR pass that inserts EH registration
|
|
|
|
/// stack objects and explicit EH state updates. This pass must run after EH
|
|
|
|
/// preparation, which does Windows-specific but architecture-neutral
|
|
|
|
/// preparation.
|
|
|
|
FunctionPass *createX86WinEHStatePass();
|
|
|
|
|
2015-05-22 18:10:47 +00:00
|
|
|
/// Return a Machine IR pass that expands X86-specific pseudo
|
|
|
|
/// instructions into a sequence of actual instructions. This pass
|
|
|
|
/// must run after prologue/epilogue insertion and before lowering
|
|
|
|
/// the MachineInstr to MC.
|
|
|
|
FunctionPass *createX86ExpandPseudoPass();
|
2015-06-23 09:49:53 +00:00
|
|
|
} // End llvm namespace
|
2005-01-07 07:48:33 +00:00
|
|
|
|
2002-10-25 22:55:53 +00:00
|
|
|
#endif
|