2012-02-19 02:04:03 +00:00
|
|
|
//===-- ARM.h - Top-level interface for ARM representation ------*- C++ -*-===//
|
2006-05-14 22:18:28 +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
|
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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#ifndef LLVM_LIB_TARGET_ARM_ARM_H
|
|
|
|
#define LLVM_LIB_TARGET_ARM_ARM_H
|
2006-05-14 22:18:28 +00:00
|
|
|
|
2014-03-22 23:51:00 +00:00
|
|
|
#include "llvm/Support/CodeGen.h"
|
2006-05-14 22:18:28 +00:00
|
|
|
|
|
|
|
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;
|
2014-03-22 23:51:00 +00:00
|
|
|
class ImmutablePass;
|
2011-07-11 03:57:24 +00:00
|
|
|
class MachineInstr;
|
|
|
|
class MCInst;
|
2014-03-22 23:51:00 +00:00
|
|
|
class TargetLowering;
|
2014-04-03 11:44:58 +00:00
|
|
|
class TargetMachine;
|
2010-09-17 18:46:17 +00:00
|
|
|
|
2009-09-28 14:30:20 +00:00
|
|
|
FunctionPass *createARMISelDag(ARMBaseTargetMachine &TM,
|
|
|
|
CodeGenOpt::Level OptLevel);
|
2013-03-15 18:28:25 +00:00
|
|
|
FunctionPass *createA15SDOptimizerPass();
|
2009-06-13 09:12:55 +00:00
|
|
|
FunctionPass *createARMLoadStoreOptimizationPass(bool PreAlloc = false);
|
2009-11-06 23:52:48 +00:00
|
|
|
FunctionPass *createARMExpandPseudoPass();
|
2012-09-27 05:21:41 +00:00
|
|
|
FunctionPass *createARMGlobalBaseRegPass();
|
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();
|
2014-04-02 09:03:43 +00:00
|
|
|
FunctionPass *createARMOptimizeBarriersPass();
|
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
|