2006-09-04 12:14:57 +08:00
|
|
|
//===-- PPC.h - Top-level interface for PowerPC Target ----------*- C++ -*-===//
|
2005-04-22 07:30:14 +08:00
|
|
|
//
|
2004-06-22 00:55:25 +08:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 07:30:14 +08:00
|
|
|
//
|
2004-06-22 00:55:25 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the entry points for global functions defined in the LLVM
|
|
|
|
// PowerPC back-end.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-09-04 12:14:57 +08:00
|
|
|
#ifndef LLVM_TARGET_POWERPC_H
|
|
|
|
#define LLVM_TARGET_POWERPC_H
|
2004-06-22 00:55:25 +08:00
|
|
|
|
2006-11-04 13:27:39 +08:00
|
|
|
// GCC #defines PPC on Linux but we use it as our namespace name
|
|
|
|
#undef PPC
|
2006-08-24 05:08:52 +08:00
|
|
|
|
2009-04-30 07:29:43 +08:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
|
2006-11-04 13:27:39 +08:00
|
|
|
namespace llvm {
|
|
|
|
class PPCTargetMachine;
|
|
|
|
class FunctionPass;
|
|
|
|
class MachineCodeEmitter;
|
2008-08-21 08:14:44 +08:00
|
|
|
class raw_ostream;
|
2006-11-04 13:27:39 +08:00
|
|
|
|
2004-07-28 02:33:06 +08:00
|
|
|
FunctionPass *createPPCBranchSelectionPass();
|
2006-03-14 07:20:37 +08:00
|
|
|
FunctionPass *createPPCISelDag(PPCTargetMachine &TM);
|
2009-07-01 09:48:54 +08:00
|
|
|
FunctionPass *createPPCAsmPrinterPass(raw_ostream &OS, PPCTargetMachine &TM,
|
|
|
|
bool Verbose);
|
2006-08-24 05:08:52 +08:00
|
|
|
FunctionPass *createPPCCodeEmitterPass(PPCTargetMachine &TM,
|
|
|
|
MachineCodeEmitter &MCE);
|
2009-05-31 04:51:52 +08:00
|
|
|
FunctionPass *createPPCJITCodeEmitterPass(PPCTargetMachine &TM,
|
|
|
|
JITCodeEmitter &MCE);
|
2004-06-22 00:55:25 +08:00
|
|
|
} // end namespace llvm;
|
|
|
|
|
|
|
|
// Defines symbolic names for PowerPC registers. This defines a mapping from
|
|
|
|
// register name to register number.
|
|
|
|
//
|
2005-10-15 07:37:35 +08:00
|
|
|
#include "PPCGenRegisterNames.inc"
|
2004-06-22 00:55:25 +08:00
|
|
|
|
|
|
|
// Defines symbolic names for the PowerPC instructions.
|
|
|
|
//
|
2005-10-15 07:37:35 +08:00
|
|
|
#include "PPCGenInstrNames.inc"
|
2004-06-22 00:55:25 +08:00
|
|
|
|
|
|
|
#endif
|