blob: 034fe3404ded4d1f69abe6724a17ff3b6ad7b2f8 [file] [log] [blame]
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +00001// Copyright 2011 the V8 project authors. All rights reserved.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28// This module contains the platform-specific code. This make the rest of the
29// code less dependent on operating system, compilers and runtime libraries.
30// This module does specifically not deal with differences between different
31// processor architecture.
32// The platform classes have the same definition for all platforms. The
33// implementation for a particular platform is put in platform_<os>.cc.
34// The build system then uses the implementation for the target platform.
35//
ager@chromium.org32912102009-01-16 10:38:43 +000036// This design has been chosen because it is simple and fast. Alternatively,
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000037// the platform dependent classes could have been implemented using abstract
38// superclasses with virtual methods and having specializations for each
39// platform. This design was rejected because it was more complicated and
40// slower. It would require factory methods for selecting the right
41// implementation and the overhead of virtual methods for performance
42// sensitive like mutex locking/unlocking.
43
44#ifndef V8_PLATFORM_H_
45#define V8_PLATFORM_H_
46
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +000047#ifdef __sun
48# ifndef signbit
49int signbit(double x);
50# endif
51#endif
52
iposva@chromium.org245aa852009-02-10 00:49:54 +000053// GCC specific stuff
54#ifdef __GNUC__
ager@chromium.org3e875802009-06-29 08:26:34 +000055
56// Needed for va_list on at least MinGW and Android.
57#include <stdarg.h>
58
iposva@chromium.org245aa852009-02-10 00:49:54 +000059#define __GNUC_VERSION__ (__GNUC__ * 10000 + __GNUC_MINOR__ * 100)
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000060
iposva@chromium.org245aa852009-02-10 00:49:54 +000061#endif // __GNUC__
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000062
ricow@chromium.org55ee8072011-09-08 16:33:10 +000063
64// Windows specific stuff.
65#ifdef WIN32
66
67// Microsoft Visual C++ specific stuff.
68#ifdef _MSC_VER
69
70#include "win32-math.h"
71
72int strncasecmp(const char* s1, const char* s2, int n);
73
74#endif // _MSC_VER
75
76// Random is missing on both Visual Studio and MinGW.
77int random();
78
79#endif // WIN32
80
kasperl@chromium.orga5551262010-12-07 12:49:48 +000081#include "atomicops.h"
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +000082#include "platform-tls.h"
ager@chromium.org5f0c45f2010-12-17 08:51:21 +000083#include "utils.h"
84#include "v8globals.h"
kasperl@chromium.orga5551262010-12-07 12:49:48 +000085
kasperl@chromium.org71affb52009-05-26 05:44:31 +000086namespace v8 {
87namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000088
whesse@chromium.orgcec079d2010-03-22 14:44:04 +000089// Use AtomicWord for a machine-sized pointer. It is assumed that
90// reads and writes of naturally aligned values of this type are atomic.
91typedef intptr_t AtomicWord;
92
ager@chromium.org3e875802009-06-29 08:26:34 +000093class Semaphore;
ager@chromium.org5f0c45f2010-12-17 08:51:21 +000094class Mutex;
ager@chromium.org3e875802009-06-29 08:26:34 +000095
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000096double ceiling(double x);
ager@chromium.org3811b432009-10-28 14:53:37 +000097double modulo(double x, double y);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000098
ager@chromium.org381abbb2009-02-25 13:23:22 +000099// Forward declarations.
100class Socket;
101
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000102// ----------------------------------------------------------------------------
103// OS
104//
105// This class has static methods for the different platform specific
106// functions. Add methods here to cope with differences between the
107// supported platforms.
108
109class OS {
110 public:
111 // Initializes the platform OS support. Called once at VM startup.
112 static void Setup();
113
114 // Returns the accumulated user time for thread. This routine
115 // can be used for profiling. The implementation should
116 // strive for high-precision timer resolution, preferable
117 // micro-second resolution.
118 static int GetUserTime(uint32_t* secs, uint32_t* usecs);
119
120 // Get a tick counter normalized to one tick per microsecond.
121 // Used for calculating time intervals.
122 static int64_t Ticks();
123
124 // Returns current time as the number of milliseconds since
125 // 00:00:00 UTC, January 1, 1970.
126 static double TimeCurrentMillis();
127
128 // Returns a string identifying the current time zone. The
129 // timestamp is used for determining if DST is in effect.
sgjesse@chromium.orgb9d7da12009-08-05 08:38:10 +0000130 static const char* LocalTimezone(double time);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000131
132 // Returns the local time offset in milliseconds east of UTC without
133 // taking daylight savings time into account.
134 static double LocalTimeOffset();
135
136 // Returns the daylight savings offset for the given time.
137 static double DaylightSavingsOffset(double time);
138
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000139 // Returns last OS error.
140 static int GetLastError();
141
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000142 static FILE* FOpen(const char* path, const char* mode);
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +0000143 static bool Remove(const char* path);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000144
whesse@chromium.org030d38e2011-07-13 13:23:34 +0000145 // Opens a temporary file, the file is auto removed on close.
146 static FILE* OpenTemporaryFile();
147
ager@chromium.org71daaf62009-04-01 07:22:49 +0000148 // Log file open mode is platform-dependent due to line ends issues.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000149 static const char* const LogFileOpenMode;
ager@chromium.org71daaf62009-04-01 07:22:49 +0000150
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000151 // Print output to console. This is mostly used for debugging output.
152 // On platforms that has standard terminal output, the output
153 // should go to stdout.
154 static void Print(const char* format, ...);
155 static void VPrint(const char* format, va_list args);
156
whesse@chromium.org023421e2010-12-21 12:19:12 +0000157 // Print output to a file. This is mostly used for debugging output.
158 static void FPrint(FILE* out, const char* format, ...);
159 static void VFPrint(FILE* out, const char* format, va_list args);
160
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000161 // Print error output to console. This is mostly used for error message
162 // output. On platforms that has standard terminal output, the output
163 // should go to stderr.
164 static void PrintError(const char* format, ...);
165 static void VPrintError(const char* format, va_list args);
166
ager@chromium.org32912102009-01-16 10:38:43 +0000167 // Allocate/Free memory used by JS heap. Pages are readable/writable, but
kasper.lund7276f142008-07-30 08:49:36 +0000168 // they are not guaranteed to be executable unless 'executable' is true.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000169 // Returns the address of allocated memory, or NULL if failed.
kasper.lund7276f142008-07-30 08:49:36 +0000170 static void* Allocate(const size_t requested,
171 size_t* allocated,
kasperl@chromium.orgf5aa8372009-03-24 14:47:14 +0000172 bool is_executable);
173 static void Free(void* address, const size_t size);
rossberg@chromium.org717967f2011-07-20 13:44:42 +0000174
lrn@chromium.orgd4e9e222011-08-03 12:01:58 +0000175 // Mark code segments non-writable.
176 static void ProtectCode(void* address, const size_t size);
177
rossberg@chromium.org717967f2011-07-20 13:44:42 +0000178 // Assign memory as a guard page so that access will cause an exception.
179 static void Guard(void* address, const size_t size);
180
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000181 // Get the Alignment guaranteed by Allocate().
182 static size_t AllocateAlignment();
183
184 // Returns an indication of whether a pointer is in a space that
185 // has been allocated by Allocate(). This method may conservatively
186 // always return false, but giving more accurate information may
187 // improve the robustness of the stack dump code in the presence of
188 // heap corruption.
189 static bool IsOutsideAllocatedSpace(void* pointer);
190
ager@chromium.org32912102009-01-16 10:38:43 +0000191 // Sleep for a number of milliseconds.
192 static void Sleep(const int milliseconds);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000193
194 // Abort the current process.
195 static void Abort();
196
kasper.lund7276f142008-07-30 08:49:36 +0000197 // Debug break.
198 static void DebugBreak();
199
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000200 // Walk the stack.
201 static const int kStackWalkError = -1;
202 static const int kStackWalkMaxNameLen = 256;
203 static const int kStackWalkMaxTextLen = 256;
204 struct StackFrame {
205 void* address;
206 char text[kStackWalkMaxTextLen];
207 };
208
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000209 static int StackWalk(Vector<StackFrame> frames);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000210
211 // Factory method for creating platform dependent Mutex.
212 // Please use delete to reclaim the storage for the returned Mutex.
213 static Mutex* CreateMutex();
214
215 // Factory method for creating platform dependent Semaphore.
216 // Please use delete to reclaim the storage for the returned Semaphore.
217 static Semaphore* CreateSemaphore(int count);
218
ager@chromium.org381abbb2009-02-25 13:23:22 +0000219 // Factory method for creating platform dependent Socket.
220 // Please use delete to reclaim the storage for the returned Socket.
221 static Socket* CreateSocket();
222
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000223 class MemoryMappedFile {
224 public:
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +0000225 static MemoryMappedFile* open(const char* name);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000226 static MemoryMappedFile* create(const char* name, int size, void* initial);
227 virtual ~MemoryMappedFile() { }
228 virtual void* memory() = 0;
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +0000229 virtual int size() = 0;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000230 };
231
kasper.lund7276f142008-07-30 08:49:36 +0000232 // Safe formatting print. Ensures that str is always null-terminated.
233 // Returns the number of chars written, or -1 if output was truncated.
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000234 static int SNPrintF(Vector<char> str, const char* format, ...);
235 static int VSNPrintF(Vector<char> str,
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000236 const char* format,
237 va_list args);
238
ager@chromium.org381abbb2009-02-25 13:23:22 +0000239 static char* StrChr(char* str, int c);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000240 static void StrNCpy(Vector<char> dest, const char* src, size_t n);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000241
whesse@chromium.org4a5224e2010-10-20 12:37:07 +0000242 // Support for the profiler. Can do nothing, in which case ticks
243 // occuring in shared libraries will not be properly accounted for.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000244 static void LogSharedLibraryAddresses();
245
whesse@chromium.org4a5224e2010-10-20 12:37:07 +0000246 // Support for the profiler. Notifies the external profiling
247 // process that a code moving garbage collection starts. Can do
248 // nothing, in which case the code objects must not move (e.g., by
249 // using --never-compact) if accurate profiling is desired.
250 static void SignalCodeMovingGC();
251
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000252 // The return value indicates the CPU features we are sure of because of the
253 // OS. For example MacOSX doesn't run on any x86 CPUs that don't have SSE2
254 // instructions.
255 // This is a little messy because the interpretation is subject to the cross
256 // of the CPU and the OS. The bits in the answer correspond to the bit
257 // positions indicated by the members of the CpuFeature enum from globals.h
258 static uint64_t CpuFeaturesImpliedByPlatform();
259
lrn@chromium.orgac2828d2011-06-23 06:29:21 +0000260 // Maximum size of the virtual memory. 0 means there is no artificial
261 // limit.
262 static intptr_t MaxVirtualMemory();
263
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000264 // Returns the double constant NAN
265 static double nan_value();
266
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000267 // Support runtime detection of VFP3 on ARM CPUs.
268 static bool ArmCpuHasFeature(CpuFeature feature);
269
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +0000270 // Support runtime detection of whether the hard float option of the
271 // EABI is used.
272 static bool ArmUsingHardFloat();
273
lrn@chromium.org7516f052011-03-30 08:52:27 +0000274 // Support runtime detection of FPU on MIPS CPUs.
275 static bool MipsCpuHasFeature(CpuFeature feature);
276
ager@chromium.org236ad962008-09-25 09:45:57 +0000277 // Returns the activation frame alignment constraint or zero if
278 // the platform doesn't care. Guaranteed to be a power of two.
279 static int ActivationFrameAlignment();
280
kmillikin@chromium.org9155e252010-05-26 13:27:57 +0000281 static void ReleaseStore(volatile AtomicWord* ptr, AtomicWord value);
282
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000283#if defined(V8_TARGET_ARCH_IA32)
284 // Copy memory area to disjoint memory area.
285 static void MemCopy(void* dest, const void* src, size_t size);
286 // Limit below which the extra overhead of the MemCopy function is likely
287 // to outweigh the benefits of faster copying.
288 static const int kMinComplexMemCopy = 64;
289 typedef void (*MemCopyFunction)(void* dest, const void* src, size_t size);
290
291#else // V8_TARGET_ARCH_IA32
292 static void MemCopy(void* dest, const void* src, size_t size) {
293 memcpy(dest, src, size);
294 }
295 static const int kMinComplexMemCopy = 256;
296#endif // V8_TARGET_ARCH_IA32
297
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000298 private:
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000299 static const int msPerSecond = 1000;
mads.s.ager31e71382008-08-13 09:32:07 +0000300
301 DISALLOW_IMPLICIT_CONSTRUCTORS(OS);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000302};
303
304
305class VirtualMemory {
306 public:
307 // Reserves virtual memory with size.
ager@chromium.org9258b6b2008-09-11 09:11:10 +0000308 explicit VirtualMemory(size_t size);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000309 ~VirtualMemory();
310
311 // Returns whether the memory has been reserved.
312 bool IsReserved();
313
314 // Returns the start address of the reserved memory.
315 void* address() {
316 ASSERT(IsReserved());
317 return address_;
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +0000318 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000319
320 // Returns the size of the reserved memory.
321 size_t size() { return size_; }
322
323 // Commits real memory. Returns whether the operation succeeded.
kasperl@chromium.orgf5aa8372009-03-24 14:47:14 +0000324 bool Commit(void* address, size_t size, bool is_executable);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000325
326 // Uncommit real memory. Returns whether the operation succeeded.
327 bool Uncommit(void* address, size_t size);
328
329 private:
330 void* address_; // Start address of the virtual memory.
331 size_t size_; // Size of the virtual memory.
332};
333
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000334// ----------------------------------------------------------------------------
335// Thread
336//
337// Thread objects are used for creating and running threads. When the start()
338// method is called the new thread starts running the run() method in the new
339// thread. The Thread object should not be deallocated before the thread has
340// terminated.
341
ager@chromium.orga9aa5fa2011-04-13 08:46:07 +0000342class Thread {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000343 public:
344 // Opaque data type for thread-local storage keys.
ricow@chromium.org0b9f8502010-08-18 07:45:01 +0000345 // LOCAL_STORAGE_KEY_MIN_VALUE and LOCAL_STORAGE_KEY_MAX_VALUE are specified
346 // to ensure that enumeration type has correct value range (see Issue 830 for
347 // more details).
348 enum LocalStorageKey {
349 LOCAL_STORAGE_KEY_MIN_VALUE = kMinInt,
350 LOCAL_STORAGE_KEY_MAX_VALUE = kMaxInt
351 };
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000352
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000353 struct Options {
354 Options() : name("v8:<unknown>"), stack_size(0) {}
355
356 const char* name;
357 int stack_size;
358 };
359
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000360 // Create new thread.
361 explicit Thread(const Options& options);
362 explicit Thread(const char* name);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000363 virtual ~Thread();
364
365 // Start new thread by calling the Run() method in the new thread.
366 void Start();
367
368 // Wait until thread terminates.
369 void Join();
370
lrn@chromium.org5d00b602011-01-05 09:51:43 +0000371 inline const char* name() const {
372 return name_;
373 }
374
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000375 // Abstract method for run handler.
376 virtual void Run() = 0;
377
378 // Thread-local storage.
379 static LocalStorageKey CreateThreadLocalKey();
380 static void DeleteThreadLocalKey(LocalStorageKey key);
381 static void* GetThreadLocal(LocalStorageKey key);
ager@chromium.org9085a012009-05-11 19:22:57 +0000382 static int GetThreadLocalInt(LocalStorageKey key) {
383 return static_cast<int>(reinterpret_cast<intptr_t>(GetThreadLocal(key)));
384 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000385 static void SetThreadLocal(LocalStorageKey key, void* value);
ager@chromium.org9085a012009-05-11 19:22:57 +0000386 static void SetThreadLocalInt(LocalStorageKey key, int value) {
387 SetThreadLocal(key, reinterpret_cast<void*>(static_cast<intptr_t>(value)));
388 }
389 static bool HasThreadLocal(LocalStorageKey key) {
390 return GetThreadLocal(key) != NULL;
391 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000392
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +0000393#ifdef V8_FAST_TLS_SUPPORTED
394 static inline void* GetExistingThreadLocal(LocalStorageKey key) {
395 void* result = reinterpret_cast<void*>(
396 InternalGetExistingThreadLocal(static_cast<intptr_t>(key)));
397 ASSERT(result == GetThreadLocal(key));
398 return result;
399 }
400#else
401 static inline void* GetExistingThreadLocal(LocalStorageKey key) {
402 return GetThreadLocal(key);
403 }
404#endif
405
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000406 // A hint to the scheduler to let another thread run.
407 static void YieldCPU();
408
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000409
lrn@chromium.org5d00b602011-01-05 09:51:43 +0000410 // The thread name length is limited to 16 based on Linux's implementation of
411 // prctl().
412 static const int kMaxThreadNameLength = 16;
ager@chromium.orga9aa5fa2011-04-13 08:46:07 +0000413
414 class PlatformData;
415 PlatformData* data() { return data_; }
416
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000417 private:
lrn@chromium.org5d00b602011-01-05 09:51:43 +0000418 void set_name(const char *name);
419
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000420 PlatformData* data_;
ager@chromium.orga9aa5fa2011-04-13 08:46:07 +0000421
lrn@chromium.org5d00b602011-01-05 09:51:43 +0000422 char name_[kMaxThreadNameLength];
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000423 int stack_size_;
lrn@chromium.org5d00b602011-01-05 09:51:43 +0000424
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000425 DISALLOW_COPY_AND_ASSIGN(Thread);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000426};
427
428
429// ----------------------------------------------------------------------------
430// Mutex
431//
432// Mutexes are used for serializing access to non-reentrant sections of code.
433// The implementations of mutex should allow for nested/recursive locking.
434
435class Mutex {
436 public:
437 virtual ~Mutex() {}
438
439 // Locks the given mutex. If the mutex is currently unlocked, it becomes
440 // locked and owned by the calling thread, and immediately. If the mutex
441 // is already locked by another thread, suspends the calling thread until
442 // the mutex is unlocked.
443 virtual int Lock() = 0;
444
445 // Unlocks the given mutex. The mutex is assumed to be locked and owned by
446 // the calling thread on entrance.
447 virtual int Unlock() = 0;
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000448
449 // Tries to lock the given mutex. Returns whether the mutex was
450 // successfully locked.
451 virtual bool TryLock() = 0;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000452};
453
454
455// ----------------------------------------------------------------------------
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000456// ScopedLock
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000457//
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000458// Stack-allocated ScopedLocks provide block-scoped locking and
459// unlocking of a mutex.
kasper.lund7276f142008-07-30 08:49:36 +0000460class ScopedLock {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000461 public:
kasper.lund7276f142008-07-30 08:49:36 +0000462 explicit ScopedLock(Mutex* mutex): mutex_(mutex) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000463 ASSERT(mutex_ != NULL);
kasper.lund7276f142008-07-30 08:49:36 +0000464 mutex_->Lock();
465 }
466 ~ScopedLock() {
467 mutex_->Unlock();
468 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000469
470 private:
kasper.lund7276f142008-07-30 08:49:36 +0000471 Mutex* mutex_;
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000472 DISALLOW_COPY_AND_ASSIGN(ScopedLock);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000473};
474
475
476// ----------------------------------------------------------------------------
477// Semaphore
478//
479// A semaphore object is a synchronization object that maintains a count. The
480// count is decremented each time a thread completes a wait for the semaphore
481// object and incremented each time a thread signals the semaphore. When the
482// count reaches zero, threads waiting for the semaphore blocks until the
483// count becomes non-zero.
484
485class Semaphore {
486 public:
487 virtual ~Semaphore() {}
488
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000489 // Suspends the calling thread until the semaphore counter is non zero
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000490 // and then decrements the semaphore counter.
491 virtual void Wait() = 0;
492
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000493 // Suspends the calling thread until the counter is non zero or the timeout
494 // time has passsed. If timeout happens the return value is false and the
495 // counter is unchanged. Otherwise the semaphore counter is decremented and
496 // true is returned. The timeout value is specified in microseconds.
497 virtual bool Wait(int timeout) = 0;
498
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000499 // Increments the semaphore counter.
500 virtual void Signal() = 0;
501};
502
503
ager@chromium.org381abbb2009-02-25 13:23:22 +0000504// ----------------------------------------------------------------------------
505// Socket
506//
507
508class Socket {
509 public:
510 virtual ~Socket() {}
511
512 // Server initialization.
513 virtual bool Bind(const int port) = 0;
514 virtual bool Listen(int backlog) const = 0;
515 virtual Socket* Accept() const = 0;
516
517 // Client initialization.
518 virtual bool Connect(const char* host, const char* port) = 0;
519
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000520 // Shutdown socket for both read and write. This causes blocking Send and
521 // Receive calls to exit. After Shutdown the Socket object cannot be used for
522 // any communication.
523 virtual bool Shutdown() = 0;
524
ager@chromium.org381abbb2009-02-25 13:23:22 +0000525 // Data Transimission
526 virtual int Send(const char* data, int len) const = 0;
ager@chromium.org381abbb2009-02-25 13:23:22 +0000527 virtual int Receive(char* data, int len) const = 0;
528
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000529 // Set the value of the SO_REUSEADDR socket option.
530 virtual bool SetReuseAddress(bool reuse_address) = 0;
531
ager@chromium.org381abbb2009-02-25 13:23:22 +0000532 virtual bool IsValid() const = 0;
533
534 static bool Setup();
535 static int LastError();
536 static uint16_t HToN(uint16_t value);
537 static uint16_t NToH(uint16_t value);
538 static uint32_t HToN(uint32_t value);
539 static uint32_t NToH(uint32_t value);
540};
541
542
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000543// ----------------------------------------------------------------------------
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000544// Sampler
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000545//
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000546// A sampler periodically samples the state of the VM and optionally
547// (if used for profiling) the program counter and stack pointer for
548// the thread that created it.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000549
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000550// TickSample captures the information collected for each sample.
551class TickSample {
552 public:
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000553 TickSample()
ager@chromium.org357bf652010-04-12 11:30:10 +0000554 : state(OTHER),
555 pc(NULL),
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000556 sp(NULL),
557 fp(NULL),
fschneider@chromium.org3a5fd782011-02-24 10:10:44 +0000558 tos(NULL),
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000559 frames_count(0),
560 has_external_callback(false) {}
ager@chromium.org357bf652010-04-12 11:30:10 +0000561 StateTag state; // The state of the VM.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000562 Address pc; // Instruction pointer.
563 Address sp; // Stack pointer.
564 Address fp; // Frame pointer.
565 union {
566 Address tos; // Top stack value (*sp).
567 Address external_callback;
568 };
lrn@chromium.org25156de2010-04-06 13:10:27 +0000569 static const int kMaxFramesCount = 64;
whesse@chromium.orgcec079d2010-03-22 14:44:04 +0000570 Address stack[kMaxFramesCount]; // Call stack.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000571 int frames_count : 8; // Number of captured frames.
572 bool has_external_callback : 1;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000573};
574
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000575class Sampler {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000576 public:
577 // Initialize sampler.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000578 Sampler(Isolate* isolate, int interval);
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000579 virtual ~Sampler();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000580
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000581 int interval() const { return interval_; }
582
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000583 // Performs stack sampling.
ager@chromium.orgbeb25712010-11-29 08:02:25 +0000584 void SampleStack(TickSample* sample) {
585 DoSampleStack(sample);
586 IncSamplesTaken();
587 }
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000588
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000589 // This method is called for each sampling period with the current
590 // program counter.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000591 virtual void Tick(TickSample* sample) = 0;
592
593 // Start and stop sampler.
594 void Start();
595 void Stop();
596
whesse@chromium.org4a5224e2010-10-20 12:37:07 +0000597 // Is the sampler used for profiling?
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000598 bool IsProfiling() const { return NoBarrier_Load(&profiling_) > 0; }
599 void IncreaseProfilingDepth() { NoBarrier_AtomicIncrement(&profiling_, 1); }
600 void DecreaseProfilingDepth() { NoBarrier_AtomicIncrement(&profiling_, -1); }
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000601
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000602 // Whether the sampler is running (that is, consumes resources).
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000603 bool IsActive() const { return NoBarrier_Load(&active_); }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000604
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000605 Isolate* isolate() { return isolate_; }
606
ager@chromium.orgbeb25712010-11-29 08:02:25 +0000607 // Used in tests to make sure that stack sampling is performed.
608 int samples_taken() const { return samples_taken_; }
609 void ResetSamplesTaken() { samples_taken_ = 0; }
610
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000611 class PlatformData;
ricow@chromium.orgbadaffc2011-03-17 12:15:27 +0000612 PlatformData* data() { return data_; }
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000613
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000614 PlatformData* platform_data() { return data_; }
615
ager@chromium.orgbeb25712010-11-29 08:02:25 +0000616 protected:
617 virtual void DoSampleStack(TickSample* sample) = 0;
618
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000619 private:
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000620 void SetActive(bool value) { NoBarrier_Store(&active_, value); }
ager@chromium.orgbeb25712010-11-29 08:02:25 +0000621 void IncSamplesTaken() { if (++samples_taken_ < 0) samples_taken_ = 0; }
622
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000623 Isolate* isolate_;
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000624 const int interval_;
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000625 Atomic32 profiling_;
626 Atomic32 active_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000627 PlatformData* data_; // Platform specific data.
ager@chromium.orgbeb25712010-11-29 08:02:25 +0000628 int samples_taken_; // Counts stack samples taken.
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000629 DISALLOW_IMPLICIT_CONSTRUCTORS(Sampler);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000630};
631
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000632
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000633} } // namespace v8::internal
634
635#endif // V8_PLATFORM_H_