Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1876)

Unified Diff: src/base/platform/time.cc

Issue 1977753002: Revert of [Reland] Implement CPU time for OS X and POSIX. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/base/platform/time.h ('k') | test/unittests/base/platform/time-unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/base/platform/time.cc
diff --git a/src/base/platform/time.cc b/src/base/platform/time.cc
index b2355a33bde275695d13fe49ceb619ddf12911d5..6d5e538970cfd8e8b3608c196b79c361a44c4107 100644
--- a/src/base/platform/time.cc
+++ b/src/base/platform/time.cc
@@ -10,9 +10,7 @@
#include <unistd.h>
#endif
#if V8_OS_MACOSX
-#include <mach/mach.h>
#include <mach/mach_time.h>
-#include <pthread.h>
#endif
#include <cstring>
@@ -26,51 +24,6 @@
#include "src/base/cpu.h"
#include "src/base/logging.h"
#include "src/base/platform/platform.h"
-
-namespace {
-
-#if V8_OS_MACOSX
-int64_t ComputeThreadTicks() {
- mach_msg_type_number_t thread_info_count = THREAD_BASIC_INFO_COUNT;
- thread_basic_info_data_t thread_info_data;
- kern_return_t kr = thread_info(
- pthread_mach_thread_np(pthread_self()),
- THREAD_BASIC_INFO,
- reinterpret_cast<thread_info_t>(&thread_info_data),
- &thread_info_count);
- CHECK(kr == KERN_SUCCESS);
-
- v8::base::CheckedNumeric<int64_t> absolute_micros(
- thread_info_data.user_time.seconds);
- absolute_micros *= v8::base::Time::kMicrosecondsPerSecond;
- absolute_micros += thread_info_data.user_time.microseconds;
- return absolute_micros.ValueOrDie();
-}
-#elif V8_OS_POSIX
-// Helper function to get results from clock_gettime() and convert to a
-// microsecond timebase. Minimum requirement is MONOTONIC_CLOCK to be supported
-// on the system. FreeBSD 6 has CLOCK_MONOTONIC but defines
-// _POSIX_MONOTONIC_CLOCK to -1.
-inline int64_t ClockNow(clockid_t clk_id) {
-#if (defined(_POSIX_MONOTONIC_CLOCK) && _POSIX_MONOTONIC_CLOCK >= 0) || \
- defined(V8_OS_BSD) || defined(V8_OS_ANDROID)
- struct timespec ts;
- if (clock_gettime(clk_id, &ts) != 0) {
- UNREACHABLE();
- return 0;
- }
- v8::base::internal::CheckedNumeric<int64_t> result(ts.tv_sec);
- result *= v8::base::Time::kMicrosecondsPerSecond;
- result += (ts.tv_nsec / v8::base::Time::kNanosecondsPerMicrosecond);
- return result.ValueOrDie();
-#else // Monotonic clock not supported.
- return 0;
-#endif
-}
-#endif // V8_OS_MACOSX
-
-
-} // namespace
namespace v8 {
namespace base {
@@ -588,7 +541,12 @@
#elif V8_OS_SOLARIS
ticks = (gethrtime() / Time::kNanosecondsPerMicrosecond);
#elif V8_OS_POSIX
- ticks = ClockNow(CLOCK_MONOTONIC);
+ struct timespec ts;
+ int result = clock_gettime(CLOCK_MONOTONIC, &ts);
+ DCHECK_EQ(0, result);
+ USE(result);
+ ticks = (ts.tv_sec * Time::kMicrosecondsPerSecond +
+ ts.tv_nsec / Time::kNanosecondsPerMicrosecond);
#endif // V8_OS_MACOSX
// Make sure we never return 0 here.
return TimeTicks(ticks + 1);
@@ -602,30 +560,5 @@
#endif // V8_OS_WIN
-
-// TODO(lpy): For windows ThreadTicks implementation,
-// see http://crbug.com/v8/5000
-bool ThreadTicks::IsSupported() {
-#if (defined(_POSIX_THREAD_CPUTIME) && (_POSIX_THREAD_CPUTIME >= 0)) || \
- defined(V8_OS_MACOSX) || defined(V8_OS_ANDROID)
- return true;
-#else
- return false;
-#endif
-}
-
-
-ThreadTicks ThreadTicks::Now() {
-#if V8_OS_MACOSX
- return ThreadTicks(ComputeThreadTicks());
-#elif(defined(_POSIX_THREAD_CPUTIME) && (_POSIX_THREAD_CPUTIME >= 0)) || \
- defined(V8_OS_ANDROID)
- return ThreadTicks(ClockNow(CLOCK_THREAD_CPUTIME_ID));
-#else
- UNREACHABLE();
- return ThreadTicks();
-#endif
-}
-
} // namespace base
} // namespace v8
« no previous file with comments | « src/base/platform/time.h ('k') | test/unittests/base/platform/time-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698