2006-05-14 22:18:28 +00:00
|
|
|
//===-- ARM.h - Top-level interface for ARM representation---- --*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
2006-05-14 22:18:28 +00:00
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the entry points for global functions defined in the LLVM
|
|
|
|
// ARM back-end.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef TARGET_ARM_H
|
|
|
|
#define TARGET_ARM_H
|
|
|
|
|
2010-09-15 19:26:06 +00:00
|
|
|
#include "ARMBaseInfo.h"
|
2009-07-11 20:10:48 +00:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2009-04-29 23:29:43 +00:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2006-05-14 22:18:28 +00:00
|
|
|
#include <cassert>
|
|
|
|
|
|
|
|
namespace llvm {
|
2007-01-19 07:51:42 +00:00
|
|
|
|
2009-06-26 21:28:53 +00:00
|
|
|
class ARMBaseTargetMachine;
|
2007-01-19 07:51:42 +00:00
|
|
|
class FunctionPass;
|
2009-05-30 20:51:52 +00:00
|
|
|
class JITCodeEmitter;
|
2009-07-14 20:18:05 +00:00
|
|
|
class formatted_raw_ostream;
|
2010-09-17 18:46:17 +00:00
|
|
|
class MCCodeEmitter;
|
2010-09-30 02:17:26 +00:00
|
|
|
class TargetAsmBackend;
|
2010-11-14 20:58:38 +00:00
|
|
|
class MachineInstr;
|
2010-12-01 03:45:07 +00:00
|
|
|
class ARMAsmPrinter;
|
2010-11-14 20:58:38 +00:00
|
|
|
class MCInst;
|
2010-09-17 18:46:17 +00:00
|
|
|
|
|
|
|
MCCodeEmitter *createARMMCCodeEmitter(const Target &,
|
|
|
|
TargetMachine &TM,
|
|
|
|
MCContext &Ctx);
|
2007-01-19 07:51:42 +00:00
|
|
|
|
2010-09-30 02:17:26 +00:00
|
|
|
TargetAsmBackend *createARMAsmBackend(const Target &, const std::string &);
|
|
|
|
|
2009-09-28 14:30:20 +00:00
|
|
|
FunctionPass *createARMISelDag(ARMBaseTargetMachine &TM,
|
|
|
|
CodeGenOpt::Level OptLevel);
|
2009-05-30 20:51:52 +00:00
|
|
|
|
2009-06-26 21:28:53 +00:00
|
|
|
FunctionPass *createARMJITCodeEmitterPass(ARMBaseTargetMachine &TM,
|
2009-06-13 09:12:55 +00:00
|
|
|
JITCodeEmitter &JCE);
|
2009-05-30 20:51:52 +00:00
|
|
|
|
2009-06-13 09:12:55 +00:00
|
|
|
FunctionPass *createARMLoadStoreOptimizationPass(bool PreAlloc = false);
|
2009-11-06 23:52:48 +00:00
|
|
|
FunctionPass *createARMExpandPseudoPass();
|
2010-07-24 21:52:08 +00:00
|
|
|
FunctionPass *createARMGlobalMergePass(const TargetLowering* tli);
|
2007-01-19 07:51:42 +00:00
|
|
|
FunctionPass *createARMConstantIslandPass();
|
2009-11-03 01:04:26 +00:00
|
|
|
FunctionPass *createNEONMoveFixPass();
|
2010-12-05 22:04:16 +00:00
|
|
|
FunctionPass *createMLxExpansionPass();
|
2010-07-02 21:07:09 +00:00
|
|
|
FunctionPass *createThumb2ITBlockPass();
|
2009-08-08 03:20:32 +00:00
|
|
|
FunctionPass *createThumb2SizeReductionPass();
|
2009-07-10 01:54:42 +00:00
|
|
|
|
2009-07-18 23:03:22 +00:00
|
|
|
extern Target TheARMTarget, TheThumbTarget;
|
|
|
|
|
2010-11-14 21:00:02 +00:00
|
|
|
void LowerARMMachineInstrToMCInst(const MachineInstr *MI, MCInst &OutMI,
|
2010-12-01 03:45:07 +00:00
|
|
|
ARMAsmPrinter &AP);
|
|
|
|
|
2006-05-14 22:18:28 +00:00
|
|
|
} // end namespace llvm;
|
|
|
|
|
|
|
|
#endif
|