Path: blob/main/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiSelectionDAGInfo.h
35271 views
//===-- LanaiSelectionDAGInfo.h - Lanai SelectionDAG Info -----*- C++ -*-===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//7//8// This file defines the Lanai subclass for TargetSelectionDAGInfo.9//10//===----------------------------------------------------------------------===//1112#ifndef LLVM_LIB_TARGET_LANAI_LANAISELECTIONDAGINFO_H13#define LLVM_LIB_TARGET_LANAI_LANAISELECTIONDAGINFO_H1415#include "llvm/CodeGen/SelectionDAGTargetInfo.h"16#include "llvm/Target/TargetMachine.h"1718namespace llvm {1920class LanaiSelectionDAGInfo : public SelectionDAGTargetInfo {21public:22LanaiSelectionDAGInfo() = default;2324SDValue EmitTargetCodeForMemcpy(SelectionDAG &DAG, const SDLoc &dl,25SDValue Chain, SDValue Dst, SDValue Src,26SDValue Size, Align Alignment,27bool isVolatile, bool AlwaysInline,28MachinePointerInfo DstPtrInfo,29MachinePointerInfo SrcPtrInfo) const override;30};3132} // namespace llvm3334#endif // LLVM_LIB_TARGET_LANAI_LANAISELECTIONDAGINFO_H353637