1 //===--- Printable.h - Print function helpers -------------------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file defines the Printable struct.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_SUPPORT_PRINTABLE_H
14 #define LLVM_SUPPORT_PRINTABLE_H
22 /// Simple wrapper around std::function<void(raw_ostream&)>.
23 /// This class is useful to construct print helpers for raw_ostream.
26 /// Printable PrintRegister(unsigned Register) {
27 /// return Printable([Register](raw_ostream &OS) {
28 /// OS << getRegisterName(Register);
31 /// ... OS << PrintRegister(Register); ...
33 /// Implementation note: Ideally this would just be a typedef, but doing so
34 /// leads to operator << being ambiguous as function has matching constructors
35 /// in some STL versions. I have seen the problem on gcc 4.6 libstdc++ and
39 std::function
<void(raw_ostream
&OS
)> Print
;
40 Printable(std::function
<void(raw_ostream
&OS
)> Print
)
41 : Print(std::move(Print
)) {}
44 inline raw_ostream
&operator<<(raw_ostream
&OS
, const Printable
&P
) {