LLVM API Documentation
00001 //===-- HexagonSelectionDAGInfo.h - Hexagon SelectionDAG Info ---*- C++ -*-===// 00002 // 00003 // The LLVM Compiler Infrastructure 00004 // 00005 // This file is distributed under the University of Illinois Open Source 00006 // License. See LICENSE.TXT for details. 00007 // 00008 //===----------------------------------------------------------------------===// 00009 // 00010 // This file defines the Hexagon subclass for TargetSelectionDAGInfo. 00011 // 00012 //===----------------------------------------------------------------------===// 00013 00014 #ifndef LLVM_LIB_TARGET_HEXAGON_HEXAGONSELECTIONDAGINFO_H 00015 #define LLVM_LIB_TARGET_HEXAGON_HEXAGONSELECTIONDAGINFO_H 00016 00017 #include "llvm/Target/TargetSelectionDAGInfo.h" 00018 00019 namespace llvm { 00020 00021 class HexagonSelectionDAGInfo : public TargetSelectionDAGInfo { 00022 public: 00023 explicit HexagonSelectionDAGInfo(const DataLayout &DL); 00024 ~HexagonSelectionDAGInfo(); 00025 00026 SDValue EmitTargetCodeForMemcpy(SelectionDAG &DAG, SDLoc dl, 00027 SDValue Chain, 00028 SDValue Dst, SDValue Src, 00029 SDValue Size, unsigned Align, 00030 bool isVolatile, bool AlwaysInline, 00031 MachinePointerInfo DstPtrInfo, 00032 MachinePointerInfo SrcPtrInfo) const override; 00033 }; 00034 00035 } 00036 00037 #endif