//===- bolt/Passes/StackReachingUses.h --------------------------*- 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 // //===----------------------------------------------------------------------===// #ifndef BOLT_PASSES_STACKREACHINGUSES_H #define BOLT_PASSES_STACKREACHINGUSES_H #include "bolt/Passes/DataflowAnalysis.h" #include "llvm/Support/CommandLine.h" namespace opts { extern llvm::cl::opt<bool> TimeOpts; } namespace llvm { namespace bolt { class FrameAnalysis; struct FrameIndexEntry; class StackReachingUses : public InstrsDataflowAnalysis<StackReachingUses, /*Backward=*/true> { … }; } // end namespace bolt } // end namespace llvm #endif