2012-02-18 12:03:15 +00:00
|
|
|
//===-- HexagonSelectionDAGInfo.h - Hexagon SelectionDAG Info ---*- C++ -*-===//
|
2011-12-12 21:14:40 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2016-01-27 16:32:26 +00:00
|
|
|
// This file defines the Hexagon subclass for SelectionDAGTargetInfo.
|
2011-12-12 21:14:40 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#ifndef LLVM_LIB_TARGET_HEXAGON_HEXAGONSELECTIONDAGINFO_H
|
|
|
|
#define LLVM_LIB_TARGET_HEXAGON_HEXAGONSELECTIONDAGINFO_H
|
2011-12-12 21:14:40 +00:00
|
|
|
|
2016-01-27 16:32:26 +00:00
|
|
|
#include "llvm/CodeGen/SelectionDAGTargetInfo.h"
|
2011-12-12 21:14:40 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2016-01-27 16:32:26 +00:00
|
|
|
class HexagonSelectionDAGInfo : public SelectionDAGTargetInfo {
|
2011-12-12 21:14:40 +00:00
|
|
|
public:
|
2016-08-19 15:13:54 +00:00
|
|
|
explicit HexagonSelectionDAGInfo() = default;
|
|
|
|
|
2016-06-12 15:39:02 +00:00
|
|
|
SDValue EmitTargetCodeForMemcpy(SelectionDAG &DAG, const SDLoc &dl,
|
|
|
|
SDValue Chain, SDValue Dst, SDValue Src,
|
|
|
|
SDValue Size, unsigned Align, bool isVolatile,
|
|
|
|
bool AlwaysInline,
|
2011-12-12 21:14:40 +00:00
|
|
|
MachinePointerInfo DstPtrInfo,
|
2014-04-29 07:58:16 +00:00
|
|
|
MachinePointerInfo SrcPtrInfo) const override;
|
2011-12-12 21:14:40 +00:00
|
|
|
};
|
|
|
|
|
2015-06-23 09:49:53 +00:00
|
|
|
}
|
2011-12-12 21:14:40 +00:00
|
|
|
|
|
|
|
#endif
|