Add gfx950 mfma instructions to ROCDL dialect (#123361)
[llvm-project.git] / llvm / lib / Target / XCore / XCoreSelectionDAGInfo.h
blob2abf526779785d5f4b1d9bd05507ace1341f2adc
1 //===-- XCoreSelectionDAGInfo.h - XCore SelectionDAG Info -------*- 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 XCore subclass for SelectionDAGTargetInfo.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_LIB_TARGET_XCORE_XCORESELECTIONDAGINFO_H
14 #define LLVM_LIB_TARGET_XCORE_XCORESELECTIONDAGINFO_H
16 #include "llvm/CodeGen/SelectionDAGTargetInfo.h"
18 namespace llvm {
20 class XCoreSelectionDAGInfo : public SelectionDAGTargetInfo {
21 public:
22 SDValue EmitTargetCodeForMemcpy(SelectionDAG &DAG, const SDLoc &dl,
23 SDValue Chain, SDValue Op1, SDValue Op2,
24 SDValue Op3, Align Alignment, bool isVolatile,
25 bool AlwaysInline,
26 MachinePointerInfo DstPtrInfo,
27 MachinePointerInfo SrcPtrInfo) const override;
32 #endif