brintos

brintos / llvm-project-archived public Read only

0
0
Text · 976 B · 86ca9ec Raw
30 lines · c
1//===- DXILResourceImplicitBindings.h --_____________-----------*- C++ -*-===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8//9// \file Assign register slots to resources without explicit binding.10//11//===----------------------------------------------------------------------===//12 13#ifndef LLVM_LIB_TARGET_DIRECTX_DXILRESOURCEIMPLICITBINDING_H14#define LLVM_LIB_TARGET_DIRECTX_DXILRESOURCEIMPLICITBINDING_H15 16#include "llvm/IR/PassManager.h"17#include "llvm/Pass.h"18 19namespace llvm {20 21class DXILResourceImplicitBinding22    : public PassInfoMixin<DXILResourceImplicitBinding> {23public:24  PreservedAnalyses run(Module &M, ModuleAnalysisManager &);25};26 27} // namespace llvm28 29#endif // LLVM_LIB_TARGET_DIRECTX_DXILRESOURCEIMPLICITBINDING_H30