2010-04-16 23:04:22 +00:00
|
|
|
//===-- X86SelectionDAGInfo.h - X86 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 X86 subclass for TargetSelectionDAGInfo.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef X86SELECTIONDAGINFO_H
|
|
|
|
#define X86SELECTIONDAGINFO_H
|
|
|
|
|
|
|
|
#include "llvm/Target/TargetSelectionDAGInfo.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2010-05-11 17:31:57 +00:00
|
|
|
class X86TargetLowering;
|
|
|
|
class X86TargetMachine;
|
|
|
|
class X86Subtarget;
|
|
|
|
|
2010-04-16 23:04:22 +00:00
|
|
|
class X86SelectionDAGInfo : public TargetSelectionDAGInfo {
|
|
|
|
public:
|
2014-06-06 23:26:43 +00:00
|
|
|
explicit X86SelectionDAGInfo(const DataLayout &DL);
|
2010-04-16 23:04:22 +00:00
|
|
|
~X86SelectionDAGInfo();
|
2010-05-11 17:31:57 +00:00
|
|
|
|
2013-05-25 02:42:55 +00:00
|
|
|
SDValue EmitTargetCodeForMemset(SelectionDAG &DAG, SDLoc dl,
|
2010-05-11 17:31:57 +00:00
|
|
|
SDValue Chain,
|
|
|
|
SDValue Dst, SDValue Src,
|
|
|
|
SDValue Size, unsigned Align,
|
|
|
|
bool isVolatile,
|
2014-03-09 07:44:38 +00:00
|
|
|
MachinePointerInfo DstPtrInfo) const override;
|
2010-05-11 17:31:57 +00:00
|
|
|
|
2013-05-25 02:42:55 +00:00
|
|
|
SDValue EmitTargetCodeForMemcpy(SelectionDAG &DAG, SDLoc dl,
|
2010-05-11 17:31:57 +00:00
|
|
|
SDValue Chain,
|
|
|
|
SDValue Dst, SDValue Src,
|
|
|
|
SDValue Size, unsigned Align,
|
|
|
|
bool isVolatile, bool AlwaysInline,
|
2010-09-21 05:40:29 +00:00
|
|
|
MachinePointerInfo DstPtrInfo,
|
2014-03-09 07:44:38 +00:00
|
|
|
MachinePointerInfo SrcPtrInfo) const override;
|
2010-04-16 23:04:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|