blob: ec8e3d6d74da3f9d397aca492136df6b233b3ffd [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- IA64.h - Top-level interface for IA64 representation ------*- C++ -*-===//
2// The LLVM Compiler Infrastructure
3//
Chris Lattner081ce942007-12-29 20:36:04 +00004// This file is distributed under the University of Illinois Open Source
5// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This file contains the entry points for global functions defined in the IA64
10// target library, as used by the LLVM JIT.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef TARGET_IA64_H
15#define TARGET_IA64_H
16
Bill Wendling5ed22ac2009-04-29 23:29:43 +000017#include "llvm/Target/TargetMachine.h"
18
Dan Gohmanf17a25c2007-07-18 16:29:46 +000019namespace llvm {
20
21class IA64TargetMachine;
22class FunctionPass;
Owen Anderson847b99b2008-08-21 00:14:44 +000023class raw_ostream;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000024
25/// createIA64DAGToDAGInstructionSelector - This pass converts an LLVM
26/// function into IA64 machine code in a sane, DAG->DAG transform.
27///
28FunctionPass *createIA64DAGToDAGInstructionSelector(IA64TargetMachine &TM);
29
30/// createIA64BundlingPass - This pass adds stop bits and bundles
31/// instructions.
32///
33FunctionPass *createIA64BundlingPass(IA64TargetMachine &TM);
34
35/// createIA64CodePrinterPass - Returns a pass that prints the IA64
36/// assembly code for a MachineFunction to the given output stream,
37/// using the given target machine description. This should work
38/// regardless of whether the function is in SSA form.
39///
Bill Wendling4f405312009-02-24 08:30:20 +000040FunctionPass *createIA64CodePrinterPass(raw_ostream &o,
41 IA64TargetMachine &tm,
Bill Wendling5ed22ac2009-04-29 23:29:43 +000042 CodeGenOpt::Level OptLevel,
43 bool verbose);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000044
45} // End llvm namespace
46
47// Defines symbolic names for IA64 registers. This defines a mapping from
48// register name to register number.
49//
50#include "IA64GenRegisterNames.inc"
51
52// Defines symbolic names for the IA64 instructions.
53//
54#include "IA64GenInstrNames.inc"
55
56#endif
57
58