diff options
author | Kate Stone <katherine.stone@apple.com> | 2016-09-06 20:57:50 +0000 |
---|---|---|
committer | Kate Stone <katherine.stone@apple.com> | 2016-09-06 20:57:50 +0000 |
commit | b9c1b51e45b845debb76d8658edabca70ca56079 (patch) | |
tree | dfcb5a13ef2b014202340f47036da383eaee74aa /lldb/source/Host/common/TimeValue.cpp | |
parent | d5aa73376966339caad04013510626ec2e42c760 (diff) | |
download | llvm-b9c1b51e45b845debb76d8658edabca70ca56079.zip llvm-b9c1b51e45b845debb76d8658edabca70ca56079.tar.gz llvm-b9c1b51e45b845debb76d8658edabca70ca56079.tar.bz2 |
*** This commit represents a complete reformatting of the LLDB source code
*** to conform to clang-format’s LLVM style. This kind of mass change has
*** two obvious implications:
Firstly, merging this particular commit into a downstream fork may be a huge
effort. Alternatively, it may be worth merging all changes up to this commit,
performing the same reformatting operation locally, and then discarding the
merge for this particular commit. The commands used to accomplish this
reformatting were as follows (with current working directory as the root of
the repository):
find . \( -iname "*.c" -or -iname "*.cpp" -or -iname "*.h" -or -iname "*.mm" \) -exec clang-format -i {} +
find . -iname "*.py" -exec autopep8 --in-place --aggressive --aggressive {} + ;
The version of clang-format used was 3.9.0, and autopep8 was 1.2.4.
Secondly, “blame” style tools will generally point to this commit instead of
a meaningful prior commit. There are alternatives available that will attempt
to look through this change and find the appropriate prior commit. YMMV.
llvm-svn: 280751
Diffstat (limited to 'lldb/source/Host/common/TimeValue.cpp')
-rw-r--r-- | lldb/source/Host/common/TimeValue.cpp | 195 |
1 files changed, 70 insertions, 125 deletions
diff --git a/lldb/source/Host/common/TimeValue.cpp b/lldb/source/Host/common/TimeValue.cpp index db74527..bfbe41a5 100644 --- a/lldb/source/Host/common/TimeValue.cpp +++ b/lldb/source/Host/common/TimeValue.cpp @@ -11,9 +11,9 @@ #include "lldb/Host/Config.h" // C Includes +#include <cstring> #include <stddef.h> #include <time.h> -#include <cstring> #ifdef _MSC_VER #include "lldb/Host/windows/windows.h" @@ -26,108 +26,68 @@ // Project includes #include "lldb/Core/Stream.h" - using namespace lldb_private; //---------------------------------------------------------------------- // TimeValue constructor //---------------------------------------------------------------------- -TimeValue::TimeValue() : - m_nano_seconds (0) -{ -} +TimeValue::TimeValue() : m_nano_seconds(0) {} //---------------------------------------------------------------------- // TimeValue copy constructor //---------------------------------------------------------------------- -TimeValue::TimeValue(const TimeValue& rhs) : - m_nano_seconds (rhs.m_nano_seconds) -{ -} +TimeValue::TimeValue(const TimeValue &rhs) + : m_nano_seconds(rhs.m_nano_seconds) {} -TimeValue::TimeValue(const struct timespec& ts) : - m_nano_seconds ((uint64_t) ts.tv_sec * NanoSecPerSec + ts.tv_nsec) -{ -} +TimeValue::TimeValue(const struct timespec &ts) + : m_nano_seconds((uint64_t)ts.tv_sec * NanoSecPerSec + ts.tv_nsec) {} -TimeValue::TimeValue(uint32_t seconds, uint64_t nanos) : - m_nano_seconds((uint64_t) seconds * NanoSecPerSec + nanos) -{ -} +TimeValue::TimeValue(uint32_t seconds, uint64_t nanos) + : m_nano_seconds((uint64_t)seconds * NanoSecPerSec + nanos) {} //---------------------------------------------------------------------- // Destructor //---------------------------------------------------------------------- -TimeValue::~TimeValue() -{ -} +TimeValue::~TimeValue() {} - -uint64_t -TimeValue::GetAsNanoSecondsSinceJan1_1970() const -{ - return m_nano_seconds; +uint64_t TimeValue::GetAsNanoSecondsSinceJan1_1970() const { + return m_nano_seconds; } -uint64_t -TimeValue::GetAsMicroSecondsSinceJan1_1970() const -{ - return m_nano_seconds / NanoSecPerMicroSec; +uint64_t TimeValue::GetAsMicroSecondsSinceJan1_1970() const { + return m_nano_seconds / NanoSecPerMicroSec; } -uint64_t -TimeValue::GetAsSecondsSinceJan1_1970() const -{ - return m_nano_seconds / NanoSecPerSec; +uint64_t TimeValue::GetAsSecondsSinceJan1_1970() const { + return m_nano_seconds / NanoSecPerSec; } - - -struct timespec -TimeValue::GetAsTimeSpec () const -{ - struct timespec ts; - ts.tv_sec = m_nano_seconds / NanoSecPerSec; - ts.tv_nsec = m_nano_seconds % NanoSecPerSec; - return ts; +struct timespec TimeValue::GetAsTimeSpec() const { + struct timespec ts; + ts.tv_sec = m_nano_seconds / NanoSecPerSec; + ts.tv_nsec = m_nano_seconds % NanoSecPerSec; + return ts; } -void -TimeValue::Clear () -{ - m_nano_seconds = 0; -} +void TimeValue::Clear() { m_nano_seconds = 0; } -bool -TimeValue::IsValid () const -{ - return m_nano_seconds != 0; -} +bool TimeValue::IsValid() const { return m_nano_seconds != 0; } -void -TimeValue::OffsetWithSeconds (uint64_t sec) -{ - m_nano_seconds += sec * NanoSecPerSec; +void TimeValue::OffsetWithSeconds(uint64_t sec) { + m_nano_seconds += sec * NanoSecPerSec; } -void -TimeValue::OffsetWithMicroSeconds (uint64_t usec) -{ - m_nano_seconds += usec * NanoSecPerMicroSec; +void TimeValue::OffsetWithMicroSeconds(uint64_t usec) { + m_nano_seconds += usec * NanoSecPerMicroSec; } -void -TimeValue::OffsetWithNanoSeconds (uint64_t nsec) -{ - m_nano_seconds += nsec; -} +void TimeValue::OffsetWithNanoSeconds(uint64_t nsec) { m_nano_seconds += nsec; } -TimeValue -TimeValue::Now() -{ +TimeValue TimeValue::Now() { using namespace std::chrono; auto now = system_clock::now(); - auto ns_since_epoch = duration_cast<std::chrono::nanoseconds>(now.time_since_epoch()).count(); + auto ns_since_epoch = + duration_cast<std::chrono::nanoseconds>(now.time_since_epoch()).count(); return TimeValue(0, ns_since_epoch); } @@ -135,78 +95,63 @@ TimeValue::Now() //---------------------------------------------------------------------- // TimeValue assignment operator //---------------------------------------------------------------------- -const TimeValue& -TimeValue::operator=(const TimeValue& rhs) -{ - m_nano_seconds = rhs.m_nano_seconds; - return *this; +const TimeValue &TimeValue::operator=(const TimeValue &rhs) { + m_nano_seconds = rhs.m_nano_seconds; + return *this; } -void -TimeValue::Dump (Stream *s, uint32_t width) const -{ - if (s == NULL) - return; +void TimeValue::Dump(Stream *s, uint32_t width) const { + if (s == NULL) + return; #ifndef LLDB_DISABLE_POSIX - char time_buf[32]; - time_t time = GetAsSecondsSinceJan1_1970(); - char *time_cstr = ::ctime_r(&time, time_buf); - if (time_cstr) - { - char *newline = ::strpbrk(time_cstr, "\n\r"); - if (newline) - *newline = '\0'; - if (width > 0) - s->Printf("%-*s", width, time_cstr); - else - s->PutCString(time_cstr); - } - else if (width > 0) - s->Printf("%-*s", width, ""); + char time_buf[32]; + time_t time = GetAsSecondsSinceJan1_1970(); + char *time_cstr = ::ctime_r(&time, time_buf); + if (time_cstr) { + char *newline = ::strpbrk(time_cstr, "\n\r"); + if (newline) + *newline = '\0'; + if (width > 0) + s->Printf("%-*s", width, time_cstr); + else + s->PutCString(time_cstr); + } else if (width > 0) + s->Printf("%-*s", width, ""); #endif } -bool -lldb_private::operator == (const TimeValue &lhs, const TimeValue &rhs) -{ - return lhs.GetAsNanoSecondsSinceJan1_1970() == rhs.GetAsNanoSecondsSinceJan1_1970(); +bool lldb_private::operator==(const TimeValue &lhs, const TimeValue &rhs) { + return lhs.GetAsNanoSecondsSinceJan1_1970() == + rhs.GetAsNanoSecondsSinceJan1_1970(); } -bool -lldb_private::operator != (const TimeValue &lhs, const TimeValue &rhs) -{ - return lhs.GetAsNanoSecondsSinceJan1_1970() != rhs.GetAsNanoSecondsSinceJan1_1970(); +bool lldb_private::operator!=(const TimeValue &lhs, const TimeValue &rhs) { + return lhs.GetAsNanoSecondsSinceJan1_1970() != + rhs.GetAsNanoSecondsSinceJan1_1970(); } -bool -lldb_private::operator < (const TimeValue &lhs, const TimeValue &rhs) -{ - return lhs.GetAsNanoSecondsSinceJan1_1970() < rhs.GetAsNanoSecondsSinceJan1_1970(); +bool lldb_private::operator<(const TimeValue &lhs, const TimeValue &rhs) { + return lhs.GetAsNanoSecondsSinceJan1_1970() < + rhs.GetAsNanoSecondsSinceJan1_1970(); } -bool -lldb_private::operator <= (const TimeValue &lhs, const TimeValue &rhs) -{ - return lhs.GetAsNanoSecondsSinceJan1_1970() <= rhs.GetAsNanoSecondsSinceJan1_1970(); +bool lldb_private::operator<=(const TimeValue &lhs, const TimeValue &rhs) { + return lhs.GetAsNanoSecondsSinceJan1_1970() <= + rhs.GetAsNanoSecondsSinceJan1_1970(); } -bool -lldb_private::operator > (const TimeValue &lhs, const TimeValue &rhs) -{ - return lhs.GetAsNanoSecondsSinceJan1_1970() > rhs.GetAsNanoSecondsSinceJan1_1970(); +bool lldb_private::operator>(const TimeValue &lhs, const TimeValue &rhs) { + return lhs.GetAsNanoSecondsSinceJan1_1970() > + rhs.GetAsNanoSecondsSinceJan1_1970(); } -bool -lldb_private::operator >= (const TimeValue &lhs, const TimeValue &rhs) -{ - return lhs.GetAsNanoSecondsSinceJan1_1970() >= rhs.GetAsNanoSecondsSinceJan1_1970(); +bool lldb_private::operator>=(const TimeValue &lhs, const TimeValue &rhs) { + return lhs.GetAsNanoSecondsSinceJan1_1970() >= + rhs.GetAsNanoSecondsSinceJan1_1970(); } -uint64_t -lldb_private::operator - (const TimeValue &lhs, const TimeValue &rhs) -{ - return lhs.GetAsNanoSecondsSinceJan1_1970() - rhs.GetAsNanoSecondsSinceJan1_1970(); +uint64_t lldb_private::operator-(const TimeValue &lhs, const TimeValue &rhs) { + return lhs.GetAsNanoSecondsSinceJan1_1970() - + rhs.GetAsNanoSecondsSinceJan1_1970(); } - - |