//===- llvm/Bitcode/BitcodeAnalyzer.h - Bitcode analyzer --------*- 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 header defines interfaces to analyze LLVM bitcode files/streams. // //===----------------------------------------------------------------------===// #ifndef LLVM_BITCODE_BITCODEANALYZER_H #define LLVM_BITCODE_BITCODEANALYZER_H #include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/StringRef.h" #include "llvm/Bitstream/BitstreamReader.h" #include "llvm/Support/Error.h" #include <map> #include <optional> #include <vector> namespace llvm { class raw_ostream; /// CurStreamTypeType - A type for CurStreamType enum CurStreamTypeType { … }; struct BCDumpOptions { … }; class BitcodeAnalyzer { … }; } // end namespace llvm #endif // LLVM_BITCODE_BITCODEANALYZER_H