14#ifndef LLVM_SUPPORT_FORMATPROVIDERS_H
15#define LLVM_SUPPORT_FORMATPROVIDERS_H
31 :
public std::integral_constant<
32 bool, is_one_of<T, uint8_t, int16_t, uint16_t, int32_t, uint32_t,
33 int64_t, uint64_t, int, unsigned, long, unsigned long,
34 long long, unsigned long long>::value> {};
38 :
public std::integral_constant<bool, std::is_same<T, char>::value> {};
42 :
public std::integral_constant<bool,
43 is_one_of<T, char *, const char *>::value> {
48 :
public std::integral_constant<bool,
49 std::is_convertible<T, llvm::StringRef>::value> {};
53 :
public std::integral_constant<bool, std::is_pointer<T>::value &&
54 !is_cstring<T>::value> {};
58 :
public std::integral_constant<bool, std::is_floating_point<T>::value> {};
64 std::optional<size_t> Result;
66 Result = std::nullopt;
67 else if (Str.getAsInteger(10, Prec)) {
68 assert(
false &&
"Invalid precision specifier");
69 Result = std::nullopt;
71 assert(Prec < 100 &&
"Precision out of range");
72 Result = std::min<size_t>(99u, Prec);
78 if (!Str.startswith_insensitive(
"x"))
81 if (Str.consume_front(
"x-"))
83 else if (Str.consume_front(
"X-"))
85 else if (Str.consume_front(
"x+") || Str.consume_front(
"x"))
87 else if (Str.consume_front(
"X+") || Str.consume_front(
"X"))
94 Str.consumeInteger(10,
Default);
127 T,
std::enable_if_t<detail::use_integral_formatter<T>::value>>
134 if (consumeHexStyle(Style, HS)) {
135 Digits = consumeNumHexDigits(Style, HS, 0);
141 if (Style.consume_front(
"N") || Style.consume_front(
"n"))
143 else if (Style.consume_front(
"D") || Style.consume_front(
"d"))
146 Style.consumeInteger(10, Digits);
147 assert(Style.empty() &&
"Invalid integral format style!");
176 T,
std::enable_if_t<detail::use_pointer_formatter<T>::value>>
182 consumeHexStyle(Style, HS);
183 size_t Digits = consumeNumHexDigits(Style, HS,
sizeof(
void *) * 2);
184 write_hex(Stream,
reinterpret_cast<std::uintptr_t
>(V), HS, Digits);
201 T,
std::enable_if_t<detail::use_string_formatter<T>::value>> {
204 if (!Style.empty() && Style.getAsInteger(10,
N)) {
205 assert(
false &&
"Style is not a valid integer");
234 std::enable_if_t<detail::use_char_formatter<T>::value>> {
240 int X =
static_cast<int>(V);
265 Stream << StringSwitch<const char *>(Style)
266 .Case(
"Y",
B ?
"YES" :
"NO")
267 .Case(
"y",
B ?
"yes" :
"no")
268 .CaseLower(
"D",
B ?
"1" :
"0")
269 .Case(
"T",
B ?
"TRUE" :
"FALSE")
270 .Cases(
"t",
"",
B ?
"true" :
"false")
271 .Default(
B ?
"1" :
"0");
300 std::enable_if_t<detail::use_double_formatter<T>::value>>
304 if (Style.consume_front(
"P") || Style.consume_front(
"p"))
306 else if (Style.consume_front(
"F") || Style.consume_front(
"f"))
308 else if (Style.consume_front(
"E"))
310 else if (Style.consume_front(
"e"))
315 std::optional<size_t> Precision = parseNumericPrecision(Style);
319 write_double(Stream,
static_cast<double>(V), S, Precision);
324template <
typename IterT>
325using IterValue =
typename std::iterator_traits<IterT>::value_type;
327template <
typename IterT>
329 :
public std::integral_constant<
330 bool, !uses_missing_provider<IterValue<IterT>>::value> {};
357 using value =
typename std::iterator_traits<IterT>::value_type;
363 if (Style.front() != Indicator)
365 Style = Style.drop_front();
367 assert(
false &&
"Invalid range style");
371 for (
const char *
D : std::array<const char *, 3>{
"[]",
"<>",
"()"}) {
372 if (Style.front() !=
D[0])
374 size_t End = Style.find_first_of(
D[1]);
376 assert(
false &&
"Missing range option end delimeter!");
380 Style = Style.drop_front(End + 1);
383 assert(
false &&
"Invalid range style!");
387 static std::pair<StringRef, StringRef> parseOptions(
StringRef Style) {
388 StringRef Sep = consumeOneOption(Style,
'$',
", ");
389 StringRef Args = consumeOneOption(Style,
'@',
"");
390 assert(Style.empty() &&
"Unexpected text in range option string!");
391 return std::make_pair(Sep, Args);
396 "Range value_type does not have a format provider!");
401 std::tie(Sep, ArgStyle) = parseOptions(Style);
402 auto Begin = V.begin();
406 Adapter.format(Stream, ArgStyle);
409 while (Begin != End) {
412 Adapter.format(Stream, ArgStyle);
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
static GCMetadataPrinterRegistry::Add< ErlangGCPrinter > X("erlang", "erlang-compatible garbage collector")
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file implements the StringSwitch template, which mimics a switch() statement whose cases are str...
StringRef - Represent a constant reference to a string, i.e.
constexpr StringRef substr(size_t Start, size_t N=npos) const
Return a reference to the substring from [Start, Start + N).
static constexpr size_t npos
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
static bool consumeHexStyle(StringRef &Str, HexPrintStyle &Style)
static std::optional< size_t > parseNumericPrecision(StringRef Str)
static size_t consumeNumHexDigits(StringRef &Str, HexPrintStyle Style, size_t Default)
A range adaptor for a pair of iterators.
This class implements an extremely fast bulk output stream that can only output to a stream.
std::enable_if_t< uses_format_member< T >::value, T > build_format_adapter(T &&Item)
typename std::iterator_traits< IterT >::value_type IterValue
This is an optimization pass for GlobalISel generic memory operations.
void write_integer(raw_ostream &S, unsigned int N, size_t MinDigits, IntegerStyle Style)
size_t getDefaultPrecision(FloatStyle Style)
void write_hex(raw_ostream &S, uint64_t N, HexPrintStyle Style, std::optional< size_t > Width=std::nullopt)
void write_double(raw_ostream &S, double D, FloatStyle Style, std::optional< size_t > Precision=std::nullopt)
@ Default
The result values are uniform if and only if all operands are uniform.
bool isPrefixedHexStyle(HexPrintStyle S)