LLVM 23.0.0git
BPFISelLowering.h
Go to the documentation of this file.
1//===-- BPFISelLowering.h - BPF DAG Lowering Interface ----------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file defines the interfaces that BPF uses to lower LLVM code into a
10// selection DAG.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_LIB_TARGET_BPF_BPFISELLOWERING_H
15#define LLVM_LIB_TARGET_BPF_BPFISELLOWERING_H
16
17#include "BPF.h"
20
21namespace llvm {
22class BPFSubtarget;
23
25public:
26 explicit BPFTargetLowering(const TargetMachine &TM, const BPFSubtarget &STI);
27
28 // Provide custom lowering hooks for some operations.
29 SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const override;
30
31 // This method decides whether folding a constant offset
32 // with the given GlobalAddress is legal.
33 bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const override;
34
35 bool allowsMisalignedMemoryAccesses(EVT VT, unsigned, Align,
37 unsigned *) const override;
38
40 getConstraintType(StringRef Constraint) const override;
41
42 std::pair<unsigned, const TargetRegisterClass *>
44 StringRef Constraint, MVT VT) const override;
45
48 MachineBasicBlock *BB) const override;
49
50 bool getHasAlu32() const { return HasAlu32; }
51 bool getHasJmp32() const { return HasJmp32; }
52 bool getHasJmpExt() const { return HasJmpExt; }
53
55 EVT VT) const override;
56
57 // Exception handling support.
59 return BPF::R0;
60 }
62 return BPF::R0;
63 }
64
65 MVT getScalarShiftAmountTy(const DataLayout &, EVT) const override;
66
67 unsigned getJumpTableEncoding() const override;
68
69private:
70 // Control Instruction Selection Features
71 bool HasAlu32;
72 bool HasJmp32;
73 bool HasJmpExt;
74 bool HasMovsx;
75
76 // Allows Misalignment
77 bool AllowsMisalignedMemAccess;
78
79 SDValue LowerSDIVSREM(SDValue Op, SelectionDAG &DAG) const;
86 SDValue LowerConstantPool(SDValue Op, SelectionDAG &DAG) const;
87 SDValue LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const;
88 SDValue LowerTRAP(SDValue Op, SelectionDAG &DAG) const;
89 SDValue LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const;
90 SDValue LowerJumpTable(SDValue Op, SelectionDAG &DAG) const;
91
92 template <class NodeTy>
93 SDValue getAddr(NodeTy *N, SelectionDAG &DAG, unsigned Flags = 0) const;
94
95 // Lower the result values of a call, copying them out of physregs into vregs
97 CallingConv::ID CallConv, bool IsVarArg,
99 const SDLoc &DL, SelectionDAG &DAG,
100 SmallVectorImpl<SDValue> &InVals) const;
101
102 // Lower a call into CALLSEQ_START - BPFISD:CALL - CALLSEQ_END chain
104 SmallVectorImpl<SDValue> &InVals) const override;
105
106 // Lower incoming arguments, copy physregs into vregs
107 SDValue LowerFormalArguments(SDValue Chain, CallingConv::ID CallConv,
108 bool IsVarArg,
110 const SDLoc &DL, SelectionDAG &DAG,
111 SmallVectorImpl<SDValue> &InVals) const override;
112
113 SDValue LowerReturn(SDValue Chain, CallingConv::ID CallConv, bool IsVarArg,
115 const SmallVectorImpl<SDValue> &OutVals, const SDLoc &DL,
116 SelectionDAG &DAG) const override;
117
118 void ReplaceNodeResults(SDNode *N, SmallVectorImpl<SDValue> &Results,
119 SelectionDAG &DAG) const override;
120
121 EVT getOptimalMemOpType(LLVMContext &Context, const MemOp &Op,
122 const AttributeList &FuncAttributes) const override {
123 return Op.size() >= 8 ? MVT::i64 : MVT::i32;
124 }
125
126 bool isIntDivCheap(EVT VT, AttributeList Attr) const override {
127 return false;
128 }
129
130 bool shouldConvertConstantLoadToIntImm(const APInt &Imm,
131 Type *Ty) const override {
132 return true;
133 }
134
135 // Prevent reducing load width during SelectionDag phase.
136 // Otherwise, we may transform the following
137 // ctx = ctx + reloc_offset
138 // ... (*(u32 *)ctx) & 0x8000...
139 // to
140 // ctx = ctx + reloc_offset
141 // ... (*(u8 *)(ctx + 1)) & 0x80 ...
142 // which will be rejected by the verifier.
143 bool
144 shouldReduceLoadWidth(SDNode *Load, ISD::LoadExtType ExtTy, EVT NewVT,
145 std::optional<unsigned> ByteOffset) const override {
146 return false;
147 }
148
149 bool isLegalAddressingMode(const DataLayout &DL, const AddrMode &AM,
150 Type *Ty, unsigned AS,
151 Instruction *I = nullptr) const override;
152
153 // isTruncateFree - Return true if it's free to truncate a value of
154 // type Ty1 to type Ty2. e.g. On BPF at alu32 mode, it's free to truncate
155 // a i64 value in register R1 to i32 by referencing its sub-register W1.
156 bool isTruncateFree(Type *Ty1, Type *Ty2) const override;
157 bool isTruncateFree(EVT VT1, EVT VT2) const override;
158
159 // For 32bit ALU result zext to 64bit is free.
160 bool isZExtFree(Type *Ty1, Type *Ty2) const override;
161 bool isZExtFree(EVT VT1, EVT VT2) const override;
162 bool isZExtFree(SDValue Val, EVT VT2) const override;
163
164 unsigned EmitSubregExt(MachineInstr &MI, MachineBasicBlock *BB, unsigned Reg,
165 bool isSigned) const;
166
167 MachineBasicBlock * EmitInstrWithCustomInserterMemcpy(MachineInstr &MI,
168 MachineBasicBlock *BB)
169 const;
170 MachineBasicBlock *
171 EmitInstrWithCustomInserterLDimm64(MachineInstr &MI,
172 MachineBasicBlock *BB) const;
173
174 bool CanLowerReturn(CallingConv::ID CallConv, MachineFunction &MF,
175 bool IsVarArg,
176 const SmallVectorImpl<ISD::OutputArg> &Outs,
177 LLVMContext &Context, const Type *RetTy) const override;
178};
179}
180
181#endif
return SDValue()
static SDValue LowerATOMIC_FENCE(SDValue Op, SelectionDAG &DAG, const ARMSubtarget *Subtarget)
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
Function Alias Analysis Results
static bool isSigned(unsigned Opcode)
IRTranslator LLVM IR MI
#define I(x, y, z)
Definition MD5.cpp:57
Register Reg
Register const TargetRegisterInfo * TRI
static SDValue LowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG, const SparcSubtarget *Subtarget)
static SDValue LowerBR_CC(SDValue Op, SelectionDAG &DAG, const SparcTargetLowering &TLI, bool hasHardQuad, bool isV9, bool is64Bit)
static SDValue LowerATOMIC_LOAD_STORE(SDValue Op, SelectionDAG &DAG)
static SDValue LowerSELECT_CC(SDValue Op, SelectionDAG &DAG, const SparcTargetLowering &TLI, bool hasHardQuad, bool isV9, bool is64Bit)
This file describes how to lower LLVM code to machine code.
static SDValue LowerShiftParts(SDValue Op, SelectionDAG &DAG)
Lower SRA_PARTS and friends, which return two i32 values and take a 2 x i32 value to shift plus a shi...
static SDValue LowerCallResult(SDValue Chain, SDValue InGlue, const SmallVectorImpl< CCValAssign > &RVLocs, const SDLoc &dl, SelectionDAG &DAG, SmallVectorImpl< SDValue > &InVals)
LowerCallResult - Lower the result values of a call into the appropriate copies out of appropriate ph...
BPFTargetLowering::ConstraintType getConstraintType(StringRef Constraint) const override
Given a constraint, return the type of constraint it is for this target.
Register getExceptionSelectorRegister(const Constant *) const override
If a physical register, this returns the register that receives the exception typeid on entry to a la...
unsigned getJumpTableEncoding() const override
Return the entry encoding for a jump table in the current function.
bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const override
Return true if folding a constant offset with the given GlobalAddress is legal.
bool allowsMisalignedMemoryAccesses(EVT VT, unsigned, Align, MachineMemOperand::Flags, unsigned *) const override
Determine if the target supports unaligned memory accesses.
EVT getSetCCResultType(const DataLayout &DL, LLVMContext &Context, EVT VT) const override
Return the ValueType of the result of SETCC operations.
Register getExceptionPointerRegister(const Constant *) const override
If a physical register, this returns the register that receives the exception address on entry to an ...
BPFTargetLowering(const TargetMachine &TM, const BPFSubtarget &STI)
SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const override
This callback is invoked for operations that are unsupported by the target, which are registered to u...
MachineBasicBlock * EmitInstrWithCustomInserter(MachineInstr &MI, MachineBasicBlock *BB) const override
This method should be implemented by targets that mark instructions with the 'usesCustomInserter' fla...
MVT getScalarShiftAmountTy(const DataLayout &, EVT) const override
Return the type to use for a scalar shift opcode, given the shifted amount type.
std::pair< unsigned, const TargetRegisterClass * > getRegForInlineAsmConstraint(const TargetRegisterInfo *TRI, StringRef Constraint, MVT VT) const override
Given a physical register constraint (e.g.
This is an important base class in LLVM.
Definition Constant.h:43
A parsed version of the target data layout string in and methods for querying it.
Definition DataLayout.h:64
This is an important class for using LLVM in a threaded context.
Definition LLVMContext.h:68
Machine Value Type.
Representation of each machine instruction.
Flags
Flags values. These may be or'd together.
Wrapper class representing virtual and physical registers.
Definition Register.h:20
Wrapper class for IR location info (IR ordering and DebugLoc) to be passed into SDNode creation funct...
Represents one node in the SelectionDAG.
Unlike LLVM values, Selection DAG nodes may return multiple values as the result of a computation.
This is used to represent a portion of an LLVM function in a low-level Data Dependence DAG representa...
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
TargetLowering(const TargetLowering &)=delete
Primary interface to the complete machine description for the target machine.
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition CallingConv.h:24
LoadExtType
LoadExtType enum - This enum defines the three variants of LOADEXT (load with extension).
This is an optimization pass for GlobalISel generic memory operations.
DWARFExpression::Operation Op
#define N
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition Alignment.h:39
Extended Value Type.
Definition ValueTypes.h:35
This represents an addressing mode of: BaseGV + BaseOffs + BaseReg + Scale*ScaleReg + ScalableOffset*...
This structure contains all information that is necessary for lowering calls.