![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /proc/thread-self/root/usr/lib/llvm-10/build/include/llvm/Transforms/Utils/ |
Upload File : |
//===- Debugify.h - Attach synthetic debug info to everything -------------===// // // 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 // //===----------------------------------------------------------------------===// /// /// \file Interface to the `debugify` synthetic debug info testing utility. /// //===----------------------------------------------------------------------===// #ifndef LLVM_TRANSFORM_UTILS_DEBUGIFY_H #define LLVM_TRANSFORM_UTILS_DEBUGIFY_H #include "llvm/ADT/StringRef.h" #include "llvm/ADT/MapVector.h" #include "llvm/IR/PassManager.h" llvm::ModulePass *createDebugifyModulePass(); llvm::FunctionPass *createDebugifyFunctionPass(); struct NewPMDebugifyPass : public llvm::PassInfoMixin<NewPMDebugifyPass> { llvm::PreservedAnalyses run(llvm::Module &M, llvm::ModuleAnalysisManager &AM); }; /// Track how much `debugify` information has been lost. struct DebugifyStatistics { /// Number of missing dbg.values. unsigned NumDbgValuesMissing = 0; /// Number of dbg.values expected. unsigned NumDbgValuesExpected = 0; /// Number of instructions with empty debug locations. unsigned NumDbgLocsMissing = 0; /// Number of instructions expected to have debug locations. unsigned NumDbgLocsExpected = 0; /// Get the ratio of missing/expected dbg.values. float getMissingValueRatio() const { return float(NumDbgValuesMissing) / float(NumDbgLocsExpected); } /// Get the ratio of missing/expected instructions with locations. float getEmptyLocationRatio() const { return float(NumDbgLocsMissing) / float(NumDbgLocsExpected); } }; /// Map pass names to a per-pass DebugifyStatistics instance. using DebugifyStatsMap = llvm::MapVector<llvm::StringRef, DebugifyStatistics>; llvm::ModulePass * createCheckDebugifyModulePass(bool Strip = false, llvm::StringRef NameOfWrappedPass = "", DebugifyStatsMap *StatsMap = nullptr); llvm::FunctionPass * createCheckDebugifyFunctionPass(bool Strip = false, llvm::StringRef NameOfWrappedPass = "", DebugifyStatsMap *StatsMap = nullptr); struct NewPMCheckDebugifyPass : public llvm::PassInfoMixin<NewPMCheckDebugifyPass> { llvm::PreservedAnalyses run(llvm::Module &M, llvm::ModuleAnalysisManager &AM); }; #endif // LLVM_TRANSFORM_UTILS_DEBUGIFY_H