9#ifndef LLVM_SUPPORT_NATIVEFORMATTING_H
10#define LLVM_SUPPORT_NATIVEFORMATTING_H
28void write_integer(raw_ostream &S,
unsigned int N,
size_t MinDigits,
31void write_integer(raw_ostream &S,
unsigned long N,
size_t MinDigits,
35void write_integer(raw_ostream &S,
unsigned long long N,
size_t MinDigits,
41 std::optional<size_t> Width = std::nullopt);
43 std::optional<size_t> Precision = std::nullopt);
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
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)
bool isPrefixedHexStyle(HexPrintStyle S)