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
|
|
|
|
|
2011-07-23 00:00:19 +00:00
|
|
|
#include "MCTargetDesc/ARMBaseInfo.h"
|
2011-07-14 20:59:42 +00:00
|
|
|
#include "MCTargetDesc/ARMMCTargetDesc.h"
|
2011-06-22 20:40:30 +00:00
|
|
|
#include "llvm/Support/DataTypes.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
|
|
|
|
2011-07-11 03:57:24 +00:00
|
|
|
class ARMAsmPrinter;
|
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;
|
2011-07-11 03:57:24 +00:00
|
|
|
class MachineInstr;
|
|
|
|
class MCInst;
|
2010-09-17 18:46:17 +00:00
|
|
|
|
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();
|
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
|
|
|
|
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
|