//===--- HexagonHazardRecognizer.h - Hexagon Post RA Hazard Recognizer ----===// // // 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 the hazard recognizer for scheduling on Hexagon. //===----------------------------------------------------------------------===// #ifndef LLVM_LIB_TARGET_HEXAGON_HEXAGONPROFITRECOGNIZER_H #define LLVM_LIB_TARGET_HEXAGON_HEXAGONPROFITRECOGNIZER_H #include "HexagonInstrInfo.h" #include "HexagonSubtarget.h" #include "llvm/ADT/SmallSet.h" #include "llvm/CodeGen/DFAPacketizer.h" #include "llvm/CodeGen/ScheduleHazardRecognizer.h" namespace llvm { class HexagonHazardRecognizer : public ScheduleHazardRecognizer { … }; } // end namespace llvm #endif // LLVM_LIB_TARGET_HEXAGON_HEXAGONPROFITRECOGNIZER_H