mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
fabaac275e
functions so that the size computation is available not only in ConstantIslands but in other passes as well. Differential Revision: https://reviews.llvm.org/D22640 llvm-svn: 276399
60 lines
1.9 KiB
C++
60 lines
1.9 KiB
C++
//===-- ARM.h - Top-level interface for ARM representation ------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file contains the entry points for global functions defined in the LLVM
|
|
// ARM back-end.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_LIB_TARGET_ARM_ARM_H
|
|
#define LLVM_LIB_TARGET_ARM_ARM_H
|
|
|
|
#include "llvm/Support/CodeGen.h"
|
|
#include "ARMBasicBlockInfo.h"
|
|
#include <functional>
|
|
|
|
namespace llvm {
|
|
|
|
class ARMAsmPrinter;
|
|
class ARMBaseTargetMachine;
|
|
class Function;
|
|
class FunctionPass;
|
|
class ImmutablePass;
|
|
class MachineInstr;
|
|
class MCInst;
|
|
class PassRegistry;
|
|
class TargetLowering;
|
|
class TargetMachine;
|
|
|
|
FunctionPass *createARMISelDag(ARMBaseTargetMachine &TM,
|
|
CodeGenOpt::Level OptLevel);
|
|
FunctionPass *createA15SDOptimizerPass();
|
|
FunctionPass *createARMLoadStoreOptimizationPass(bool PreAlloc = false);
|
|
FunctionPass *createARMExpandPseudoPass();
|
|
FunctionPass *createARMConstantIslandPass();
|
|
FunctionPass *createMLxExpansionPass();
|
|
FunctionPass *createThumb2ITBlockPass();
|
|
FunctionPass *createARMOptimizeBarriersPass();
|
|
FunctionPass *createThumb2SizeReductionPass(
|
|
std::function<bool(const Function &)> Ftor = nullptr);
|
|
|
|
void LowerARMMachineInstrToMCInst(const MachineInstr *MI, MCInst &OutMI,
|
|
ARMAsmPrinter &AP);
|
|
|
|
void computeBlockSize(MachineFunction *MF, MachineBasicBlock *MBB,
|
|
BasicBlockInfo &BBI);
|
|
std::vector<BasicBlockInfo> computeAllBlockSizes(MachineFunction *MF);
|
|
|
|
void initializeARMLoadStoreOptPass(PassRegistry &);
|
|
void initializeARMPreAllocLoadStoreOptPass(PassRegistry &);
|
|
|
|
} // end namespace llvm;
|
|
|
|
#endif
|