mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +01:00
d2d877079e
MVE does not have a single sext/zext or trunc instruction that takes the bottom half of a vector and extends to a full width, like NEON has with MOVL. Instead it is expected that this happens through top/bottom instructions. So the MVE equivalent VMOVLT/B instructions take either the even or odd elements of the input and extend them to the larger type, producing a vector with half the number of elements each of double the bitwidth. As there is no simple instruction for a normal extend, we often have to expand sext/zext/trunc into a series of lane moves (or stack loads/stores, which we do not do yet). This pass takes vector code that starts at truncs, looks for interconnected blobs of operations that end with sext/zext and transforms them by adding shuffles so that the lanes are interleaved and the MVE VMOVL/VMOVN instructions can be used. This is done pre-ISel so that it can work across basic blocks. This initial version of the pass just handles a limited set of instructions, not handling constants or splats or FP, which can all come as extensions to this base. Differential Revision: https://reviews.llvm.org/D95804
85 lines
3.1 KiB
C++
85 lines
3.1 KiB
C++
//===-- ARM.h - Top-level interface for ARM representation ------*- C++ -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// 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/IR/LegacyPassManager.h"
|
|
#include "llvm/Support/CodeGen.h"
|
|
#include <functional>
|
|
#include <vector>
|
|
|
|
namespace llvm {
|
|
|
|
class ARMAsmPrinter;
|
|
class ARMBaseTargetMachine;
|
|
class ARMRegisterBankInfo;
|
|
class ARMSubtarget;
|
|
struct BasicBlockInfo;
|
|
class Function;
|
|
class FunctionPass;
|
|
class InstructionSelector;
|
|
class MachineBasicBlock;
|
|
class MachineFunction;
|
|
class MachineInstr;
|
|
class MCInst;
|
|
class PassRegistry;
|
|
|
|
Pass *createMVETailPredicationPass();
|
|
FunctionPass *createARMLowOverheadLoopsPass();
|
|
FunctionPass *createARMBlockPlacementPass();
|
|
Pass *createARMParallelDSPPass();
|
|
FunctionPass *createARMISelDag(ARMBaseTargetMachine &TM,
|
|
CodeGenOpt::Level OptLevel);
|
|
FunctionPass *createA15SDOptimizerPass();
|
|
FunctionPass *createARMLoadStoreOptimizationPass(bool PreAlloc = false);
|
|
FunctionPass *createARMExpandPseudoPass();
|
|
FunctionPass *createARMConstantIslandPass();
|
|
FunctionPass *createMLxExpansionPass();
|
|
FunctionPass *createThumb2ITBlockPass();
|
|
FunctionPass *createMVEVPTBlockPass();
|
|
FunctionPass *createMVETPAndVPTOptimisationsPass();
|
|
FunctionPass *createARMOptimizeBarriersPass();
|
|
FunctionPass *createThumb2SizeReductionPass(
|
|
std::function<bool(const Function &)> Ftor = nullptr);
|
|
InstructionSelector *
|
|
createARMInstructionSelector(const ARMBaseTargetMachine &TM, const ARMSubtarget &STI,
|
|
const ARMRegisterBankInfo &RBI);
|
|
Pass *createMVEGatherScatterLoweringPass();
|
|
FunctionPass *createARMSLSHardeningPass();
|
|
FunctionPass *createARMIndirectThunks();
|
|
Pass *createMVELaneInterleavingPass();
|
|
|
|
void LowerARMMachineInstrToMCInst(const MachineInstr *MI, MCInst &OutMI,
|
|
ARMAsmPrinter &AP);
|
|
|
|
void initializeARMParallelDSPPass(PassRegistry &);
|
|
void initializeARMLoadStoreOptPass(PassRegistry &);
|
|
void initializeARMPreAllocLoadStoreOptPass(PassRegistry &);
|
|
void initializeARMConstantIslandsPass(PassRegistry &);
|
|
void initializeARMExpandPseudoPass(PassRegistry &);
|
|
void initializeThumb2SizeReducePass(PassRegistry &);
|
|
void initializeThumb2ITBlockPass(PassRegistry &);
|
|
void initializeMVEVPTBlockPass(PassRegistry &);
|
|
void initializeMVETPAndVPTOptimisationsPass(PassRegistry &);
|
|
void initializeARMLowOverheadLoopsPass(PassRegistry &);
|
|
void initializeARMBlockPlacementPass(PassRegistry &);
|
|
void initializeMVETailPredicationPass(PassRegistry &);
|
|
void initializeMVEGatherScatterLoweringPass(PassRegistry &);
|
|
void initializeARMSLSHardeningPass(PassRegistry &);
|
|
void initializeMVELaneInterleavingPass(PassRegistry &);
|
|
|
|
} // end namespace llvm
|
|
|
|
#endif // LLVM_LIB_TARGET_ARM_ARM_H
|