2004-06-21 16:55:25 +00:00
|
|
|
//===-- PowerPC.h - Top-level interface for PowerPC representation -*- C++ -*-//
|
2005-04-21 23:30:14 +00:00
|
|
|
//
|
2004-06-21 16:55:25 +00: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.
|
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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef TARGET_POWERPC_H
|
|
|
|
#define TARGET_POWERPC_H
|
|
|
|
|
2004-08-11 07:40:04 +00:00
|
|
|
#include <iosfwd>
|
|
|
|
|
2004-06-21 16:55:25 +00:00
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class FunctionPass;
|
2004-08-11 07:40:04 +00:00
|
|
|
class TargetMachine;
|
2004-06-21 16:55:25 +00:00
|
|
|
|
2005-08-04 20:49:48 +00:00
|
|
|
enum PPCTargetEnum {
|
|
|
|
TargetDefault, TargetAIX, TargetDarwin
|
|
|
|
};
|
|
|
|
|
2004-07-27 18:33:06 +00:00
|
|
|
FunctionPass *createPPCBranchSelectionPass();
|
2005-10-18 00:28:58 +00:00
|
|
|
FunctionPass *createPPCISelPattern(TargetMachine &TM);
|
|
|
|
FunctionPass *createPPCISelDag(TargetMachine &TM);
|
2004-09-04 05:00:00 +00:00
|
|
|
FunctionPass *createDarwinAsmPrinter(std::ostream &OS, TargetMachine &TM);
|
|
|
|
FunctionPass *createAIXAsmPrinter(std::ostream &OS, TargetMachine &TM);
|
2005-07-21 20:44:43 +00:00
|
|
|
|
|
|
|
extern bool PICEnabled;
|
2005-11-17 18:55:48 +00:00
|
|
|
extern bool PPCGenerateStaticCode;
|
2005-08-04 20:49:48 +00:00
|
|
|
extern PPCTargetEnum PPCTarget;
|
2004-06-21 16:55:25 +00:00
|
|
|
} // end namespace llvm;
|
|
|
|
|
2004-11-14 20:34:01 +00:00
|
|
|
// GCC #defines PPC on Linux but we use it as our namespace name
|
|
|
|
#undef PPC
|
|
|
|
|
2004-06-21 16:55:25 +00:00
|
|
|
// 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
|