//===-- SIISelLowering.h - SI DAG Lowering Interface ------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // /// \file /// SI DAG Lowering interface definition // //===----------------------------------------------------------------------===// #ifndef LLVM_LIB_TARGET_AMDGPU_SIISELLOWERING_H #define LLVM_LIB_TARGET_AMDGPU_SIISELLOWERING_H #include "AMDGPUISelLowering.h" #include "AMDGPUArgumentUsageInfo.h" #include "llvm/CodeGen/MachineFunction.h" namespace llvm { class GCNSubtarget; class SIMachineFunctionInfo; class SIRegisterInfo; namespace AMDGPU { struct ImageDimIntrinsicInfo; } class SITargetLowering final : public AMDGPUTargetLowering { … }; // Returns true if argument is a boolean value which is not serialized into // memory or argument and does not require v_cndmask_b32 to be deserialized. bool isBoolSGPR(SDValue V); } // End namespace llvm #endif