14#ifndef LLVM_SUPPORT_FORMATPROVIDERS_H
15#define LLVM_SUPPORT_FORMATPROVIDERS_H
32 :
public std::bool_constant<
33 is_one_of<T, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t,
34 uint64_t, int, unsigned, long, unsigned long, long long,
35 unsigned long long>::value> {};
43 :
public std::bool_constant<is_one_of<T, char *, const char *>::value> {};
47 :
public std::bool_constant<std::is_convertible_v<T, llvm::StringRef>> {};
51 :
public std::bool_constant<std::is_pointer_v<T> && !is_cstring<T>::value> {
56 :
public std::bool_constant<std::is_floating_point_v<T>> {};
62 std::optional<size_t> Result;
64 Result = std::nullopt;
65 else if (Str.getAsInteger(10, Prec)) {
66 assert(
false &&
"Invalid precision specifier");
67 Result = std::nullopt;
69 assert(Prec < 100 &&
"Precision out of range");
70 Result = std::min<size_t>(99u, Prec);
76 if (!Str.starts_with_insensitive(
"x"))
79 if (Str.consume_front(
"x-"))
81 if (Str.consume_front(
"X-"))
83 if (Str.consume_front(
"x+") || Str.consume_front(
"x"))
85 if (!Str.consume_front(
"X+"))
86 Str.consume_front(
"X");
92 Str.consumeInteger(10,
Default);
126 T,
std::enable_if_t<support::detail::use_integral_formatter<T>::value>>
139 if (Style.consume_front(
"N") || Style.consume_front(
"n"))
141 else if (Style.consume_front(
"D") || Style.consume_front(
"d"))
144 Style.consumeInteger(10, Digits);
145 assert(Style.empty() &&
"Invalid integral format style!");
174 T,
std::enable_if_t<support::detail::use_pointer_formatter<T>::value>>
183 write_hex(Stream,
reinterpret_cast<std::uintptr_t
>(V), HS, Digits);
200 T,
std::enable_if_t<support::detail::use_string_formatter<T>::value>> {
203 if (!Style.empty() && Style.getAsInteger(10,
N)) {
204 assert(
false &&
"Style is not a valid integer");
233 T,
std::enable_if_t<support::detail::use_char_formatter<T>::value>> {
239 int X =
static_cast<int>(V);
264 Stream << StringSwitch<const char *>(Style)
265 .Case(
"Y",
B ?
"YES" :
"NO")
266 .Case(
"y",
B ?
"yes" :
"no")
267 .CaseLower(
"D",
B ?
"1" :
"0")
268 .Case(
"T",
B ?
"TRUE" :
"FALSE")
269 .Cases(
"t",
"",
B ?
"true" :
"false")
270 .Default(
B ?
"1" :
"0");
299 T,
std::enable_if_t<support::detail::use_double_formatter<T>::value>>
303 if (Style.consume_front(
"P") || Style.consume_front(
"p"))
305 else if (Style.consume_front(
"F") || Style.consume_front(
"f"))
307 else if (Style.consume_front(
"E"))
309 else if (Style.consume_front(
"e"))
318 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::bool_constant<
330 !support::detail::uses_missing_provider<IterValue<IterT>>::value> {};
358 using value =
typename std::iterator_traits<IterT>::value_type;
364 if (Style.front() != Indicator)
366 Style = Style.drop_front();
368 assert(
false &&
"Invalid range style");
372 for (
const char *
D : std::array<const char *, 3>{
"[]",
"<>",
"()"}) {
373 if (Style.front() !=
D[0])
375 size_t End = Style.find_first_of(
D[1]);
377 assert(
false &&
"Missing range option end delimeter!");
381 Style = Style.drop_front(End + 1);
384 assert(
false &&
"Invalid range style!");
388 static std::pair<StringRef, StringRef> parseOptions(
StringRef Style) {
389 StringRef Sep = consumeOneOption(Style,
'$',
", ");
390 StringRef Args = consumeOneOption(Style,
'@',
"");
391 assert(Style.empty() &&
"Unexpected text in range option string!");
392 return std::make_pair(Sep, Args);
397 "Range value_type does not have a format provider!");
402 std::tie(Sep, ArgStyle) = parseOptions(Style);
403 auto Begin = V.begin();
407 Adapter.format(Stream, ArgStyle);
410 while (Begin != End) {
413 Adapter.format(Stream, ArgStyle);
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
This file implements the StringSwitch template, which mimics a switch() statement whose cases are str...
static TableGen::Emitter::OptClass< SkeletonEmitter > X("gen-skeleton-class", "Generate example skeleton class")
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...
A range adaptor for a pair of iterators.
This class implements an extremely fast bulk output stream that can only output to a stream.
static size_t consumeNumHexDigits(StringRef &Str, HexPrintStyle Style, size_t Default)
static std::optional< size_t > parseNumericPrecision(StringRef Str)
static std::optional< HexPrintStyle > consumeHexStyle(StringRef &Str)
typename std::iterator_traits< IterT >::value_type IterValue
std::enable_if_t< uses_format_member< T >::value, T > build_format_adapter(T &&Item)
This is an optimization pass for GlobalISel generic memory operations.
LLVM_ABI void write_integer(raw_ostream &S, unsigned int N, size_t MinDigits, IntegerStyle Style)
LLVM_ABI size_t getDefaultPrecision(FloatStyle Style)
LLVM_ABI void write_hex(raw_ostream &S, uint64_t N, HexPrintStyle Style, std::optional< size_t > Width=std::nullopt)
LLVM_ABI 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.
LLVM_ABI bool isPrefixedHexStyle(HexPrintStyle S)
Implement std::hash so that hash_code can be used in STL containers.