//===--- RuntimeDebugBuilder.h --- Helper to insert prints into LLVM-IR ---===// // // 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 RUNTIME_DEBUG_BUILDER_H #define RUNTIME_DEBUG_BUILDER_H #include "polly/CodeGen/IRBuilder.h" #include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/StringRef.h" #include <vector> namespace llvm { class Value; class Function; } // namespace llvm namespace polly { /// Insert function calls that print certain LLVM values at run time. /// /// This class inserts libc function calls to print certain LLVM values at /// run time. struct RuntimeDebugBuilder { … }; } // namespace polly extern bool PollyDebugPrinting; #endif