LLVM API Documentation
00001 //===-- AArch64SelectionDAGInfo.h - AArch64 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 AArch64 subclass for TargetSelectionDAGInfo. 00011 // 00012 //===----------------------------------------------------------------------===// 00013 00014 #ifndef LLVM_LIB_TARGET_AARCH64_AARCH64SELECTIONDAGINFO_H 00015 #define LLVM_LIB_TARGET_AARCH64_AARCH64SELECTIONDAGINFO_H 00016 00017 #include "llvm/Target/TargetSelectionDAGInfo.h" 00018 00019 namespace llvm { 00020 00021 class AArch64SelectionDAGInfo : public TargetSelectionDAGInfo { 00022 public: 00023 explicit AArch64SelectionDAGInfo(const DataLayout *DL); 00024 ~AArch64SelectionDAGInfo(); 00025 00026 SDValue EmitTargetCodeForMemset(SelectionDAG &DAG, SDLoc dl, SDValue Chain, 00027 SDValue Dst, SDValue Src, SDValue Size, 00028 unsigned Align, bool isVolatile, 00029 MachinePointerInfo DstPtrInfo) const override; 00030 }; 00031 } 00032 00033 #endif