LLVM 19.0.0git
WebAssemblySelectionDAGInfo.cpp
Go to the documentation of this file.
1//===-- WebAssemblySelectionDAGInfo.cpp - WebAssembly SelectionDAG Info ---===//
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 implements the WebAssemblySelectionDAGInfo class.
11///
12//===----------------------------------------------------------------------===//
13
15using namespace llvm;
16
17#define DEBUG_TYPE "wasm-selectiondag-info"
18
20
22 SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, SDValue Dst, SDValue Src,
23 SDValue Size, Align Alignment, bool IsVolatile, bool AlwaysInline,
24 MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const {
26 if (!ST.hasBulkMemory())
27 return SDValue();
28
29 SDValue MemIdx = DAG.getConstant(0, DL, MVT::i32);
30 auto LenMVT = ST.hasAddr64() ? MVT::i64 : MVT::i32;
31 return DAG.getNode(WebAssemblyISD::MEMORY_COPY, DL, MVT::Other,
32 {Chain, MemIdx, MemIdx, Dst, Src,
33 DAG.getZExtOrTrunc(Size, DL, LenMVT)});
34}
35
37 SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, SDValue Op1, SDValue Op2,
38 SDValue Op3, Align Alignment, bool IsVolatile,
39 MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const {
40 return EmitTargetCodeForMemcpy(DAG, DL, Chain, Op1, Op2, Op3,
41 Alignment, IsVolatile, false,
42 DstPtrInfo, SrcPtrInfo);
43}
44
46 SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, SDValue Dst, SDValue Val,
47 SDValue Size, Align Alignment, bool IsVolatile, bool AlwaysInline,
48 MachinePointerInfo DstPtrInfo) const {
50 if (!ST.hasBulkMemory())
51 return SDValue();
52
53 SDValue MemIdx = DAG.getConstant(0, DL, MVT::i32);
54 auto LenMVT = ST.hasAddr64() ? MVT::i64 : MVT::i32;
55 // Only low byte matters for val argument, so anyext the i8
56 return DAG.getNode(WebAssemblyISD::MEMORY_FILL, DL, MVT::Other, Chain, MemIdx,
57 Dst, DAG.getAnyExtOrTrunc(Val, DL, MVT::i32),
58 DAG.getZExtOrTrunc(Size, DL, LenMVT));
59}
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
uint64_t Size
This file declares the WebAssembly-specific subclass of TargetMachine.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
Wrapper class for IR location info (IR ordering and DebugLoc) to be passed into SDNode creation funct...
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:225
SDValue getConstant(uint64_t Val, const SDLoc &DL, EVT VT, bool isTarget=false, bool isOpaque=false)
Create a ConstantSDNode wrapping a constant value.
SDValue getAnyExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT)
Convert Op, which must be of integer type, to the integer type VT, by either any-extending or truncat...
SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, ArrayRef< SDUse > Ops)
Gets or creates the specified node.
MachineFunction & getMachineFunction() const
Definition: SelectionDAG.h:468
SDValue getZExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT)
Convert Op, which must be of integer type, to the integer type VT, by either zero-extending or trunca...
SDValue EmitTargetCodeForMemcpy(SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Op1, SDValue Op2, SDValue Op3, Align Alignment, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const override
Emit target-specific code that performs a memcpy.
SDValue EmitTargetCodeForMemmove(SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Op1, SDValue Op2, SDValue Op3, Align Alignment, bool isVolatile, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const override
Emit target-specific code that performs a memmove.
SDValue EmitTargetCodeForMemset(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, SDValue Op1, SDValue Op2, SDValue Op3, Align Alignment, bool IsVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo) const override
Emit target-specific code that performs a memset.
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition: Alignment.h:39
This class contains a discriminated union of information about pointers in memory operands,...