//===- CodeGenIntrinsics.h - Intrinsic Class Wrapper -----------*- 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 // //===----------------------------------------------------------------------===// // // This file defines a wrapper class for the 'Intrinsic' TableGen class. // //===----------------------------------------------------------------------===// #ifndef LLVM_UTILS_TABLEGEN_BASIC_CODEGENINTRINSICS_H #define LLVM_UTILS_TABLEGEN_BASIC_CODEGENINTRINSICS_H #include "SDNodeProperties.h" #include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/SmallVector.h" #include "llvm/Support/ModRef.h" #include <string> #include <tuple> #include <vector> namespace llvm { class Record; class RecordKeeper; // Global information needed to build intrinsics. struct CodeGenIntrinsicContext { … }; struct CodeGenIntrinsic { … }; class CodeGenIntrinsicTable { … }; // This class builds `CodeGenIntrinsic` on demand for a given Def. class CodeGenIntrinsicMap { … }; } // namespace llvm #endif // LLVM_UTILS_TABLEGEN_BASIC_CODEGENINTRINSICS_H