LLVM 20.0.0git
WebAssemblyISelLowering.h
Go to the documentation of this file.
1//- WebAssemblyISelLowering.h - WebAssembly 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/// \file
10/// This file defines the interfaces that WebAssembly uses to lower LLVM
11/// code into a selection DAG.
12///
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_LIB_TARGET_WEBASSEMBLY_WEBASSEMBLYISELLOWERING_H
16#define LLVM_LIB_TARGET_WEBASSEMBLY_WEBASSEMBLYISELLOWERING_H
17
19
20namespace llvm {
21
22namespace WebAssemblyISD {
23
24enum NodeType : unsigned {
26#define HANDLE_NODETYPE(NODE) NODE,
27#include "WebAssemblyISD.def"
28#undef HANDLE_NODETYPE
29};
30
31} // end namespace WebAssemblyISD
32
33class WebAssemblySubtarget;
34
36public:
38 const WebAssemblySubtarget &STI);
39
40 MVT getPointerTy(const DataLayout &DL, uint32_t AS = 0) const override;
41 MVT getPointerMemTy(const DataLayout &DL, uint32_t AS = 0) const override;
42
43private:
44 /// Keep a pointer to the WebAssemblySubtarget around so that we can make the
45 /// right decision when generating code for different targets.
46 const WebAssemblySubtarget *Subtarget;
47
48 AtomicExpansionKind shouldExpandAtomicRMWInIR(AtomicRMWInst *) const override;
49 bool shouldScalarizeBinop(SDValue VecOp) const override;
50 FastISel *createFastISel(FunctionLoweringInfo &FuncInfo,
51 const TargetLibraryInfo *LibInfo) const override;
52 MVT getScalarShiftAmountTy(const DataLayout &DL, EVT) const override;
54 EmitInstrWithCustomInserter(MachineInstr &MI,
55 MachineBasicBlock *MBB) const override;
56 const char *getTargetNodeName(unsigned Opcode) const override;
57 std::pair<unsigned, const TargetRegisterClass *>
58 getRegForInlineAsmConstraint(const TargetRegisterInfo *TRI,
59 StringRef Constraint, MVT VT) const override;
60 bool isCheapToSpeculateCttz(Type *Ty) const override;
61 bool isCheapToSpeculateCtlz(Type *Ty) const override;
62 bool isLegalAddressingMode(const DataLayout &DL, const AddrMode &AM, Type *Ty,
63 unsigned AS,
64 Instruction *I = nullptr) const override;
65 bool allowsMisalignedMemoryAccesses(EVT, unsigned AddrSpace, Align Alignment,
67 unsigned *Fast) const override;
68 bool isIntDivCheap(EVT VT, AttributeList Attr) const override;
69 bool isVectorLoadExtDesirable(SDValue ExtVal) const override;
70 bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const override;
71 EVT getSetCCResultType(const DataLayout &DL, LLVMContext &Context,
72 EVT VT) const override;
73 bool getTgtMemIntrinsic(IntrinsicInfo &Info, const CallInst &I,
75 unsigned Intrinsic) const override;
76
77 void computeKnownBitsForTargetNode(const SDValue Op, KnownBits &Known,
78 const APInt &DemandedElts,
79 const SelectionDAG &DAG,
80 unsigned Depth) const override;
81
83 getPreferredVectorAction(MVT VT) const override;
84
85 SDValue LowerCall(CallLoweringInfo &CLI,
86 SmallVectorImpl<SDValue> &InVals) const override;
87 bool CanLowerReturn(CallingConv::ID CallConv, MachineFunction &MF,
88 bool isVarArg,
90 LLVMContext &Context,
91 const Type *RetTy) const override;
92 SDValue LowerReturn(SDValue Chain, CallingConv::ID CallConv, bool isVarArg,
94 const SmallVectorImpl<SDValue> &OutVals, const SDLoc &dl,
95 SelectionDAG &DAG) const override;
96 SDValue LowerFormalArguments(SDValue Chain, CallingConv::ID CallConv,
97 bool IsVarArg,
99 const SDLoc &DL, SelectionDAG &DAG,
100 SmallVectorImpl<SDValue> &InVals) const override;
101
102 void ReplaceNodeResults(SDNode *N, SmallVectorImpl<SDValue> &Results,
103 SelectionDAG &DAG) const override;
104
105 bool
106 shouldSimplifyDemandedVectorElts(SDValue Op,
107 const TargetLoweringOpt &TLO) const override;
108
109 // Custom lowering hooks.
110 SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const override;
111 SDValue LowerFrameIndex(SDValue Op, SelectionDAG &DAG) const;
112 SDValue LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) const;
113 SDValue LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const;
114 SDValue LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const;
115 SDValue LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const;
116 SDValue LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const;
117 SDValue LowerBR_JT(SDValue Op, SelectionDAG &DAG) const;
118 SDValue LowerJumpTable(SDValue Op, SelectionDAG &DAG) const;
119 SDValue LowerVASTART(SDValue Op, SelectionDAG &DAG) const;
120 SDValue LowerCopyToReg(SDValue Op, SelectionDAG &DAG) const;
121 SDValue LowerIntrinsic(SDValue Op, SelectionDAG &DAG) const;
122 SDValue LowerSIGN_EXTEND_INREG(SDValue Op, SelectionDAG &DAG) const;
123 SDValue LowerEXTEND_VECTOR_INREG(SDValue Op, SelectionDAG &DAG) const;
124 SDValue LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const;
125 SDValue LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const;
126 SDValue LowerSETCC(SDValue Op, SelectionDAG &DAG) const;
127 SDValue LowerAccessVectorElement(SDValue Op, SelectionDAG &DAG) const;
128 SDValue LowerShift(SDValue Op, SelectionDAG &DAG) const;
129 SDValue LowerFP_TO_INT_SAT(SDValue Op, SelectionDAG &DAG) const;
130 SDValue LowerLoad(SDValue Op, SelectionDAG &DAG) const;
131 SDValue LowerStore(SDValue Op, SelectionDAG &DAG) const;
132 SDValue LowerMUL_LOHI(SDValue Op, SelectionDAG &DAG) const;
133 SDValue Replace128Op(SDNode *N, SelectionDAG &DAG) const;
134
135 // Custom DAG combine hooks
136 SDValue
137 PerformDAGCombine(SDNode *N,
138 TargetLowering::DAGCombinerInfo &DCI) const override;
139};
140
141namespace WebAssembly {
143 const TargetLibraryInfo *libInfo);
144} // end namespace WebAssembly
145
146} // end namespace llvm
147
148#endif
MachineBasicBlock & MBB
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
Function Alias Analysis Results
Analysis containing CSE Info
Definition: CSEInfo.cpp:27
return RetTy
IRTranslator LLVM IR MI
#define I(x, y, z)
Definition: MD5.cpp:58
unsigned const TargetRegisterInfo * TRI
This file describes how to lower LLVM code to machine code.
Class for arbitrary precision integers.
Definition: APInt.h:78
an instruction that atomically reads a memory location, combines it with another value,...
Definition: Instructions.h:704
This class represents a function call, abstracting a target machine's calling convention.
This class represents an Operation in the Expression.
A parsed version of the target data layout string in and methods for querying it.
Definition: DataLayout.h:63
This is a fast-path instruction selection class that generates poor code and doesn't support illegal ...
Definition: FastISel.h:66
FunctionLoweringInfo - This contains information that is global to a function that is used when lower...
This is an important class for using LLVM in a threaded context.
Definition: LLVMContext.h:67
Machine Value Type.
Representation of each machine instruction.
Definition: MachineInstr.h:69
Flags
Flags values. These may be or'd together.
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...
Definition: SelectionDAG.h:228
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
Definition: SmallVector.h:573
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:51
Provides information about what library functions are available for the current target.
LegalizeTypeAction
This enum indicates whether a types are legal for a target, and if not, what action should be used to...
AtomicExpansionKind
Enum that specifies what an atomic load/AtomicRMWInst is expanded to, if at all.
This class defines information used to lower LLVM code to legal SelectionDAG operators that the targe...
Primary interface to the complete machine description for the target machine.
Definition: TargetMachine.h:77
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.
Definition: Type.h:45
MVT getPointerTy(const DataLayout &DL, uint32_t AS=0) const override
Return the pointer type for the given address space, defaults to the pointer type from the data layou...
MVT getPointerMemTy(const DataLayout &DL, uint32_t AS=0) const override
Return the in-memory pointer type for the given address space, defaults to the pointer type from the ...
@ Fast
Attempts to make calls as fast as possible (e.g.
Definition: CallingConv.h:41
@ BUILTIN_OP_END
BUILTIN_OP_END - This must be the last enum value in this list.
Definition: ISDOpcodes.h:1494
FastISel * createFastISel(FunctionLoweringInfo &funcInfo, const TargetLibraryInfo *libInfo)
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
#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.
A convenience struct that encapsulates a DAG, and two SDValues for returning information from TargetL...