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

Side by Side Diff: src/platform/mutex.h

Issue 151603004: A64: Synchronize with r16587. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/platform/elapsed-timer.h ('k') | src/platform/mutex.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 const NativeHandle& native_handle() const V8_WARN_UNUSED_RESULT { 87 const NativeHandle& native_handle() const V8_WARN_UNUSED_RESULT {
88 return native_handle_; 88 return native_handle_;
89 } 89 }
90 90
91 private: 91 private:
92 NativeHandle native_handle_; 92 NativeHandle native_handle_;
93 #ifdef DEBUG 93 #ifdef DEBUG
94 int level_; 94 int level_;
95 #endif 95 #endif
96 96
97 V8_INLINE(void AssertHeldAndUnmark()) {
98 #ifdef DEBUG
99 ASSERT_EQ(1, level_);
100 level_--;
101 #endif
102 }
103
104 V8_INLINE(void AssertUnheldAndMark()) {
105 #ifdef DEBUG
106 ASSERT_EQ(0, level_);
107 level_++;
108 #endif
109 }
110
111 friend class ConditionVariable;
112
97 DISALLOW_COPY_AND_ASSIGN(Mutex); 113 DISALLOW_COPY_AND_ASSIGN(Mutex);
98 }; 114 };
99 115
100 116
101 // POD Mutex initialized lazily (i.e. the first time Pointer() is called). 117 // POD Mutex initialized lazily (i.e. the first time Pointer() is called).
102 // Usage: 118 // Usage:
103 // static LazyMutex my_mutex = LAZY_MUTEX_INITIALIZER; 119 // static LazyMutex my_mutex = LAZY_MUTEX_INITIALIZER;
104 // 120 //
105 // void my_function() { 121 // void my_function() {
106 // LockGuard<Mutex> guard(my_mutex.Pointer()); 122 // LockGuard<Mutex> guard(my_mutex.Pointer());
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 223
208 template <typename Mutex> 224 template <typename Mutex>
209 class LockGuard V8_FINAL { 225 class LockGuard V8_FINAL {
210 public: 226 public:
211 explicit LockGuard(Mutex* mutex) : mutex_(mutex) { mutex_->Lock(); } 227 explicit LockGuard(Mutex* mutex) : mutex_(mutex) { mutex_->Lock(); }
212 ~LockGuard() { mutex_->Unlock(); } 228 ~LockGuard() { mutex_->Unlock(); }
213 229
214 private: 230 private:
215 Mutex* mutex_; 231 Mutex* mutex_;
216 232
217 LockGuard(const LockGuard<Mutex>& other) V8_DELETE; 233 DISALLOW_COPY_AND_ASSIGN(LockGuard);
218 LockGuard<Mutex>& operator=(const LockGuard<Mutex>& other) V8_DELETE;
219 }; 234 };
220 235
221 } } // namespace v8::internal 236 } } // namespace v8::internal
222 237
223 #endif // V8_PLATFORM_MUTEX_H_ 238 #endif // V8_PLATFORM_MUTEX_H_
OLDNEW
« no previous file with comments | « src/platform/elapsed-timer.h ('k') | src/platform/mutex.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698