Path: blob/main/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiSelectionDAGInfo.cpp
35271 views
//===-- LanaiSelectionDAGInfo.cpp - Lanai SelectionDAG Info -------------===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//7//8// This file implements the LanaiSelectionDAGInfo class.9//10//===----------------------------------------------------------------------===//1112#include "LanaiSelectionDAGInfo.h"1314#include "LanaiTargetMachine.h"1516#define DEBUG_TYPE "lanai-selectiondag-info"1718namespace llvm {1920SDValue LanaiSelectionDAGInfo::EmitTargetCodeForMemcpy(21SelectionDAG & /*DAG*/, const SDLoc & /*dl*/, SDValue /*Chain*/,22SDValue /*Dst*/, SDValue /*Src*/, SDValue Size, Align /*Alignment*/,23bool /*isVolatile*/, bool /*AlwaysInline*/,24MachinePointerInfo /*DstPtrInfo*/,25MachinePointerInfo /*SrcPtrInfo*/) const {26ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);27if (!ConstantSize)28return SDValue();2930return SDValue();31}3233} // namespace llvm343536