2012-02-19 10:04:03 +08:00
|
|
|
//===-- ARM.h - Top-level interface for ARM representation ------*- C++ -*-===//
|
2006-05-15 06:18:28 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
2006-05-15 06:18:28 +08: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-14 00:26:38 +08:00
|
|
|
#ifndef LLVM_LIB_TARGET_ARM_ARM_H
|
|
|
|
#define LLVM_LIB_TARGET_ARM_ARM_H
|
2006-05-15 06:18:28 +08:00
|
|
|
|
2014-03-23 07:51:00 +08:00
|
|
|
#include "llvm/Support/CodeGen.h"
|
2015-06-09 02:50:43 +08:00
|
|
|
#include <functional>
|
2006-05-15 06:18:28 +08:00
|
|
|
|
|
|
|
namespace llvm {
|
2007-01-19 15:51:42 +08:00
|
|
|
|
2011-07-11 11:57:24 +08:00
|
|
|
class ARMAsmPrinter;
|
2009-06-27 05:28:53 +08:00
|
|
|
class ARMBaseTargetMachine;
|
2015-06-09 02:50:43 +08:00
|
|
|
class Function;
|
2007-01-19 15:51:42 +08:00
|
|
|
class FunctionPass;
|
2014-03-23 07:51:00 +08:00
|
|
|
class ImmutablePass;
|
2011-07-11 11:57:24 +08:00
|
|
|
class MachineInstr;
|
|
|
|
class MCInst;
|
2014-03-23 07:51:00 +08:00
|
|
|
class TargetLowering;
|
2014-04-03 19:44:58 +08:00
|
|
|
class TargetMachine;
|
2010-09-18 02:46:17 +08:00
|
|
|
|
2009-09-28 22:30:20 +08:00
|
|
|
FunctionPass *createARMISelDag(ARMBaseTargetMachine &TM,
|
|
|
|
CodeGenOpt::Level OptLevel);
|
2013-03-16 02:28:25 +08:00
|
|
|
FunctionPass *createA15SDOptimizerPass();
|
2009-06-13 17:12:55 +08:00
|
|
|
FunctionPass *createARMLoadStoreOptimizationPass(bool PreAlloc = false);
|
2009-11-07 07:52:48 +08:00
|
|
|
FunctionPass *createARMExpandPseudoPass();
|
2012-09-27 13:21:41 +08:00
|
|
|
FunctionPass *createARMGlobalBaseRegPass();
|
2007-01-19 15:51:42 +08:00
|
|
|
FunctionPass *createARMConstantIslandPass();
|
2010-12-06 06:04:16 +08:00
|
|
|
FunctionPass *createMLxExpansionPass();
|
2010-07-03 05:07:09 +08:00
|
|
|
FunctionPass *createThumb2ITBlockPass();
|
2014-04-02 17:03:43 +08:00
|
|
|
FunctionPass *createARMOptimizeBarriersPass();
|
2015-06-09 02:50:43 +08:00
|
|
|
FunctionPass *createThumb2SizeReductionPass(
|
|
|
|
std::function<bool(const Function &)> Ftor = nullptr);
|
2009-07-10 09:54:42 +08:00
|
|
|
|
2010-11-15 05:00:02 +08:00
|
|
|
void LowerARMMachineInstrToMCInst(const MachineInstr *MI, MCInst &OutMI,
|
2010-12-01 11:45:07 +08:00
|
|
|
ARMAsmPrinter &AP);
|
|
|
|
|
2015-06-19 23:57:42 +08:00
|
|
|
} // namespace llvm
|
2006-05-15 06:18:28 +08:00
|
|
|
|
|
|
|
#endif
|