2002-10-25 22:55:53 +00:00
|
|
|
//===-- X86.h - Top-level interface for X86 representation ------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// 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-29 17:43:38 +00:00
|
|
|
class TargetMachine;
|
2002-10-29 22:37:54 +00:00
|
|
|
class Pass;
|
2002-10-25 22:55:53 +00:00
|
|
|
|
2003-07-26 23:49:58 +00:00
|
|
|
/// createX86SimpleInstructionSelector - This pass converts an LLVM function
|
2003-08-03 15:48:55 +00:00
|
|
|
/// into a machine code representation in a very simple peep-hole fashion. The
|
2002-10-25 22:55:53 +00:00
|
|
|
/// generated code sucks but the implementation is nice and simple.
|
|
|
|
///
|
2003-07-26 23:49:58 +00:00
|
|
|
Pass *createX86SimpleInstructionSelector(TargetMachine &TM);
|
2002-10-25 22:55:53 +00:00
|
|
|
|
2003-08-11 14:59:22 +00:00
|
|
|
/// createX86PatternInstructionSelector - This pass converts an LLVM function
|
|
|
|
/// into a machine code representation using pattern matching and a machine
|
|
|
|
/// description file.
|
|
|
|
///
|
|
|
|
Pass *createX86PatternInstructionSelector(TargetMachine &TM);
|
|
|
|
|
2003-01-13 00:45:29 +00:00
|
|
|
/// createX86PeepholeOptimizer - Create a pass to perform X86 specific peephole
|
|
|
|
/// optimizations.
|
2002-10-25 22:55:53 +00:00
|
|
|
///
|
2003-01-13 00:45:29 +00:00
|
|
|
Pass *createX86PeepholeOptimizerPass();
|
2002-12-28 20:26:16 +00:00
|
|
|
|
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-01-13 00:45:29 +00:00
|
|
|
Pass *createX86FloatingPointStackifierPass();
|
2002-10-29 22:37:54 +00:00
|
|
|
|
2003-07-23 20:25:08 +00: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-29 22:37:54 +00:00
|
|
|
///
|
2003-07-23 20:25:08 +00:00
|
|
|
Pass *createX86CodePrinterPass(std::ostream &o, TargetMachine &tm);
|
2002-10-25 22:55:53 +00:00
|
|
|
|
|
|
|
/// X86EmitCodeToMemory - This function converts a register allocated function
|
|
|
|
/// into raw machine code in a dynamically allocated chunk of memory. A pointer
|
|
|
|
/// to the start of the function is returned.
|
|
|
|
///
|
2002-12-28 20:26:16 +00:00
|
|
|
Pass *createEmitX86CodeToMemory();
|
2002-10-25 22:55:53 +00:00
|
|
|
|
2003-08-03 15:48:55 +00:00
|
|
|
// Defines symbolic names for X86 registers. This defines a mapping from
|
|
|
|
// register name to register number.
|
|
|
|
//
|
|
|
|
#include "X86GenRegisterNames.inc"
|
|
|
|
|
2003-08-03 21:57:05 +00:00
|
|
|
// Defines symbolic names for the X86 instructions.
|
|
|
|
//
|
|
|
|
#include "X86GenInstrNames.inc"
|
2002-10-25 22:55:53 +00:00
|
|
|
|
|
|
|
#endif
|