2016-03-28 21:09:54 +08:00
|
|
|
//===-- LanaiSelectionDAGInfo.h - Lanai SelectionDAG Info -----*- C++ -*-===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2016-03-28 21:09:54 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines the Lanai subclass for TargetSelectionDAGInfo.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_LIB_TARGET_LANAI_LANAISELECTIONDAGINFO_H
|
|
|
|
#define LLVM_LIB_TARGET_LANAI_LANAISELECTIONDAGINFO_H
|
|
|
|
|
|
|
|
#include "llvm/CodeGen/SelectionDAGTargetInfo.h"
|
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class LanaiSelectionDAGInfo : public SelectionDAGTargetInfo {
|
|
|
|
public:
|
|
|
|
LanaiSelectionDAGInfo() = default;
|
|
|
|
|
2016-06-12 23:39:02 +08:00
|
|
|
SDValue EmitTargetCodeForMemcpy(SelectionDAG &DAG, const SDLoc &dl,
|
|
|
|
SDValue Chain, SDValue Dst, SDValue Src,
|
2020-06-30 21:12:31 +08:00
|
|
|
SDValue Size, Align Alignment,
|
|
|
|
bool isVolatile, bool AlwaysInline,
|
2016-03-28 21:09:54 +08:00
|
|
|
MachinePointerInfo DstPtrInfo,
|
|
|
|
MachinePointerInfo SrcPtrInfo) const override;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif // LLVM_LIB_TARGET_LANAI_LANAISELECTIONDAGINFO_H
|