blob: cf4984cc4d1b36b44ff5ded56fc77ba423f3bc1b [file] [log] [blame]
Reid Spencer9926c312004-09-24 23:25:19 +00001//===-- TimeValue.cpp - Implement OS TimeValue Concept ----------*- C++ -*-===//
Misha Brukmanf976c852005-04-21 22:55:34 +00002//
Reid Spencer9926c312004-09-24 23:25:19 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanf976c852005-04-21 22:55:34 +00007//
Reid Spencer9926c312004-09-24 23:25:19 +00008//===----------------------------------------------------------------------===//
9//
10// This file implements the operating system TimeValue concept.
11//
12//===----------------------------------------------------------------------===//
13
Reid Spencerc33e4932004-12-27 06:16:38 +000014#include "llvm/System/TimeValue.h"
15#include "llvm/Config/config.h"
Reid Spencer9926c312004-09-24 23:25:19 +000016
17namespace llvm {
18using namespace sys;
19
Reid Spencer44cbf362004-11-14 22:06:18 +000020const TimeValue TimeValue::MinTime = TimeValue ( INT64_MIN,0 );
21const TimeValue TimeValue::MaxTime = TimeValue ( INT64_MAX,0 );
22const TimeValue TimeValue::ZeroTime = TimeValue ( 0,0 );
23const TimeValue TimeValue::PosixZeroTime = TimeValue ( -946684800,0 );
24const TimeValue TimeValue::Win32ZeroTime = TimeValue ( -12591158400ULL,0 );
Reid Spencer9926c312004-09-24 23:25:19 +000025
26void
27TimeValue::normalize( void ) {
28 if ( nanos_ >= NANOSECONDS_PER_SECOND ) {
29 do {
30 seconds_++;
31 nanos_ -= NANOSECONDS_PER_SECOND;
32 } while ( nanos_ >= NANOSECONDS_PER_SECOND );
33 } else if (nanos_ <= -NANOSECONDS_PER_SECOND ) {
34 do {
35 seconds_--;
36 nanos_ += NANOSECONDS_PER_SECOND;
37 } while (nanos_ <= -NANOSECONDS_PER_SECOND);
38 }
39
40 if (seconds_ >= 1 && nanos_ < 0) {
41 seconds_--;
42 nanos_ += NANOSECONDS_PER_SECOND;
43 } else if (seconds_ < 0 && nanos_ > 0) {
44 seconds_++;
45 nanos_ -= NANOSECONDS_PER_SECOND;
46 }
47}
48
49}
50
51/// Include the platform specific portion of TimeValue class
Reid Spencerc33e4932004-12-27 06:16:38 +000052#ifdef LLVM_ON_UNIX
Reid Spencerbccc8ab2005-01-09 23:29:00 +000053#include "Unix/TimeValue.inc"
Reid Spencerc33e4932004-12-27 06:16:38 +000054#endif
55#ifdef LLVM_ON_WIN32
Reid Spencerbccc8ab2005-01-09 23:29:00 +000056#include "Win32/TimeValue.inc"
Reid Spencerc33e4932004-12-27 06:16:38 +000057#endif
Reid Spencer9926c312004-09-24 23:25:19 +000058