//===--- ProfileList.h - ProfileList filter ---------------------*- 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 // //===----------------------------------------------------------------------===// // // User-provided filters include/exclude profile instrumentation in certain // functions. // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_BASIC_PROFILELIST_H #define LLVM_CLANG_BASIC_PROFILELIST_H #include "clang/Basic/CodeGenOptions.h" #include "clang/Basic/LLVM.h" #include "clang/Basic/SourceLocation.h" #include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/StringRef.h" #include <memory> #include <optional> namespace clang { class ProfileSpecialCaseList; class ProfileList { … }; } // namespace clang #endif