LLVM 17.0.0git
Chrono.cpp
Go to the documentation of this file.
1//===- Support/Chrono.cpp - Utilities for Timing Manipulation ---*- C++ -*-===//
2//
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
6//
7//===----------------------------------------------------------------------===//
8
10#include "llvm/Config/llvm-config.h"
11#include "llvm/Support/Format.h"
13
14namespace llvm {
15
16using namespace sys;
17
23const char llvm::detail::unit<std::nano>::value[] = "ns";
24
25static inline struct tm getStructTM(TimePoint<> TP) {
26 struct tm Storage;
27 std::time_t OurTime = toTimeT(TP);
28
29#if defined(LLVM_ON_UNIX)
30 struct tm *LT = ::localtime_r(&OurTime, &Storage);
31 assert(LT);
32 (void)LT;
33#endif
34#if defined(_WIN32)
35 int Error = ::localtime_s(&Storage, &OurTime);
36 assert(!Error);
37 (void)Error;
38#endif
39
40 return Storage;
41}
42
44 struct tm LT = getStructTM(TP);
45 char Buffer[sizeof("YYYY-MM-DD HH:MM:SS")];
46 strftime(Buffer, sizeof(Buffer), "%Y-%m-%d %H:%M:%S", &LT);
47 return OS << Buffer << '.'
48 << format("%.9lu",
49 long((TP.time_since_epoch() % std::chrono::seconds(1))
50 .count()));
51}
52
53void format_provider<TimePoint<>>::format(const TimePoint<> &T, raw_ostream &OS,
54 StringRef Style) {
55 using namespace std::chrono;
56 TimePoint<seconds> Truncated = time_point_cast<seconds>(T);
57 auto Fractional = T - Truncated;
58 struct tm LT = getStructTM(Truncated);
59 // Handle extensions first. strftime mangles unknown %x on some platforms.
60 if (Style.empty()) Style = "%Y-%m-%d %H:%M:%S.%N";
61 std::string Format;
62 raw_string_ostream FStream(Format);
63 for (unsigned I = 0; I < Style.size(); ++I) {
64 if (Style[I] == '%' && Style.size() > I + 1) switch (Style[I + 1]) {
65 case 'L': // Milliseconds, from Ruby.
66 FStream << llvm::format(
67 "%.3lu", (long)duration_cast<milliseconds>(Fractional).count());
68 ++I;
69 continue;
70 case 'f': // Microseconds, from Python.
71 FStream << llvm::format(
72 "%.6lu", (long)duration_cast<microseconds>(Fractional).count());
73 ++I;
74 continue;
75 case 'N': // Nanoseconds, from date(1).
76 FStream << llvm::format(
77 "%.6lu", (long)duration_cast<nanoseconds>(Fractional).count());
78 ++I;
79 continue;
80 case '%': // Consume %%, so %%f parses as (%%)f not %(%f)
81 FStream << "%%";
82 ++I;
83 continue;
84 }
85 FStream << Style[I];
86 }
87 FStream.flush();
88 char Buffer[256]; // Should be enough for anywhen.
89 size_t Len = strftime(Buffer, sizeof(Buffer), Format.c_str(), &LT);
90 OS << (Len ? Buffer : "BAD-DATE-FORMAT");
91}
92
93} // namespace llvm
Given that RA is a live value
#define I(x, y, z)
Definition: MD5.cpp:58
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
raw_pwrite_stream & OS
Lightweight error class with error context and mandatory checking.
Definition: Error.h:156
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition: raw_ostream.h:52
std::chrono::time_point< std::chrono::system_clock, D > TimePoint
A time point on the system clock.
Definition: Chrono.h:34
std::time_t toTimeT(TimePoint<> TP)
Convert a TimePoint to std::time_t.
Definition: Chrono.h:37
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
static struct tm getStructTM(TimePoint<> TP)
Definition: Chrono.cpp:25
format_object< Ts... > format(const char *Fmt, const Ts &... Vals)
These are helper functions used to produce formatted output.
Definition: Format.h:124
auto count(R &&Range, const E &Element)
Wrapper function around std::count to count the number of times an element Element occurs in the give...
Definition: STLExtras.h:2011
raw_ostream & operator<<(raw_ostream &OS, const APFixedPoint &FX)
Definition: APFixedPoint.h:292