2010-04-17 07:04:22 +08:00
|
|
|
//===-- XCoreSelectionDAGInfo.h - XCore SelectionDAG Info -------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines the XCore subclass for TargetSelectionDAGInfo.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-14 00:26:38 +08:00
|
|
|
#ifndef LLVM_LIB_TARGET_XCORE_XCORESELECTIONDAGINFO_H
|
|
|
|
#define LLVM_LIB_TARGET_XCORE_XCORESELECTIONDAGINFO_H
|
2010-04-17 07:04:22 +08:00
|
|
|
|
|
|
|
#include "llvm/Target/TargetSelectionDAGInfo.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2010-05-12 01:31:57 +08:00
|
|
|
class XCoreTargetMachine;
|
|
|
|
|
2010-04-17 07:04:22 +08:00
|
|
|
class XCoreSelectionDAGInfo : public TargetSelectionDAGInfo {
|
|
|
|
public:
|
2014-02-27 21:39:07 +08:00
|
|
|
|
2014-04-29 15:57:00 +08:00
|
|
|
SDValue
|
2014-02-27 21:39:07 +08:00
|
|
|
EmitTargetCodeForMemcpy(SelectionDAG &DAG, SDLoc dl,
|
|
|
|
SDValue Chain,
|
|
|
|
SDValue Op1, SDValue Op2,
|
|
|
|
SDValue Op3, unsigned Align, bool isVolatile,
|
|
|
|
bool AlwaysInline,
|
|
|
|
MachinePointerInfo DstPtrInfo,
|
2014-04-29 15:57:00 +08:00
|
|
|
MachinePointerInfo SrcPtrInfo) const override;
|
2010-04-17 07:04:22 +08:00
|
|
|
};
|
|
|
|
|
2015-06-23 17:49:53 +08:00
|
|
|
}
|
2010-04-17 07:04:22 +08:00
|
|
|
|
|
|
|
#endif
|