2002-10-26 06:55:53 +08:00
|
|
|
//===-- X86.h - Top-level interface for X86 representation ------*- C++ -*-===//
|
2003-10-21 23:17:13 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
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
|
|
|
|
|
|
|
|
#include <iosfwd>
|
2002-10-30 01:43:38 +08:00
|
|
|
class TargetMachine;
|
2003-08-14 02:15:29 +08:00
|
|
|
class FunctionPass;
|
2002-10-26 06:55:53 +08:00
|
|
|
|
2003-07-27 07:49:58 +08:00
|
|
|
/// createX86SimpleInstructionSelector - This pass converts an LLVM function
|
2003-08-03 23:48:55 +08:00
|
|
|
/// into a machine code representation in a very simple peep-hole fashion. The
|
2002-10-26 06:55:53 +08:00
|
|
|
/// generated code sucks but the implementation is nice and simple.
|
|
|
|
///
|
2003-08-14 02:15:29 +08:00
|
|
|
FunctionPass *createX86SimpleInstructionSelector(TargetMachine &TM);
|
2002-10-26 06:55:53 +08:00
|
|
|
|
2003-08-11 22:59:22 +08:00
|
|
|
/// createX86PatternInstructionSelector - This pass converts an LLVM function
|
|
|
|
/// into a machine code representation using pattern matching and a machine
|
|
|
|
/// description file.
|
|
|
|
///
|
2003-08-14 02:15:29 +08:00
|
|
|
FunctionPass *createX86PatternInstructionSelector(TargetMachine &TM);
|
2003-08-11 22:59:22 +08:00
|
|
|
|
2003-01-13 08:45:29 +08:00
|
|
|
/// createX86PeepholeOptimizer - Create a pass to perform X86 specific peephole
|
|
|
|
/// optimizations.
|
2002-10-26 06:55:53 +08:00
|
|
|
///
|
2003-08-14 02:15:29 +08:00
|
|
|
FunctionPass *createX86PeepholeOptimizerPass();
|
2002-12-29 04:26:16 +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
|
|
|
|
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,
|
|
|
|
/// using the given target machine description. This should work
|
|
|
|
/// regardless of whether the function is in SSA form.
|
2002-10-30 06:37:54 +08:00
|
|
|
///
|
2003-08-14 02:15:29 +08:00
|
|
|
FunctionPass *createX86CodePrinterPass(std::ostream &o,TargetMachine &tm);
|
2002-10-26 06:55:53 +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
|
|
|
|
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
|