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
|
|
|
|
2011-07-14 20:59:42 +00:00
|
|
|
#include "MCTargetDesc/PPCMCTargetDesc.h"
|
2010-11-15 08:49:58 +00:00
|
|
|
#include <string>
|
|
|
|
|
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;
|
2013-01-25 23:05:59 +00:00
|
|
|
class ImmutablePass;
|
2010-11-14 21:09:28 +00:00
|
|
|
class JITCodeEmitter;
|
2010-11-14 21:12:33 +00:00
|
|
|
class MachineInstr;
|
|
|
|
class AsmPrinter;
|
Implement a basic MCCodeEmitter for PPC. This doesn't handle
fixups yet, and doesn't handle actually encoding operand values,
but this is enough for llc -show-mc-encoding to show the base
instruction encoding information, e.g.:
mflr r0 ; encoding: [0x7c,0x08,0x02,0xa6]
stw r0, 8(r1) ; encoding: [0x90,0x00,0x00,0x00]
stwu r1, -64(r1) ; encoding: [0x94,0x00,0x00,0x00]
Ltmp0:
lhz r4, 4(r3) ; encoding: [0xa0,0x00,0x00,0x00]
cmplwi cr0, r4, 8 ; encoding: [0x28,0x00,0x00,0x00]
beq cr0, LBB0_2 ; encoding: [0x40,0x00,0x00,0x00]
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119116 91177308-0d34-0410-b5e6-96231b3b80d8
2010-11-15 04:16:32 +00:00
|
|
|
class MCInst;
|
2012-03-17 18:46:09 +00:00
|
|
|
|
2012-06-08 15:38:21 +00:00
|
|
|
FunctionPass *createPPCCTRLoops();
|
2010-11-15 03:13:19 +00:00
|
|
|
FunctionPass *createPPCBranchSelectionPass();
|
|
|
|
FunctionPass *createPPCISelDag(PPCTargetMachine &TM);
|
|
|
|
FunctionPass *createPPCJITCodeEmitterPass(PPCTargetMachine &TM,
|
|
|
|
JITCodeEmitter &MCE);
|
|
|
|
void LowerPPCMachineInstrToMCInst(const MachineInstr *MI, MCInst &OutMI,
|
2011-06-09 20:25:38 +00:00
|
|
|
AsmPrinter &AP, bool isDarwin);
|
2013-01-25 23:05:59 +00:00
|
|
|
|
|
|
|
/// \brief Creates an PPC-specific Target Transformation Info pass.
|
|
|
|
ImmutablePass *createPPCTargetTransformInfoPass(const PPCTargetMachine *TM);
|
2010-11-15 03:13:19 +00:00
|
|
|
|
2010-11-14 23:42:06 +00:00
|
|
|
namespace PPCII {
|
|
|
|
|
|
|
|
/// Target Operand Flag enum.
|
|
|
|
enum TOF {
|
|
|
|
//===------------------------------------------------------------------===//
|
|
|
|
// PPC Specific MachineOperand flags.
|
|
|
|
MO_NO_FLAG,
|
|
|
|
|
|
|
|
/// MO_DARWIN_STUB - On a symbol operand "FOO", this indicates that the
|
|
|
|
/// reference is actually to the "FOO$stub" symbol. This is used for calls
|
|
|
|
/// and jumps to external functions on Tiger and earlier.
|
2010-11-15 03:13:19 +00:00
|
|
|
MO_DARWIN_STUB = 1,
|
2010-11-14 23:42:06 +00:00
|
|
|
|
2010-11-15 03:13:19 +00:00
|
|
|
/// MO_PIC_FLAG - If this bit is set, the symbol reference is relative to
|
|
|
|
/// the function's picbase, e.g. lo16(symbol-picbase).
|
2013-02-21 00:05:29 +00:00
|
|
|
MO_PIC_FLAG = 2,
|
2010-11-15 02:46:57 +00:00
|
|
|
|
2010-11-15 03:13:19 +00:00
|
|
|
/// MO_NLP_FLAG - If this bit is set, the symbol reference is actually to
|
|
|
|
/// the non_lazy_ptr for the global, e.g. lo16(symbol$non_lazy_ptr-picbase).
|
2013-02-21 00:05:29 +00:00
|
|
|
MO_NLP_FLAG = 4,
|
2010-11-15 02:46:57 +00:00
|
|
|
|
2010-11-15 03:13:19 +00:00
|
|
|
/// MO_NLP_HIDDEN_FLAG - If this bit is set, the symbol reference is to a
|
|
|
|
/// symbol with hidden visibility. This causes a different kind of
|
|
|
|
/// non-lazy-pointer to be generated.
|
2013-02-21 00:05:29 +00:00
|
|
|
MO_NLP_HIDDEN_FLAG = 8,
|
2012-06-04 17:36:38 +00:00
|
|
|
|
|
|
|
/// The next are not flags but distinct values.
|
2013-02-21 00:05:29 +00:00
|
|
|
MO_ACCESS_MASK = 0xf0,
|
2012-06-04 17:36:38 +00:00
|
|
|
|
|
|
|
/// MO_LO16, MO_HA16 - lo16(symbol) and ha16(symbol)
|
2013-02-21 00:05:29 +00:00
|
|
|
MO_LO16 = 1 << 4,
|
|
|
|
MO_HA16 = 2 << 4,
|
2012-06-04 17:36:38 +00:00
|
|
|
|
2013-02-21 00:05:29 +00:00
|
|
|
MO_TPREL16_HA = 3 << 4,
|
|
|
|
MO_TPREL16_LO = 4 << 4,
|
|
|
|
|
|
|
|
/// These values identify relocations on immediates folded
|
|
|
|
/// into memory operations.
|
|
|
|
MO_DTPREL16_LO = 5 << 4,
|
|
|
|
MO_TLSLD16_LO = 6 << 4,
|
|
|
|
MO_TOC16_LO = 7 << 4
|
2010-11-14 23:42:06 +00:00
|
|
|
};
|
|
|
|
} // end namespace PPCII
|
|
|
|
|
2004-06-21 16:55:25 +00:00
|
|
|
} // end namespace llvm;
|
|
|
|
|
|
|
|
#endif
|