blob: 034fe3404ded4d1f69abe6724a17ff3b6ad7b2f8 [file] [log] [blame]
Ben Murdoch8b112d22011-06-08 16:22:53 +01001// Copyright 2011 the V8 project authors. All rights reserved.
Steve Blocka7e24c12009-10-30 11:49:00 +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//
36// This design has been chosen because it is simple and fast. Alternatively,
37// 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
Leon Clarkef7060e22010-06-03 12:02:55 +010047#ifdef __sun
48# ifndef signbit
49int signbit(double x);
50# endif
51#endif
52
Steve Blocka7e24c12009-10-30 11:49:00 +000053// GCC specific stuff
54#ifdef __GNUC__
55
56// Needed for va_list on at least MinGW and Android.
57#include <stdarg.h>
58
59#define __GNUC_VERSION__ (__GNUC__ * 10000 + __GNUC_MINOR__ * 100)
60
Steve Blocka7e24c12009-10-30 11:49:00 +000061#endif // __GNUC__
62
Ben Murdoch589d6972011-11-30 16:04:58 +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
Ben Murdochb0fe1622011-05-05 13:52:32 +010081#include "atomicops.h"
Steve Block44f0eee2011-05-26 01:26:41 +010082#include "platform-tls.h"
Ben Murdochb0fe1622011-05-05 13:52:32 +010083#include "utils.h"
84#include "v8globals.h"
85
Steve Blocka7e24c12009-10-30 11:49:00 +000086namespace v8 {
87namespace internal {
88
Steve Block6ded16b2010-05-10 14:33:55 +010089// 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
Steve Blocka7e24c12009-10-30 11:49:00 +000093class Semaphore;
Ben Murdochb0fe1622011-05-05 13:52:32 +010094class Mutex;
Steve Blocka7e24c12009-10-30 11:49:00 +000095
96double ceiling(double x);
Steve Block3ce2e202009-11-05 08:53:23 +000097double modulo(double x, double y);
Steve Blocka7e24c12009-10-30 11:49:00 +000098
99// Forward declarations.
100class Socket;
101
102// ----------------------------------------------------------------------------
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.
130 static const char* LocalTimezone(double time);
131
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
Iain Merrick75681382010-08-19 15:07:18 +0100139 // Returns last OS error.
140 static int GetLastError();
141
Steve Blocka7e24c12009-10-30 11:49:00 +0000142 static FILE* FOpen(const char* path, const char* mode);
Steve Block1e0659c2011-05-24 12:43:12 +0100143 static bool Remove(const char* path);
Steve Blocka7e24c12009-10-30 11:49:00 +0000144
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000145 // Opens a temporary file, the file is auto removed on close.
146 static FILE* OpenTemporaryFile();
147
Steve Blocka7e24c12009-10-30 11:49:00 +0000148 // Log file open mode is platform-dependent due to line ends issues.
Steve Block44f0eee2011-05-26 01:26:41 +0100149 static const char* const LogFileOpenMode;
Steve Blocka7e24c12009-10-30 11:49:00 +0000150
151 // 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
Ben Murdochb0fe1622011-05-05 13:52:32 +0100157 // 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
Steve Blocka7e24c12009-10-30 11:49:00 +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
167 // Allocate/Free memory used by JS heap. Pages are readable/writable, but
168 // they are not guaranteed to be executable unless 'executable' is true.
169 // Returns the address of allocated memory, or NULL if failed.
170 static void* Allocate(const size_t requested,
171 size_t* allocated,
172 bool is_executable);
173 static void Free(void* address, const size_t size);
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000174
175 // Mark code segments non-writable.
176 static void ProtectCode(void* address, const size_t size);
177
178 // Assign memory as a guard page so that access will cause an exception.
179 static void Guard(void* address, const size_t size);
180
Steve Blocka7e24c12009-10-30 11:49:00 +0000181 // Get the Alignment guaranteed by Allocate().
182 static size_t AllocateAlignment();
183
Steve Blocka7e24c12009-10-30 11:49:00 +0000184 // 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
191 // Sleep for a number of milliseconds.
192 static void Sleep(const int milliseconds);
193
194 // Abort the current process.
195 static void Abort();
196
197 // Debug break.
198 static void DebugBreak();
199
200 // 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
209 static int StackWalk(Vector<StackFrame> frames);
210
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
219 // Factory method for creating platform dependent Socket.
220 // Please use delete to reclaim the storage for the returned Socket.
221 static Socket* CreateSocket();
222
223 class MemoryMappedFile {
224 public:
Steve Block1e0659c2011-05-24 12:43:12 +0100225 static MemoryMappedFile* open(const char* name);
Steve Blocka7e24c12009-10-30 11:49:00 +0000226 static MemoryMappedFile* create(const char* name, int size, void* initial);
227 virtual ~MemoryMappedFile() { }
228 virtual void* memory() = 0;
Steve Block1e0659c2011-05-24 12:43:12 +0100229 virtual int size() = 0;
Steve Blocka7e24c12009-10-30 11:49:00 +0000230 };
231
232 // Safe formatting print. Ensures that str is always null-terminated.
233 // Returns the number of chars written, or -1 if output was truncated.
234 static int SNPrintF(Vector<char> str, const char* format, ...);
235 static int VSNPrintF(Vector<char> str,
236 const char* format,
237 va_list args);
238
239 static char* StrChr(char* str, int c);
240 static void StrNCpy(Vector<char> dest, const char* src, size_t n);
241
Ben Murdochf87a2032010-10-22 12:50:53 +0100242 // Support for the profiler. Can do nothing, in which case ticks
243 // occuring in shared libraries will not be properly accounted for.
Steve Blocka7e24c12009-10-30 11:49:00 +0000244 static void LogSharedLibraryAddresses();
245
Ben Murdochf87a2032010-10-22 12:50:53 +0100246 // 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
Steve Blockd0582a62009-12-15 09:54:21 +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
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000260 // Maximum size of the virtual memory. 0 means there is no artificial
261 // limit.
262 static intptr_t MaxVirtualMemory();
263
Steve Blocka7e24c12009-10-30 11:49:00 +0000264 // Returns the double constant NAN
265 static double nan_value();
266
Steve Blockd0582a62009-12-15 09:54:21 +0000267 // Support runtime detection of VFP3 on ARM CPUs.
268 static bool ArmCpuHasFeature(CpuFeature feature);
269
Ben Murdoch257744e2011-11-30 15:57:28 +0000270 // Support runtime detection of whether the hard float option of the
271 // EABI is used.
272 static bool ArmUsingHardFloat();
273
Steve Block44f0eee2011-05-26 01:26:41 +0100274 // Support runtime detection of FPU on MIPS CPUs.
275 static bool MipsCpuHasFeature(CpuFeature feature);
276
Steve Blocka7e24c12009-10-30 11:49:00 +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
Leon Clarkef7060e22010-06-03 12:02:55 +0100281 static void ReleaseStore(volatile AtomicWord* ptr, AtomicWord value);
282
Ben Murdoch8b112d22011-06-08 16:22:53 +0100283#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
Steve Blocka7e24c12009-10-30 11:49:00 +0000298 private:
299 static const int msPerSecond = 1000;
300
301 DISALLOW_IMPLICIT_CONSTRUCTORS(OS);
302};
303
304
305class VirtualMemory {
306 public:
307 // Reserves virtual memory with size.
308 explicit VirtualMemory(size_t size);
309 ~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_;
Iain Merrick9ac36c92010-09-13 15:29:50 +0100318 }
Steve Blocka7e24c12009-10-30 11:49:00 +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.
324 bool Commit(void* address, size_t size, bool is_executable);
325
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
Steve Blocka7e24c12009-10-30 11:49:00 +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
Ben Murdoch8b112d22011-06-08 16:22:53 +0100342class Thread {
Steve Blocka7e24c12009-10-30 11:49:00 +0000343 public:
344 // Opaque data type for thread-local storage keys.
Iain Merrick75681382010-08-19 15:07:18 +0100345 // 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 };
Steve Blocka7e24c12009-10-30 11:49:00 +0000352
Steve Block44f0eee2011-05-26 01:26:41 +0100353 struct Options {
354 Options() : name("v8:<unknown>"), stack_size(0) {}
355
356 const char* name;
357 int stack_size;
358 };
359
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000360 // Create new thread.
361 explicit Thread(const Options& options);
362 explicit Thread(const char* name);
Steve Blocka7e24c12009-10-30 11:49:00 +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
Steve Block9fac8402011-05-12 15:51:54 +0100371 inline const char* name() const {
372 return name_;
373 }
374
Steve Blocka7e24c12009-10-30 11:49:00 +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);
382 static int GetThreadLocalInt(LocalStorageKey key) {
383 return static_cast<int>(reinterpret_cast<intptr_t>(GetThreadLocal(key)));
384 }
385 static void SetThreadLocal(LocalStorageKey key, void* value);
386 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 }
392
Steve Block44f0eee2011-05-26 01:26:41 +0100393#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
Steve Blocka7e24c12009-10-30 11:49:00 +0000406 // A hint to the scheduler to let another thread run.
407 static void YieldCPU();
408
Steve Block44f0eee2011-05-26 01:26:41 +0100409
Steve Block9fac8402011-05-12 15:51:54 +0100410 // The thread name length is limited to 16 based on Linux's implementation of
411 // prctl().
412 static const int kMaxThreadNameLength = 16;
Ben Murdoch8b112d22011-06-08 16:22:53 +0100413
414 class PlatformData;
415 PlatformData* data() { return data_; }
416
Steve Blocka7e24c12009-10-30 11:49:00 +0000417 private:
Steve Block9fac8402011-05-12 15:51:54 +0100418 void set_name(const char *name);
419
Steve Blocka7e24c12009-10-30 11:49:00 +0000420 PlatformData* data_;
Ben Murdoch8b112d22011-06-08 16:22:53 +0100421
Steve Block9fac8402011-05-12 15:51:54 +0100422 char name_[kMaxThreadNameLength];
Steve Block44f0eee2011-05-26 01:26:41 +0100423 int stack_size_;
Steve Block9fac8402011-05-12 15:51:54 +0100424
Steve Blocka7e24c12009-10-30 11:49:00 +0000425 DISALLOW_COPY_AND_ASSIGN(Thread);
426};
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;
Ben Murdochb0fe1622011-05-05 13:52:32 +0100448
449 // Tries to lock the given mutex. Returns whether the mutex was
450 // successfully locked.
451 virtual bool TryLock() = 0;
Steve Blocka7e24c12009-10-30 11:49:00 +0000452};
453
454
455// ----------------------------------------------------------------------------
Ben Murdoch8b112d22011-06-08 16:22:53 +0100456// ScopedLock
Steve Blocka7e24c12009-10-30 11:49:00 +0000457//
Ben Murdoch8b112d22011-06-08 16:22:53 +0100458// Stack-allocated ScopedLocks provide block-scoped locking and
459// unlocking of a mutex.
Steve Blocka7e24c12009-10-30 11:49:00 +0000460class ScopedLock {
461 public:
462 explicit ScopedLock(Mutex* mutex): mutex_(mutex) {
Steve Block44f0eee2011-05-26 01:26:41 +0100463 ASSERT(mutex_ != NULL);
Steve Blocka7e24c12009-10-30 11:49:00 +0000464 mutex_->Lock();
465 }
466 ~ScopedLock() {
467 mutex_->Unlock();
468 }
469
470 private:
471 Mutex* mutex_;
472 DISALLOW_COPY_AND_ASSIGN(ScopedLock);
473};
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
489 // Suspends the calling thread until the semaphore counter is non zero
490 // and then decrements the semaphore counter.
491 virtual void Wait() = 0;
492
493 // 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
499 // Increments the semaphore counter.
500 virtual void Signal() = 0;
501};
502
503
504// ----------------------------------------------------------------------------
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
520 // 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
525 // Data Transimission
526 virtual int Send(const char* data, int len) const = 0;
527 virtual int Receive(char* data, int len) const = 0;
528
529 // Set the value of the SO_REUSEADDR socket option.
530 virtual bool SetReuseAddress(bool reuse_address) = 0;
531
532 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
Steve Blocka7e24c12009-10-30 11:49:00 +0000543// ----------------------------------------------------------------------------
544// Sampler
545//
546// 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.
549
550// TickSample captures the information collected for each sample.
551class TickSample {
552 public:
Leon Clarked91b9f72010-01-27 17:25:45 +0000553 TickSample()
Steve Block6ded16b2010-05-10 14:33:55 +0100554 : state(OTHER),
555 pc(NULL),
Leon Clarked91b9f72010-01-27 17:25:45 +0000556 sp(NULL),
557 fp(NULL),
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100558 tos(NULL),
Ben Murdoch8b112d22011-06-08 16:22:53 +0100559 frames_count(0),
560 has_external_callback(false) {}
Steve Block6ded16b2010-05-10 14:33:55 +0100561 StateTag state; // The state of the VM.
Steve Block44f0eee2011-05-26 01:26:41 +0100562 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 };
Steve Block6ded16b2010-05-10 14:33:55 +0100569 static const int kMaxFramesCount = 64;
570 Address stack[kMaxFramesCount]; // Call stack.
Steve Block44f0eee2011-05-26 01:26:41 +0100571 int frames_count : 8; // Number of captured frames.
572 bool has_external_callback : 1;
Steve Blocka7e24c12009-10-30 11:49:00 +0000573};
574
Steve Blocka7e24c12009-10-30 11:49:00 +0000575class Sampler {
576 public:
577 // Initialize sampler.
Steve Block44f0eee2011-05-26 01:26:41 +0100578 Sampler(Isolate* isolate, int interval);
Steve Blocka7e24c12009-10-30 11:49:00 +0000579 virtual ~Sampler();
580
Steve Block44f0eee2011-05-26 01:26:41 +0100581 int interval() const { return interval_; }
582
Steve Blocka7e24c12009-10-30 11:49:00 +0000583 // Performs stack sampling.
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -0800584 void SampleStack(TickSample* sample) {
585 DoSampleStack(sample);
586 IncSamplesTaken();
587 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000588
589 // This method is called for each sampling period with the current
590 // program counter.
591 virtual void Tick(TickSample* sample) = 0;
592
593 // Start and stop sampler.
594 void Start();
595 void Stop();
596
Ben Murdochf87a2032010-10-22 12:50:53 +0100597 // Is the sampler used for profiling?
Ben Murdochb0fe1622011-05-05 13:52:32 +0100598 bool IsProfiling() const { return NoBarrier_Load(&profiling_) > 0; }
599 void IncreaseProfilingDepth() { NoBarrier_AtomicIncrement(&profiling_, 1); }
600 void DecreaseProfilingDepth() { NoBarrier_AtomicIncrement(&profiling_, -1); }
Steve Blocka7e24c12009-10-30 11:49:00 +0000601
602 // Whether the sampler is running (that is, consumes resources).
Ben Murdochb0fe1622011-05-05 13:52:32 +0100603 bool IsActive() const { return NoBarrier_Load(&active_); }
Steve Blocka7e24c12009-10-30 11:49:00 +0000604
Steve Block44f0eee2011-05-26 01:26:41 +0100605 Isolate* isolate() { return isolate_; }
606
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -0800607 // 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
Steve Blocka7e24c12009-10-30 11:49:00 +0000611 class PlatformData;
Steve Block44f0eee2011-05-26 01:26:41 +0100612 PlatformData* data() { return data_; }
613
614 PlatformData* platform_data() { return data_; }
Steve Blocka7e24c12009-10-30 11:49:00 +0000615
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -0800616 protected:
617 virtual void DoSampleStack(TickSample* sample) = 0;
618
Steve Blocka7e24c12009-10-30 11:49:00 +0000619 private:
Ben Murdochb0fe1622011-05-05 13:52:32 +0100620 void SetActive(bool value) { NoBarrier_Store(&active_, value); }
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -0800621 void IncSamplesTaken() { if (++samples_taken_ < 0) samples_taken_ = 0; }
622
Steve Block44f0eee2011-05-26 01:26:41 +0100623 Isolate* isolate_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000624 const int interval_;
Ben Murdochb0fe1622011-05-05 13:52:32 +0100625 Atomic32 profiling_;
626 Atomic32 active_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000627 PlatformData* data_; // Platform specific data.
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -0800628 int samples_taken_; // Counts stack samples taken.
Steve Blocka7e24c12009-10-30 11:49:00 +0000629 DISALLOW_IMPLICIT_CONSTRUCTORS(Sampler);
630};
631
Steve Block44f0eee2011-05-26 01:26:41 +0100632
Steve Blocka7e24c12009-10-30 11:49:00 +0000633} } // namespace v8::internal
634
635#endif // V8_PLATFORM_H_