2014-05-24 12:50:23 +00:00
|
|
|
//===-- AArch64SelectionDAGInfo.h - AArch64 SelectionDAG Info ---*- C++ -*-===//
|
2014-03-29 10:18:08 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2014-05-24 12:50:23 +00:00
|
|
|
// This file defines the AArch64 subclass for TargetSelectionDAGInfo.
|
2014-03-29 10:18:08 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-05-24 12:50:23 +00:00
|
|
|
#ifndef AArch64SELECTIONDAGINFO_H
|
|
|
|
#define AArch64SELECTIONDAGINFO_H
|
2014-03-29 10:18:08 +00:00
|
|
|
|
|
|
|
#include "llvm/Target/TargetSelectionDAGInfo.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2014-05-24 12:50:23 +00:00
|
|
|
class AArch64SelectionDAGInfo : public TargetSelectionDAGInfo {
|
2014-03-29 10:18:08 +00:00
|
|
|
public:
|
2014-06-10 18:06:28 +00:00
|
|
|
explicit AArch64SelectionDAGInfo(const DataLayout *DL);
|
2014-05-24 12:50:23 +00:00
|
|
|
~AArch64SelectionDAGInfo();
|
2014-03-29 10:18:08 +00:00
|
|
|
|
2014-03-30 07:25:18 +00:00
|
|
|
SDValue EmitTargetCodeForMemset(SelectionDAG &DAG, SDLoc dl, SDValue Chain,
|
|
|
|
SDValue Dst, SDValue Src, SDValue Size,
|
|
|
|
unsigned Align, bool isVolatile,
|
|
|
|
MachinePointerInfo DstPtrInfo) const override;
|
2014-03-29 10:18:08 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|