2014-05-24 20:50:23 +08:00
|
|
|
//===-- AArch64SelectionDAGInfo.h - AArch64 SelectionDAG Info ---*- C++ -*-===//
|
2014-03-29 18:18:08 +08:00
|
|
|
//
|
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
|
2014-03-29 18:18:08 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2016-01-28 00:32:26 +08:00
|
|
|
// This file defines the AArch64 subclass for SelectionDAGTargetInfo.
|
2014-03-29 18:18:08 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-14 00:26:38 +08:00
|
|
|
#ifndef LLVM_LIB_TARGET_AARCH64_AARCH64SELECTIONDAGINFO_H
|
|
|
|
#define LLVM_LIB_TARGET_AARCH64_AARCH64SELECTIONDAGINFO_H
|
2014-03-29 18:18:08 +08:00
|
|
|
|
2016-01-28 00:32:26 +08:00
|
|
|
#include "llvm/CodeGen/SelectionDAGTargetInfo.h"
|
2014-03-29 18:18:08 +08:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2016-01-28 00:32:26 +08:00
|
|
|
class AArch64SelectionDAGInfo : public SelectionDAGTargetInfo {
|
2014-03-29 18:18:08 +08:00
|
|
|
public:
|
2016-06-12 23:39:02 +08:00
|
|
|
SDValue EmitTargetCodeForMemset(SelectionDAG &DAG, const SDLoc &dl,
|
|
|
|
SDValue Chain, SDValue Dst, SDValue Src,
|
2020-06-30 20:46:05 +08:00
|
|
|
SDValue Size, Align Alignment,
|
|
|
|
bool isVolatile,
|
2014-03-30 15:25:18 +08:00
|
|
|
MachinePointerInfo DstPtrInfo) const override;
|
2019-07-18 03:24:02 +08:00
|
|
|
SDValue EmitTargetCodeForSetTag(SelectionDAG &DAG, const SDLoc &dl,
|
|
|
|
SDValue Chain, SDValue Op1, SDValue Op2,
|
|
|
|
MachinePointerInfo DstPtrInfo,
|
|
|
|
bool ZeroData) const override;
|
2016-04-28 01:27:16 +08:00
|
|
|
bool generateFMAsInMachineCombiner(CodeGenOpt::Level OptLevel) const override;
|
2014-03-29 18:18:08 +08:00
|
|
|
};
|
2015-06-23 17:49:53 +08:00
|
|
|
}
|
2014-03-29 18:18:08 +08:00
|
|
|
|
|
|
|
#endif
|