Path: blob/main/contrib/llvm-project/llvm/lib/Target/DirectX/MCTargetDesc/DirectXMCTargetDesc.h
35294 views
//===- DirectXMCTargetDesc.h - DirectX Target Interface ---------*- C++ -*-===//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/// \file9/// This file contains DirectX target interface.10///11//===----------------------------------------------------------------------===//1213#ifndef LLVM_DIRECTX_DIRECTXMCTARGETDESC_H14#define LLVM_DIRECTX_DIRECTXMCTARGETDESC_H1516// Include DirectX stub register info17#define GET_REGINFO_ENUM18#include "DirectXGenRegisterInfo.inc"1920// Include DirectX stub instruction info21#define GET_INSTRINFO_ENUM22#define GET_INSTRINFO_MC_HELPER_DECLS23#include "DirectXGenInstrInfo.inc"2425#define GET_SUBTARGETINFO_ENUM26#include "DirectXGenSubtargetInfo.inc"2728#endif // LLVM_DIRECTX_DIRECTXMCTARGETDESC_H293031