2006-09-04 04:14:57 +00:00
|
|
|
//===-- PPC.h - Top-level interface for PowerPC Target ----------*- C++ -*-===//
|
2005-04-21 23:30:14 +00:00
|
|
|
//
|
2004-06-21 16:55:25 +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:30:14 +00:00
|
|
|
//
|
2004-06-21 16:55:25 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the entry points for global functions defined in the LLVM
|
|
|
|
// PowerPC back-end.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-09-04 04:14:57 +00:00
|
|
|
#ifndef LLVM_TARGET_POWERPC_H
|
|
|
|
#define LLVM_TARGET_POWERPC_H
|
2004-06-21 16:55:25 +00:00
|
|
|
|
2004-08-11 07:40:04 +00:00
|
|
|
#include <iosfwd>
|
|
|
|
|
2004-06-21 16:55:25 +00:00
|
|
|
|
2006-11-04 05:27:39 +00:00
|
|
|
// GCC #defines PPC on Linux but we use it as our namespace name
|
|
|
|
#undef PPC
|
2006-08-23 21:08:52 +00:00
|
|
|
|
2006-11-04 05:27:39 +00:00
|
|
|
namespace llvm {
|
|
|
|
class PPCTargetMachine;
|
|
|
|
class FunctionPass;
|
|
|
|
class MachineCodeEmitter;
|
2008-08-21 00:14:44 +00:00
|
|
|
class raw_ostream;
|
2006-11-04 05:27:39 +00:00
|
|
|
|
2004-07-27 18:33:06 +00:00
|
|
|
FunctionPass *createPPCBranchSelectionPass();
|
2006-03-13 23:20:37 +00:00
|
|
|
FunctionPass *createPPCISelDag(PPCTargetMachine &TM);
|
2008-08-21 00:14:44 +00:00
|
|
|
FunctionPass *createPPCAsmPrinterPass(raw_ostream &OS,
|
2006-09-20 17:12:19 +00:00
|
|
|
PPCTargetMachine &TM);
|
2006-08-23 21:08:52 +00:00
|
|
|
FunctionPass *createPPCCodeEmitterPass(PPCTargetMachine &TM,
|
|
|
|
MachineCodeEmitter &MCE);
|
2004-06-21 16:55:25 +00:00
|
|
|
} // end namespace llvm;
|
|
|
|
|
|
|
|
// Defines symbolic names for PowerPC registers. This defines a mapping from
|
|
|
|
// register name to register number.
|
|
|
|
//
|
2005-10-14 23:37:35 +00:00
|
|
|
#include "PPCGenRegisterNames.inc"
|
2004-06-21 16:55:25 +00:00
|
|
|
|
|
|
|
// Defines symbolic names for the PowerPC instructions.
|
|
|
|
//
|
2005-10-14 23:37:35 +00:00
|
|
|
#include "PPCGenInstrNames.inc"
|
2004-06-21 16:55:25 +00:00
|
|
|
|
|
|
|
#endif
|