58                         cl::desc(
"Enable Global-ISel Big Endian Lowering"));
 
   68  if (
T->isStructTy()) {
 
   72    for (
unsigned i = 1, e = StructT->getNumElements(); i != e; ++i)
 
   73      if (StructT->getElementType(i) != StructT->getElementType(0))
 
   89  return VTSize == 1 || VTSize == 8 || VTSize == 16 || VTSize == 32;
 
 
   97  ARMOutgoingValueHandler(MachineIRBuilder &MIRBuilder,
 
   98                          MachineRegisterInfo &
MRI, MachineInstrBuilder &MIB)
 
   99      : OutgoingValueHandler(MIRBuilder, 
MRI), MIB(MIB) {}
 
  102                           MachinePointerInfo &MPO,
 
  103                           ISD::ArgFlagsTy Flags)
 override {
 
  111    auto OffsetReg = MIRBuilder.buildConstant(s32, 
Offset);
 
  113    auto AddrReg = MIRBuilder.buildPtrAdd(p0, 
SPReg, OffsetReg);
 
  116    return AddrReg.getReg(0);
 
  120                        const CCValAssign &VA)
 override {
 
  127    Register ExtReg = extendRegister(ValVReg, VA);
 
  128    MIRBuilder.buildCopy(PhysReg, ExtReg);
 
  133                            const MachinePointerInfo &MPO,
 
  134                            const CCValAssign &VA)
 override {
 
  135    Register ExtReg = extendRegister(ValVReg, VA);
 
  136    auto MMO = MIRBuilder.getMF().getMachineMemOperand(
 
  138    MIRBuilder.buildStore(ExtReg, Addr, *MMO);
 
  141  unsigned assignCustomValue(CallLowering::ArgInfo &Arg,
 
  143                             std::function<
void()> *Thunk)
 override {
 
  144    assert(Arg.
Regs.size() == 1 && 
"Can't handle multple regs yet");
 
  146    const CCValAssign &VA = VAs[0];
 
  153    const CCValAssign &NextVA = VAs[1];
 
  158           "Values belong to different arguments");
 
  165    MIRBuilder.buildUnmerge(NewRegs, Arg.
Regs[0]);
 
  167    bool IsLittle = MIRBuilder.getMF().getSubtarget<ARMSubtarget>().isLittle();
 
  173        assignValueToReg(NewRegs[0], VA.
getLocReg(), VA);
 
  174        assignValueToReg(NewRegs[1], NextVA.
getLocReg(), NextVA);
 
  178    assignValueToReg(NewRegs[0], VA.
getLocReg(), VA);
 
  179    assignValueToReg(NewRegs[1], NextVA.
getLocReg(), NextVA);
 
  183  MachineInstrBuilder MIB;
 
  197  auto &MF = MIRBuilder.
getMF();
 
  200  const auto &
DL = MF.getDataLayout();
 
  212      TLI.CCAssignFnForReturn(
F.getCallingConv(), 
F.isVarArg());
 
  215  ARMOutgoingValueHandler RetHandler(MIRBuilder, MF.getRegInfo(), Ret);
 
  217                                       MIRBuilder, 
F.getCallingConv(),
 
  224  assert(!Val == VRegs.
empty() && 
"Return value without a vreg");
 
  227  unsigned Opcode = ST.getReturnOpcode();
 
  230  if (!lowerReturnVal(MIRBuilder, Val, VRegs, Ret))
 
 
  244      : IncomingValueHandler(MIRBuilder, 
MRI) {}
 
  256    const bool IsImmutable = !Flags.isByVal();
 
  266                            const MachinePointerInfo &MPO,
 
  267                            const CCValAssign &VA)
 override {
 
  273      assert(
MRI.getType(ValVReg).isScalar() && 
"Only scalars supported atm");
 
  275      auto LoadVReg = buildLoad(
LLT::scalar(32), Addr, MemTy, MPO);
 
  279      buildLoad(ValVReg, Addr, MemTy, MPO);
 
  283  MachineInstrBuilder buildLoad(
const DstOp &Res, 
Register Addr, LLT MemTy,
 
  284                                const MachinePointerInfo &MPO) {
 
  285    MachineFunction &MF = MIRBuilder.
getMF();
 
  289    return MIRBuilder.
buildLoad(Res, Addr, *MMO);
 
  293                        const CCValAssign &VA)
 override {
 
  300    assert(ValSize <= 64 && 
"Unsupported value size");
 
  301    assert(LocSize <= 64 && 
"Unsupported location size");
 
  303    markPhysRegUsed(PhysReg);
 
  304    if (ValSize == LocSize) {
 
  307      assert(ValSize < LocSize && 
"Extensions not supported");
 
  313      MIRBuilder.
buildTrunc(ValVReg, PhysRegToVReg);
 
  317  unsigned assignCustomValue(ARMCallLowering::ArgInfo &Arg,
 
  319                             std::function<
void()> *Thunk)
 override {
 
  320    assert(Arg.
Regs.size() == 1 && 
"Can't handle multple regs yet");
 
  322    const CCValAssign &VA = VAs[0];
 
  329    const CCValAssign &NextVA = VAs[1];
 
  334           "Values belong to different arguments");
 
  342    assignValueToReg(NewRegs[0], VA.
getLocReg(), VA);
 
  343    assignValueToReg(NewRegs[1], NextVA.
getLocReg(), NextVA);
 
  357  virtual void markPhysRegUsed(
unsigned PhysReg) = 0;
 
  364  void markPhysRegUsed(
unsigned PhysReg)
 override {
 
  377  auto Subtarget = TLI.getSubtarget();
 
  379  if (Subtarget->isThumb1Only())
 
  389  auto &MF = MIRBuilder.
getMF();
 
  393  for (
auto &Arg : 
F.args()) {
 
  396    if (Arg.hasPassPointeeByValueCopyAttr())
 
  401      TLI.CCAssignFnForCall(
F.getCallingConv(), 
F.isVarArg());
 
  408  for (
auto &Arg : 
F.args()) {
 
  409    ArgInfo OrigArgInfo(VRegs[Idx], Arg.getType(), Idx);
 
  411    setArgFlags(OrigArgInfo, Idx + AttributeList::FirstArgIndex, 
DL, 
F);
 
  421                                     MIRBuilder, 
F.getCallingConv(),
 
 
  432struct CallReturnHandler : 
public ARMIncomingValueHandler {
 
  435      : ARMIncomingValueHandler(MIRBuilder, 
MRI), MIB(MIB) {}
 
  437  void markPhysRegUsed(
unsigned PhysReg)
 override {
 
  441  MachineInstrBuilder MIB;
 
  448    return STI.isThumb() ? ARM::tBL : ARM::BL;
 
  459  return ARM::BMOVPCRX_CALL;
 
  471  if (STI.genLongCalls())
 
  477  auto CallSeqStart = MIRBuilder.
buildInstr(ARM::ADJCALLSTACKDOWN);
 
  481  bool IsDirect = !Info.Callee.isReg();
 
  485  bool IsThumb = STI.isThumb();
 
  489  MIB.add(Info.Callee);
 
  491    auto CalleeReg = Info.Callee.getReg();
 
  492    if (CalleeReg && !CalleeReg.isPhysical()) {
 
  493      unsigned CalleeIdx = IsThumb ? 2 : 0;
 
  496          *MIB.getInstr(), MIB->getDesc(), Info.Callee, CalleeIdx));
 
  500  MIB.addRegMask(
TRI->getCallPreservedMask(MF, Info.CallConv));
 
  503  for (
auto Arg : Info.OrigArgs) {
 
  507    if (Arg.
Flags[0].isByVal())
 
  513  auto ArgAssignFn = TLI.CCAssignFnForCall(Info.CallConv, Info.IsVarArg);
 
  515  ARMOutgoingValueHandler ArgHandler(MIRBuilder, 
MRI, MIB);
 
  517                                     MIRBuilder, Info.CallConv, Info.IsVarArg))
 
  523  if (!Info.OrigRet.Ty->isVoidTy()) {
 
  529    auto RetAssignFn = TLI.CCAssignFnForReturn(Info.CallConv, Info.IsVarArg);
 
  531    CallReturnHandler RetHandler(MIRBuilder, 
MRI, MIB);
 
  533                                       MIRBuilder, Info.CallConv,
 
 
unsigned const MachineRegisterInfo * MRI
static unsigned getCallOpcode(const MachineFunction &CallerF, bool IsIndirect, bool IsTailCall, std::optional< CallLowering::PtrAuthInfo > &PAI, MachineRegisterInfo &MRI)
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static bool isSupportedType(const DataLayout &DL, const ARMTargetLowering &TLI, Type *T)
static cl::opt< bool > EnableGISelBigEndian("enable-arm-gisel-bigendian", cl::Hidden, cl::init(false), cl::desc("Enable Global-ISel Big Endian Lowering"))
This file describes how to lower LLVM calls to machine code calls.
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
This file contains the simple types necessary to represent the attributes associated with functions a...
Implement a low-level type suitable for MachineInstr level instruction selection.
Implement a low-level type suitable for MachineInstr level instruction selection.
This file declares the MachineIRBuilder class.
Register const TargetRegisterInfo * TRI
Promote Memory to Register
static constexpr MCPhysReg SPReg
This file defines the SmallVector class.
ARMCallLowering(const ARMTargetLowering &TLI)
bool lowerReturn(MachineIRBuilder &MIRBuilder, const Value *Val, ArrayRef< Register > VRegs, FunctionLoweringInfo &FLI) const override
This hook behaves as the extended lowerReturn function, but for targets that do not support swifterro...
bool enableBigEndian() const override
For targets which want to use big-endian can enable it with enableBigEndian() hook.
bool lowerFormalArguments(MachineIRBuilder &MIRBuilder, const Function &F, ArrayRef< ArrayRef< Register > > VRegs, FunctionLoweringInfo &FLI) const override
This hook must be implemented to lower the incoming (formal) arguments, described by VRegs,...
bool lowerCall(MachineIRBuilder &MIRBuilder, CallLoweringInfo &Info) const override
This hook must be implemented to lower the given call instruction, including argument and return valu...
const RegisterBankInfo * getRegBankInfo() const override
const ARMBaseInstrInfo * getInstrInfo() const override
bool isThumb1Only() const
const ARMBaseRegisterInfo * getRegisterInfo() const override
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
bool empty() const
empty - Check if the array is empty.
Register getLocReg() const
LocInfo getLocInfo() const
unsigned getValNo() const
void splitToValueTypes(const ArgInfo &OrigArgInfo, SmallVectorImpl< ArgInfo > &SplitArgs, const DataLayout &DL, CallingConv::ID CallConv, SmallVectorImpl< uint64_t > *Offsets=nullptr) const
Break OrigArgInfo into one or more pieces the calling convention can process, returned in SplitArgs.
bool determineAndHandleAssignments(ValueHandler &Handler, ValueAssigner &Assigner, SmallVectorImpl< ArgInfo > &Args, MachineIRBuilder &MIRBuilder, CallingConv::ID CallConv, bool IsVarArg, ArrayRef< Register > ThisReturnRegs={}) const
Invoke ValueAssigner::assignArg on each of the given Args and then use Handler to move them to the as...
CallLowering(const TargetLowering *TLI)
const TargetLowering * getTLI() const
Getter for generic TargetLowering class.
void setArgFlags(ArgInfo &Arg, unsigned OpIdx, const DataLayout &DL, const FuncInfoTy &FuncInfo) const
A parsed version of the target data layout string in and methods for querying it.
FunctionLoweringInfo - This contains information that is global to a function that is used when lower...
static constexpr LLT scalar(unsigned SizeInBits)
Get a low-level scalar or aggregate "bag of bits".
static constexpr LLT pointer(unsigned AddressSpace, unsigned SizeInBits)
Get a low-level pointer in the given address space.
TypeSize getSizeInBits() const
Returns the size of the specified MVT in bits.
uint64_t getFixedSizeInBits() const
Return the size of the specified fixed width value type in bits.
LLVM_ABI int CreateFixedObject(uint64_t Size, int64_t SPOffset, bool IsImmutable, bool isAliased=false)
Create a new object at a fixed location on the stack.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
MachineMemOperand * getMachineMemOperand(MachinePointerInfo PtrInfo, MachineMemOperand::Flags f, LLT MemTy, Align base_alignment, const AAMDNodes &AAInfo=AAMDNodes(), const MDNode *Ranges=nullptr, SyncScope::ID SSID=SyncScope::System, AtomicOrdering Ordering=AtomicOrdering::NotAtomic, AtomicOrdering FailureOrdering=AtomicOrdering::NotAtomic)
getMachineMemOperand - Allocate a new MachineMemOperand.
MachineFrameInfo & getFrameInfo()
getFrameInfo - Return the frame info object for the current function.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
const DataLayout & getDataLayout() const
Return the DataLayout attached to the Module associated to this MF.
Function & getFunction()
Return the LLVM function that this machine code represents.
Helper class to build MachineInstr.
MachineInstrBuilder insertInstr(MachineInstrBuilder MIB)
Insert an existing instruction at the insertion point.
void setInstr(MachineInstr &MI)
Set the insertion point to before MI.
MachineInstrBuilder buildMergeLikeInstr(const DstOp &Res, ArrayRef< Register > Ops)
Build and insert Res = G_MERGE_VALUES Op0, ... or Res = G_BUILD_VECTOR Op0, ... or Res = G_CONCAT_VEC...
MachineInstrBuilder buildLoad(const DstOp &Res, const SrcOp &Addr, MachineMemOperand &MMO)
Build and insert Res = G_LOAD Addr, MMO.
MachineInstrBuilder buildInstr(unsigned Opcode)
Build and insert <empty> = Opcode <empty>.
MachineInstrBuilder buildFrameIndex(const DstOp &Res, int Idx)
Build and insert Res = G_FRAME_INDEX Idx.
MachineFunction & getMF()
Getter for the function we currently build.
MachineInstrBuilder buildTrunc(const DstOp &Res, const SrcOp &Op, std::optional< unsigned > Flags=std::nullopt)
Build and insert Res = G_TRUNC Op.
const MachineBasicBlock & getMBB() const
Getter for the basic block we currently build.
void setMBB(MachineBasicBlock &MBB)
Set the insertion point to the end of MBB.
MachineInstrBuilder buildInstrNoInsert(unsigned Opcode)
Build but don't insert <empty> = Opcode <empty>.
MachineInstrBuilder buildCopy(const DstOp &Res, const SrcOp &Op)
Build and insert Res = COPY Op.
Register getReg(unsigned Idx) const
Get the register for the operand index.
const MachineInstrBuilder & addImm(int64_t Val) const
Add a new immediate operand.
const MachineInstrBuilder & add(const MachineOperand &MO) const
const MachineInstrBuilder & addDef(Register RegNo, unsigned Flags=0, unsigned SubReg=0) const
Add a virtual register definition operand.
@ MOLoad
The memory access reads data.
@ MOStore
The memory access writes data.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
Wrapper class representing virtual and physical registers.
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
EVT getValueType(const DataLayout &DL, Type *Ty, bool AllowUnknown=false) const
Return the EVT corresponding to this LLVM type.
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
The instances of the Type class are immutable: once they are created, they are never changed.
LLVM Value Representation.
Type * getType() const
All values are typed, get the type of this value.
constexpr char Align[]
Key for Kernel::Arg::Metadata::mAlign.
@ Implicit
Not emitted register (e.g. carry, or temporary result).
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
LLVM_ABI Register constrainOperandRegClass(const MachineFunction &MF, const TargetRegisterInfo &TRI, MachineRegisterInfo &MRI, const TargetInstrInfo &TII, const RegisterBankInfo &RBI, MachineInstr &InsertPt, const TargetRegisterClass &RegClass, MachineOperand &RegMO)
Constrain the Register operand OpIdx, so that it is now constrained to the TargetRegisterClass passed...
bool CCAssignFn(unsigned ValNo, MVT ValVT, MVT LocVT, CCValAssign::LocInfo LocInfo, ISD::ArgFlagsTy ArgFlags, Type *OrigTy, CCState &State)
CCAssignFn - This function assigns a location for Val, updating State to reflect the change.
static std::array< MachineOperand, 2 > predOps(ARMCC::CondCodes Pred, unsigned PredReg=0)
Get the operands corresponding to the given Pred value.
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
ArrayRef(const T &OneElt) -> ArrayRef< T >
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
unsigned gettBLXrOpcode(const MachineFunction &MF)
unsigned getBLXOpcode(const MachineFunction &MF)
LLVM_ABI Align inferAlignFromPtrInfo(MachineFunction &MF, const MachinePointerInfo &MPO)
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
SmallVector< Register, 4 > Regs
SmallVector< ISD::ArgFlagsTy, 4 > Flags
Base class for ValueHandlers used for arguments coming into the current function, or for return value...
Base class for ValueHandlers used for arguments passed to a function call, or for return values.
uint64_t StackSize
The size of the currently allocated portion of the stack.
MachineIRBuilder & MIRBuilder
MachineRegisterInfo & MRI
bool isSimple() const
Test if the given EVT is simple (as opposed to being extended).
bool isFloatingPoint() const
Return true if this is a FP or a vector FP type.
MVT getSimpleVT() const
Return the SimpleValueType held in the specified simple EVT.
bool isVector() const
Return true if this is a vector value type.
bool isInteger() const
Return true if this is an integer or a vector integer type.
This class contains a discriminated union of information about pointers in memory operands,...
LLVM_ABI unsigned getAddrSpace() const
Return the LLVM IR address space number that this pointer points into.
static LLVM_ABI MachinePointerInfo getStack(MachineFunction &MF, int64_t Offset, uint8_t ID=0)
Stack pointer relative access.
static LLVM_ABI MachinePointerInfo getFixedStack(MachineFunction &MF, int FI, int64_t Offset=0)
Return a MachinePointerInfo record that refers to the specified FrameIndex.