blob: 755e8cdaf65795810d3ae3a3431d2e019dc9afa0 [file] [log] [blame]
ager@chromium.org9258b6b2008-09-11 09:11:10 +00001// Copyright 2006-2008 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
ager@chromium.orgbb29dc92009-03-24 13:25:23 +000028// Platform specific code for Linux goes here. For the POSIX comaptible parts
29// the implementation is in platform-posix.cc.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000030
31#include <pthread.h>
32#include <semaphore.h>
33#include <signal.h>
lrn@chromium.org5d00b602011-01-05 09:51:43 +000034#include <sys/prctl.h>
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000035#include <sys/time.h>
36#include <sys/resource.h>
lrn@chromium.org303ada72010-10-27 09:33:13 +000037#include <sys/syscall.h>
ager@chromium.org381abbb2009-02-25 13:23:22 +000038#include <sys/types.h>
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000039#include <stdlib.h>
40
41// Ubuntu Dapper requires memory pages to be marked as
42// executable. Otherwise, OS raises an exception when executing code
43// in that page.
44#include <sys/types.h> // mmap & munmap
ager@chromium.org236ad962008-09-25 09:45:57 +000045#include <sys/mman.h> // mmap & munmap
46#include <sys/stat.h> // open
ager@chromium.orgbb29dc92009-03-24 13:25:23 +000047#include <fcntl.h> // open
48#include <unistd.h> // sysconf
49#ifdef __GLIBC__
ager@chromium.org236ad962008-09-25 09:45:57 +000050#include <execinfo.h> // backtrace, backtrace_symbols
ager@chromium.orgbb29dc92009-03-24 13:25:23 +000051#endif // def __GLIBC__
ager@chromium.org236ad962008-09-25 09:45:57 +000052#include <strings.h> // index
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000053#include <errno.h>
54#include <stdarg.h>
55
56#undef MAP_TYPE
57
58#include "v8.h"
59
60#include "platform.h"
ager@chromium.orga1645e22009-09-09 19:27:10 +000061#include "top.h"
62#include "v8threads.h"
kasperl@chromium.orga5551262010-12-07 12:49:48 +000063#include "vm-state-inl.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000064
65
kasperl@chromium.org71affb52009-05-26 05:44:31 +000066namespace v8 {
67namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000068
69// 0 is never a valid thread id on Linux since tids and pids share a
70// name space and pid 0 is reserved (see man 2 kill).
71static const pthread_t kNoThread = (pthread_t) 0;
72
73
74double ceiling(double x) {
75 return ceil(x);
76}
77
78
79void OS::Setup() {
80 // Seed the random number generator.
ager@chromium.org9258b6b2008-09-11 09:11:10 +000081 // Convert the current time to a 64-bit integer first, before converting it
82 // to an unsigned. Going directly can cause an overflow and the seed to be
83 // set to all ones. The seed will be identical for different instances that
84 // call this setup code within the same millisecond.
85 uint64_t seed = static_cast<uint64_t>(TimeCurrentMillis());
86 srandom(static_cast<unsigned int>(seed));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000087}
88
89
ager@chromium.orgc4c92722009-11-18 14:12:51 +000090uint64_t OS::CpuFeaturesImpliedByPlatform() {
91#if (defined(__VFP_FP__) && !defined(__SOFTFP__))
92 // Here gcc is telling us that we are on an ARM and gcc is assuming that we
93 // have VFP3 instructions. If gcc can assume it then so can we.
94 return 1u << VFP3;
ager@chromium.org5c838252010-02-19 08:53:10 +000095#elif CAN_USE_ARMV7_INSTRUCTIONS
96 return 1u << ARMv7;
ager@chromium.orgc4c92722009-11-18 14:12:51 +000097#else
98 return 0; // Linux runs on anything.
99#endif
100}
101
102
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000103#ifdef __arm__
lrn@chromium.orgfa943b72010-11-03 08:14:36 +0000104static bool CPUInfoContainsString(const char * search_string) {
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000105 const char* file_name = "/proc/cpuinfo";
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000106 // This is written as a straight shot one pass parser
107 // and not using STL string and ifstream because,
108 // on Linux, it's reading from a (non-mmap-able)
109 // character special device.
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000110 FILE* f = NULL;
111 const char* what = search_string;
112
113 if (NULL == (f = fopen(file_name, "r")))
114 return false;
115
116 int k;
117 while (EOF != (k = fgetc(f))) {
118 if (k == *what) {
119 ++what;
120 while ((*what != '\0') && (*what == fgetc(f))) {
121 ++what;
122 }
123 if (*what == '\0') {
124 fclose(f);
125 return true;
126 } else {
127 what = search_string;
128 }
129 }
130 }
131 fclose(f);
132
133 // Did not find string in the proc file.
134 return false;
135}
lrn@chromium.orgfa943b72010-11-03 08:14:36 +0000136
137bool OS::ArmCpuHasFeature(CpuFeature feature) {
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000138 const char* search_string = NULL;
lrn@chromium.orgfa943b72010-11-03 08:14:36 +0000139 // Simple detection of VFP at runtime for Linux.
140 // It is based on /proc/cpuinfo, which reveals hardware configuration
141 // to user-space applications. According to ARM (mid 2009), no similar
142 // facility is universally available on the ARM architectures,
143 // so it's up to individual OSes to provide such.
144 switch (feature) {
145 case VFP3:
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000146 search_string = "vfpv3";
lrn@chromium.orgfa943b72010-11-03 08:14:36 +0000147 break;
148 case ARMv7:
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000149 search_string = "ARMv7";
lrn@chromium.orgfa943b72010-11-03 08:14:36 +0000150 break;
151 default:
152 UNREACHABLE();
153 }
154
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000155 if (CPUInfoContainsString(search_string)) {
156 return true;
157 }
158
159 if (feature == VFP3) {
160 // Some old kernels will report vfp not vfpv3. Here we make a last attempt
161 // to detect vfpv3 by checking for vfp *and* neon, since neon is only
162 // available on architectures with vfpv3.
163 // Checking neon on its own is not enough as it is possible to have neon
164 // without vfp.
165 if (CPUInfoContainsString("vfp") && CPUInfoContainsString("neon")) {
lrn@chromium.orgfa943b72010-11-03 08:14:36 +0000166 return true;
167 }
168 }
169
170 return false;
171}
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000172#endif // def __arm__
173
174
ager@chromium.org236ad962008-09-25 09:45:57 +0000175int OS::ActivationFrameAlignment() {
ager@chromium.orge2902be2009-06-08 12:21:35 +0000176#ifdef V8_TARGET_ARCH_ARM
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +0000177 // On EABI ARM targets this is required for fp correctness in the
178 // runtime system.
ager@chromium.org3a6061e2009-03-12 14:24:36 +0000179 return 8;
ager@chromium.org5c838252010-02-19 08:53:10 +0000180#elif V8_TARGET_ARCH_MIPS
181 return 8;
182#endif
ricow@chromium.orgc9c80822010-04-21 08:22:37 +0000183 // With gcc 4.4 the tree vectorization optimizer can generate code
ager@chromium.orge2902be2009-06-08 12:21:35 +0000184 // that requires 16 byte alignment such as movdqa on x86.
185 return 16;
ager@chromium.org236ad962008-09-25 09:45:57 +0000186}
187
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000188
kmillikin@chromium.org9155e252010-05-26 13:27:57 +0000189void OS::ReleaseStore(volatile AtomicWord* ptr, AtomicWord value) {
ricow@chromium.org30ce4112010-05-31 10:38:25 +0000190#if defined(V8_TARGET_ARCH_ARM) && defined(__arm__)
191 // Only use on ARM hardware.
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000192 MemoryBarrier();
kmillikin@chromium.org9155e252010-05-26 13:27:57 +0000193#else
194 __asm__ __volatile__("" : : : "memory");
195 // An x86 store acts as a release barrier.
196#endif
197 *ptr = value;
198}
199
200
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000201const char* OS::LocalTimezone(double time) {
202 if (isnan(time)) return "";
203 time_t tv = static_cast<time_t>(floor(time/msPerSecond));
204 struct tm* t = localtime(&tv);
205 if (NULL == t) return "";
206 return t->tm_zone;
207}
208
209
210double OS::LocalTimeOffset() {
211 time_t tv = time(NULL);
212 struct tm* t = localtime(&tv);
213 // tm_gmtoff includes any daylight savings offset, so subtract it.
214 return static_cast<double>(t->tm_gmtoff * msPerSecond -
215 (t->tm_isdst > 0 ? 3600 * msPerSecond : 0));
216}
217
218
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000219// We keep the lowest and highest addresses mapped as a quick way of
220// determining that pointers are outside the heap (used mostly in assertions
221// and verification). The estimate is conservative, ie, not all addresses in
222// 'allocated' space are actually allocated to our heap. The range is
223// [lowest, highest), inclusive on the low and and exclusive on the high end.
224static void* lowest_ever_allocated = reinterpret_cast<void*>(-1);
225static void* highest_ever_allocated = reinterpret_cast<void*>(0);
226
227
228static void UpdateAllocatedSpaceLimits(void* address, int size) {
229 lowest_ever_allocated = Min(lowest_ever_allocated, address);
230 highest_ever_allocated =
231 Max(highest_ever_allocated,
232 reinterpret_cast<void*>(reinterpret_cast<char*>(address) + size));
233}
234
235
236bool OS::IsOutsideAllocatedSpace(void* address) {
237 return address < lowest_ever_allocated || address >= highest_ever_allocated;
238}
239
240
241size_t OS::AllocateAlignment() {
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000242 return sysconf(_SC_PAGESIZE);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000243}
244
245
kasper.lund7276f142008-07-30 08:49:36 +0000246void* OS::Allocate(const size_t requested,
247 size_t* allocated,
kasperl@chromium.orgf5aa8372009-03-24 14:47:14 +0000248 bool is_executable) {
sgjesse@chromium.orgc3a01972010-08-04 09:46:24 +0000249 // TODO(805): Port randomization of allocated executable memory to Linux.
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000250 const size_t msize = RoundUp(requested, sysconf(_SC_PAGESIZE));
kasperl@chromium.orgf5aa8372009-03-24 14:47:14 +0000251 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
kasper.lund7276f142008-07-30 08:49:36 +0000252 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000253 if (mbase == MAP_FAILED) {
254 LOG(StringEvent("OS::Allocate", "mmap failed"));
255 return NULL;
256 }
257 *allocated = msize;
258 UpdateAllocatedSpaceLimits(mbase, msize);
259 return mbase;
260}
261
262
kasperl@chromium.orgf5aa8372009-03-24 14:47:14 +0000263void OS::Free(void* address, const size_t size) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000264 // TODO(1240712): munmap has a return value which is ignored here.
ager@chromium.orga1645e22009-09-09 19:27:10 +0000265 int result = munmap(address, size);
266 USE(result);
267 ASSERT(result == 0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000268}
269
270
kasperl@chromium.orgf5aa8372009-03-24 14:47:14 +0000271#ifdef ENABLE_HEAP_PROTECTION
272
273void OS::Protect(void* address, size_t size) {
274 // TODO(1240712): mprotect has a return value which is ignored here.
275 mprotect(address, size, PROT_READ);
276}
277
278
279void OS::Unprotect(void* address, size_t size, bool is_executable) {
280 // TODO(1240712): mprotect has a return value which is ignored here.
281 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
282 mprotect(address, size, prot);
283}
284
285#endif
286
287
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000288void OS::Sleep(int milliseconds) {
289 unsigned int ms = static_cast<unsigned int>(milliseconds);
290 usleep(1000 * ms);
291}
292
293
294void OS::Abort() {
295 // Redirect to std abort to signal abnormal program termination.
296 abort();
297}
298
299
kasper.lund7276f142008-07-30 08:49:36 +0000300void OS::DebugBreak() {
ager@chromium.org5ec48922009-05-05 07:25:34 +0000301// TODO(lrn): Introduce processor define for runtime system (!= V8_ARCH_x,
302// which is the architecture of generated code).
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000303#if (defined(__arm__) || defined(__thumb__))
304# if defined(CAN_USE_ARMV5_INSTRUCTIONS)
kasper.lund7276f142008-07-30 08:49:36 +0000305 asm("bkpt 0");
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000306# endif
ager@chromium.org5c838252010-02-19 08:53:10 +0000307#elif defined(__mips__)
308 asm("break");
kasper.lund7276f142008-07-30 08:49:36 +0000309#else
310 asm("int $3");
311#endif
312}
313
314
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000315class PosixMemoryMappedFile : public OS::MemoryMappedFile {
316 public:
317 PosixMemoryMappedFile(FILE* file, void* memory, int size)
318 : file_(file), memory_(memory), size_(size) { }
319 virtual ~PosixMemoryMappedFile();
320 virtual void* memory() { return memory_; }
321 private:
322 FILE* file_;
323 void* memory_;
324 int size_;
325};
326
327
328OS::MemoryMappedFile* OS::MemoryMappedFile::create(const char* name, int size,
329 void* initial) {
330 FILE* file = fopen(name, "w+");
331 if (file == NULL) return NULL;
ager@chromium.org9258b6b2008-09-11 09:11:10 +0000332 int result = fwrite(initial, size, 1, file);
333 if (result < 1) {
334 fclose(file);
335 return NULL;
336 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000337 void* memory =
338 mmap(0, size, PROT_READ | PROT_WRITE, MAP_SHARED, fileno(file), 0);
339 return new PosixMemoryMappedFile(file, memory, size);
340}
341
342
343PosixMemoryMappedFile::~PosixMemoryMappedFile() {
344 if (memory_) munmap(memory_, size_);
345 fclose(file_);
346}
347
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000348
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000349void OS::LogSharedLibraryAddresses() {
350#ifdef ENABLE_LOGGING_AND_PROFILING
sgjesse@chromium.orgb9d7da12009-08-05 08:38:10 +0000351 // This function assumes that the layout of the file is as follows:
352 // hex_start_addr-hex_end_addr rwxp <unused data> [binary_file_name]
353 // If we encounter an unexpected situation we abort scanning further entries.
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000354 FILE* fp = fopen("/proc/self/maps", "r");
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +0000355 if (fp == NULL) return;
sgjesse@chromium.orgb9d7da12009-08-05 08:38:10 +0000356
357 // Allocate enough room to be able to store a full file name.
358 const int kLibNameLen = FILENAME_MAX + 1;
359 char* lib_name = reinterpret_cast<char*>(malloc(kLibNameLen));
360
361 // This loop will terminate once the scanning hits an EOF.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000362 while (true) {
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +0000363 uintptr_t start, end;
364 char attr_r, attr_w, attr_x, attr_p;
sgjesse@chromium.orgb9d7da12009-08-05 08:38:10 +0000365 // Parse the addresses and permission bits at the beginning of the line.
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +0000366 if (fscanf(fp, "%" V8PRIxPTR "-%" V8PRIxPTR, &start, &end) != 2) break;
367 if (fscanf(fp, " %c%c%c%c", &attr_r, &attr_w, &attr_x, &attr_p) != 4) break;
sgjesse@chromium.orgb9d7da12009-08-05 08:38:10 +0000368
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +0000369 int c;
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000370 if (attr_r == 'r' && attr_w != 'w' && attr_x == 'x') {
371 // Found a read-only executable entry. Skip characters until we reach
sgjesse@chromium.orgb9d7da12009-08-05 08:38:10 +0000372 // the beginning of the filename or the end of the line.
373 do {
374 c = getc(fp);
375 } while ((c != EOF) && (c != '\n') && (c != '/'));
376 if (c == EOF) break; // EOF: Was unexpected, just exit.
377
378 // Process the filename if found.
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +0000379 if (c == '/') {
sgjesse@chromium.orgb9d7da12009-08-05 08:38:10 +0000380 ungetc(c, fp); // Push the '/' back into the stream to be read below.
381
382 // Read to the end of the line. Exit if the read fails.
383 if (fgets(lib_name, kLibNameLen, fp) == NULL) break;
384
385 // Drop the newline character read by fgets. We do not need to check
386 // for a zero-length string because we know that we at least read the
387 // '/' character.
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +0000388 lib_name[strlen(lib_name) - 1] = '\0';
389 } else {
sgjesse@chromium.orgb9d7da12009-08-05 08:38:10 +0000390 // No library name found, just record the raw address range.
391 snprintf(lib_name, kLibNameLen,
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +0000392 "%08" V8PRIxPTR "-%08" V8PRIxPTR, start, end);
393 }
394 LOG(SharedLibraryEvent(lib_name, start, end));
sgjesse@chromium.orgb9d7da12009-08-05 08:38:10 +0000395 } else {
396 // Entry not describing executable data. Skip to end of line to setup
397 // reading the next entry.
398 do {
399 c = getc(fp);
400 } while ((c != EOF) && (c != '\n'));
401 if (c == EOF) break;
ager@chromium.org5aa501c2009-06-23 07:57:28 +0000402 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000403 }
sgjesse@chromium.orgb9d7da12009-08-05 08:38:10 +0000404 free(lib_name);
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +0000405 fclose(fp);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000406#endif
407}
408
409
whesse@chromium.org4a5224e2010-10-20 12:37:07 +0000410static const char kGCFakeMmap[] = "/tmp/__v8_gc__";
411
412
413void OS::SignalCodeMovingGC() {
414#ifdef ENABLE_LOGGING_AND_PROFILING
415 // Support for ll_prof.py.
416 //
417 // The Linux profiler built into the kernel logs all mmap's with
418 // PROT_EXEC so that analysis tools can properly attribute ticks. We
419 // do a mmap with a name known by ll_prof.py and immediately munmap
420 // it. This injects a GC marker into the stream of events generated
421 // by the kernel and allows us to synchronize V8 code log and the
422 // kernel log.
423 int size = sysconf(_SC_PAGESIZE);
424 FILE* f = fopen(kGCFakeMmap, "w+");
425 void* addr = mmap(NULL, size, PROT_READ | PROT_EXEC, MAP_PRIVATE,
426 fileno(f), 0);
427 ASSERT(addr != MAP_FAILED);
428 munmap(addr, size);
429 fclose(f);
430#endif
431}
432
433
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000434int OS::StackWalk(Vector<OS::StackFrame> frames) {
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000435 // backtrace is a glibc extension.
436#ifdef __GLIBC__
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000437 int frames_size = frames.length();
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +0000438 ScopedVector<void*> addresses(frames_size);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000439
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +0000440 int frames_count = backtrace(addresses.start(), frames_size);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000441
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +0000442 char** symbols = backtrace_symbols(addresses.start(), frames_count);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000443 if (symbols == NULL) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000444 return kStackWalkError;
445 }
446
447 for (int i = 0; i < frames_count; i++) {
448 frames[i].address = addresses[i];
449 // Format a text representation of the frame based on the information
450 // available.
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000451 SNPrintF(MutableCStrVector(frames[i].text, kStackWalkMaxTextLen),
452 "%s",
453 symbols[i]);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000454 // Make sure line termination is in place.
455 frames[i].text[kStackWalkMaxTextLen - 1] = '\0';
456 }
457
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000458 free(symbols);
459
460 return frames_count;
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000461#else // ndef __GLIBC__
462 return 0;
463#endif // ndef __GLIBC__
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000464}
465
466
467// Constants used for mmap.
468static const int kMmapFd = -1;
469static const int kMmapFdOffset = 0;
470
471
ager@chromium.org9258b6b2008-09-11 09:11:10 +0000472VirtualMemory::VirtualMemory(size_t size) {
473 address_ = mmap(NULL, size, PROT_NONE,
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000474 MAP_PRIVATE | MAP_ANONYMOUS | MAP_NORESERVE,
475 kMmapFd, kMmapFdOffset);
476 size_ = size;
477}
478
479
480VirtualMemory::~VirtualMemory() {
481 if (IsReserved()) {
482 if (0 == munmap(address(), size())) address_ = MAP_FAILED;
483 }
484}
485
486
487bool VirtualMemory::IsReserved() {
488 return address_ != MAP_FAILED;
489}
490
491
kasperl@chromium.orgf5aa8372009-03-24 14:47:14 +0000492bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) {
493 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
kasper.lund7276f142008-07-30 08:49:36 +0000494 if (MAP_FAILED == mmap(address, size, prot,
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000495 MAP_PRIVATE | MAP_ANONYMOUS | MAP_FIXED,
496 kMmapFd, kMmapFdOffset)) {
497 return false;
498 }
499
500 UpdateAllocatedSpaceLimits(address, size);
501 return true;
502}
503
504
505bool VirtualMemory::Uncommit(void* address, size_t size) {
506 return mmap(address, size, PROT_NONE,
ager@chromium.orga1645e22009-09-09 19:27:10 +0000507 MAP_PRIVATE | MAP_ANONYMOUS | MAP_NORESERVE | MAP_FIXED,
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000508 kMmapFd, kMmapFdOffset) != MAP_FAILED;
509}
510
511
512class ThreadHandle::PlatformData : public Malloced {
513 public:
514 explicit PlatformData(ThreadHandle::Kind kind) {
515 Initialize(kind);
516 }
517
518 void Initialize(ThreadHandle::Kind kind) {
519 switch (kind) {
520 case ThreadHandle::SELF: thread_ = pthread_self(); break;
521 case ThreadHandle::INVALID: thread_ = kNoThread; break;
522 }
523 }
ager@chromium.org41826e72009-03-30 13:30:57 +0000524
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000525 pthread_t thread_; // Thread handle for pthread.
526};
527
528
529ThreadHandle::ThreadHandle(Kind kind) {
530 data_ = new PlatformData(kind);
531}
532
533
534void ThreadHandle::Initialize(ThreadHandle::Kind kind) {
535 data_->Initialize(kind);
536}
537
538
539ThreadHandle::~ThreadHandle() {
540 delete data_;
541}
542
543
544bool ThreadHandle::IsSelf() const {
545 return pthread_equal(data_->thread_, pthread_self());
546}
547
548
549bool ThreadHandle::IsValid() const {
550 return data_->thread_ != kNoThread;
551}
552
553
554Thread::Thread() : ThreadHandle(ThreadHandle::INVALID) {
lrn@chromium.org5d00b602011-01-05 09:51:43 +0000555 set_name("v8:<unknown>");
556}
557
558
559Thread::Thread(const char* name) : ThreadHandle(ThreadHandle::INVALID) {
560 set_name(name);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000561}
562
563
564Thread::~Thread() {
565}
566
567
568static void* ThreadEntry(void* arg) {
569 Thread* thread = reinterpret_cast<Thread*>(arg);
570 // This is also initialized by the first argument to pthread_create() but we
571 // don't know which thread will run first (the original thread or the new
572 // one) so we initialize it here too.
lrn@chromium.org5d00b602011-01-05 09:51:43 +0000573 prctl(PR_SET_NAME, thread->name(), 0, 0, 0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000574 thread->thread_handle_data()->thread_ = pthread_self();
575 ASSERT(thread->IsValid());
576 thread->Run();
577 return NULL;
578}
579
580
lrn@chromium.org5d00b602011-01-05 09:51:43 +0000581void Thread::set_name(const char* name) {
582 strncpy(name_, name, sizeof(name_));
583 name_[sizeof(name_) - 1] = '\0';
584}
585
586
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000587void Thread::Start() {
588 pthread_create(&thread_handle_data()->thread_, NULL, ThreadEntry, this);
589 ASSERT(IsValid());
590}
591
592
593void Thread::Join() {
594 pthread_join(thread_handle_data()->thread_, NULL);
595}
596
597
598Thread::LocalStorageKey Thread::CreateThreadLocalKey() {
599 pthread_key_t key;
600 int result = pthread_key_create(&key, NULL);
601 USE(result);
602 ASSERT(result == 0);
603 return static_cast<LocalStorageKey>(key);
604}
605
606
607void Thread::DeleteThreadLocalKey(LocalStorageKey key) {
608 pthread_key_t pthread_key = static_cast<pthread_key_t>(key);
609 int result = pthread_key_delete(pthread_key);
610 USE(result);
611 ASSERT(result == 0);
612}
613
614
615void* Thread::GetThreadLocal(LocalStorageKey key) {
616 pthread_key_t pthread_key = static_cast<pthread_key_t>(key);
617 return pthread_getspecific(pthread_key);
618}
619
620
621void Thread::SetThreadLocal(LocalStorageKey key, void* value) {
622 pthread_key_t pthread_key = static_cast<pthread_key_t>(key);
623 pthread_setspecific(pthread_key, value);
624}
625
626
627void Thread::YieldCPU() {
628 sched_yield();
629}
630
631
632class LinuxMutex : public Mutex {
633 public:
634
635 LinuxMutex() {
636 pthread_mutexattr_t attrs;
637 int result = pthread_mutexattr_init(&attrs);
638 ASSERT(result == 0);
639 result = pthread_mutexattr_settype(&attrs, PTHREAD_MUTEX_RECURSIVE);
640 ASSERT(result == 0);
641 result = pthread_mutex_init(&mutex_, &attrs);
642 ASSERT(result == 0);
643 }
644
645 virtual ~LinuxMutex() { pthread_mutex_destroy(&mutex_); }
646
647 virtual int Lock() {
648 int result = pthread_mutex_lock(&mutex_);
649 return result;
650 }
651
652 virtual int Unlock() {
653 int result = pthread_mutex_unlock(&mutex_);
654 return result;
655 }
656
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000657 virtual bool TryLock() {
658 int result = pthread_mutex_trylock(&mutex_);
659 // Return false if the lock is busy and locking failed.
660 if (result == EBUSY) {
661 return false;
662 }
663 ASSERT(result == 0); // Verify no other errors.
664 return true;
665 }
666
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000667 private:
668 pthread_mutex_t mutex_; // Pthread mutex for POSIX platforms.
669};
670
671
672Mutex* OS::CreateMutex() {
673 return new LinuxMutex();
674}
675
676
677class LinuxSemaphore : public Semaphore {
678 public:
679 explicit LinuxSemaphore(int count) { sem_init(&sem_, 0, count); }
680 virtual ~LinuxSemaphore() { sem_destroy(&sem_); }
681
kasper.lund7276f142008-07-30 08:49:36 +0000682 virtual void Wait();
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000683 virtual bool Wait(int timeout);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000684 virtual void Signal() { sem_post(&sem_); }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000685 private:
686 sem_t sem_;
687};
688
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000689
kasper.lund7276f142008-07-30 08:49:36 +0000690void LinuxSemaphore::Wait() {
691 while (true) {
692 int result = sem_wait(&sem_);
693 if (result == 0) return; // Successfully got semaphore.
694 CHECK(result == -1 && errno == EINTR); // Signal caused spurious wakeup.
695 }
696}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000697
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000698
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000699#ifndef TIMEVAL_TO_TIMESPEC
700#define TIMEVAL_TO_TIMESPEC(tv, ts) do { \
701 (ts)->tv_sec = (tv)->tv_sec; \
702 (ts)->tv_nsec = (tv)->tv_usec * 1000; \
703} while (false)
704#endif
705
706
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000707bool LinuxSemaphore::Wait(int timeout) {
708 const long kOneSecondMicros = 1000000; // NOLINT
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000709
710 // Split timeout into second and nanosecond parts.
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000711 struct timeval delta;
712 delta.tv_usec = timeout % kOneSecondMicros;
713 delta.tv_sec = timeout / kOneSecondMicros;
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000714
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000715 struct timeval current_time;
716 // Get the current time.
717 if (gettimeofday(&current_time, NULL) == -1) {
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000718 return false;
719 }
720
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000721 // Calculate time for end of timeout.
722 struct timeval end_time;
723 timeradd(&current_time, &delta, &end_time);
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000724
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000725 struct timespec ts;
726 TIMEVAL_TO_TIMESPEC(&end_time, &ts);
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000727 // Wait for semaphore signalled or timeout.
728 while (true) {
729 int result = sem_timedwait(&sem_, &ts);
730 if (result == 0) return true; // Successfully got semaphore.
731 if (result > 0) {
732 // For glibc prior to 2.3.4 sem_timedwait returns the error instead of -1.
733 errno = result;
734 result = -1;
735 }
736 if (result == -1 && errno == ETIMEDOUT) return false; // Timeout.
737 CHECK(result == -1 && errno == EINTR); // Signal caused spurious wakeup.
738 }
739}
740
741
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000742Semaphore* OS::CreateSemaphore(int count) {
743 return new LinuxSemaphore(count);
744}
745
ager@chromium.org381abbb2009-02-25 13:23:22 +0000746
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000747#ifdef ENABLE_LOGGING_AND_PROFILING
748
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000749static Sampler* active_sampler_ = NULL;
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000750static int vm_tid_ = 0;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000751
kasperl@chromium.orgacae3782009-04-11 09:17:08 +0000752
753#if !defined(__GLIBC__) && (defined(__arm__) || defined(__thumb__))
754// Android runs a fairly new Linux kernel, so signal info is there,
755// but the C library doesn't have the structs defined.
756
757struct sigcontext {
758 uint32_t trap_no;
759 uint32_t error_code;
760 uint32_t oldmask;
761 uint32_t gregs[16];
762 uint32_t arm_cpsr;
763 uint32_t fault_address;
764};
765typedef uint32_t __sigset_t;
766typedef struct sigcontext mcontext_t;
767typedef struct ucontext {
768 uint32_t uc_flags;
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000769 struct ucontext* uc_link;
kasperl@chromium.orgacae3782009-04-11 09:17:08 +0000770 stack_t uc_stack;
771 mcontext_t uc_mcontext;
772 __sigset_t uc_sigmask;
773} ucontext_t;
774enum ArmRegisters {R15 = 15, R13 = 13, R11 = 11};
775
776#endif
777
778
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000779static int GetThreadID() {
780 // Glibc doesn't provide a wrapper for gettid(2).
781 return syscall(SYS_gettid);
782}
783
784
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000785static void ProfilerSignalHandler(int signal, siginfo_t* info, void* context) {
ager@chromium.org5c838252010-02-19 08:53:10 +0000786#ifndef V8_HOST_ARCH_MIPS
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000787 USE(info);
788 if (signal != SIGPROF) return;
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000789 if (active_sampler_ == NULL || !active_sampler_->IsActive()) return;
790 if (vm_tid_ != GetThreadID()) return;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000791
lrn@chromium.org25156de2010-04-06 13:10:27 +0000792 TickSample sample_obj;
ricow@chromium.orgc9c80822010-04-21 08:22:37 +0000793 TickSample* sample = CpuProfiler::TickSampleEvent();
ager@chromium.org357bf652010-04-12 11:30:10 +0000794 if (sample == NULL) sample = &sample_obj;
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000795
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000796 // Extracting the sample from the context is extremely machine dependent.
797 ucontext_t* ucontext = reinterpret_cast<ucontext_t*>(context);
798 mcontext_t& mcontext = ucontext->uc_mcontext;
799 sample->state = Top::current_vm_state();
ager@chromium.org9085a012009-05-11 19:22:57 +0000800#if V8_HOST_ARCH_IA32
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000801 sample->pc = reinterpret_cast<Address>(mcontext.gregs[REG_EIP]);
802 sample->sp = reinterpret_cast<Address>(mcontext.gregs[REG_ESP]);
803 sample->fp = reinterpret_cast<Address>(mcontext.gregs[REG_EBP]);
ager@chromium.org9085a012009-05-11 19:22:57 +0000804#elif V8_HOST_ARCH_X64
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000805 sample->pc = reinterpret_cast<Address>(mcontext.gregs[REG_RIP]);
806 sample->sp = reinterpret_cast<Address>(mcontext.gregs[REG_RSP]);
807 sample->fp = reinterpret_cast<Address>(mcontext.gregs[REG_RBP]);
ager@chromium.org9085a012009-05-11 19:22:57 +0000808#elif V8_HOST_ARCH_ARM
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +0000809// An undefined macro evaluates to 0, so this applies to Android's Bionic also.
810#if (__GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ <= 3))
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000811 sample->pc = reinterpret_cast<Address>(mcontext.gregs[R15]);
812 sample->sp = reinterpret_cast<Address>(mcontext.gregs[R13]);
813 sample->fp = reinterpret_cast<Address>(mcontext.gregs[R11]);
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +0000814#else
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000815 sample->pc = reinterpret_cast<Address>(mcontext.arm_pc);
816 sample->sp = reinterpret_cast<Address>(mcontext.arm_sp);
817 sample->fp = reinterpret_cast<Address>(mcontext.arm_fp);
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +0000818#endif
ager@chromium.org5c838252010-02-19 08:53:10 +0000819#elif V8_HOST_ARCH_MIPS
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000820 // Implement this on MIPS.
821 UNIMPLEMENTED();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000822#endif
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000823 active_sampler_->SampleStack(sample);
lrn@chromium.org25156de2010-04-06 13:10:27 +0000824 active_sampler_->Tick(sample);
825#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000826}
827
828
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000829class Sampler::PlatformData : public Malloced {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000830 public:
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000831 enum SleepInterval {
832 FULL_INTERVAL,
833 HALF_INTERVAL
834 };
835
lrn@chromium.org303ada72010-10-27 09:33:13 +0000836 explicit PlatformData(Sampler* sampler)
837 : sampler_(sampler),
838 signal_handler_installed_(false),
839 vm_tgid_(getpid()),
lrn@chromium.org303ada72010-10-27 09:33:13 +0000840 signal_sender_launched_(false) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000841 }
842
lrn@chromium.org303ada72010-10-27 09:33:13 +0000843 void SignalSender() {
844 while (sampler_->IsActive()) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000845 if (rate_limiter_.SuspendIfNecessary()) continue;
846 if (sampler_->IsProfiling() && RuntimeProfiler::IsEnabled()) {
847 SendProfilingSignal();
848 Sleep(HALF_INTERVAL);
849 RuntimeProfiler::NotifyTick();
850 Sleep(HALF_INTERVAL);
851 } else {
852 if (sampler_->IsProfiling()) SendProfilingSignal();
853 if (RuntimeProfiler::IsEnabled()) RuntimeProfiler::NotifyTick();
854 Sleep(FULL_INTERVAL);
whesse@chromium.orgf0ac72d2010-11-08 12:47:26 +0000855 }
lrn@chromium.org303ada72010-10-27 09:33:13 +0000856 }
857 }
858
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000859 void SendProfilingSignal() {
860 // Glibc doesn't provide a wrapper for tgkill(2).
861 syscall(SYS_tgkill, vm_tgid_, vm_tid_, SIGPROF);
862 }
863
864 void Sleep(SleepInterval full_or_half) {
865 // Convert ms to us and subtract 100 us to compensate delays
866 // occuring during signal delivery.
867 useconds_t interval = sampler_->interval_ * 1000 - 100;
868 if (full_or_half == HALF_INTERVAL) interval /= 2;
869 int result = usleep(interval);
870#ifdef DEBUG
871 if (result != 0 && errno != EINTR) {
872 fprintf(stderr,
873 "SignalSender usleep error; interval = %u, errno = %d\n",
874 interval,
875 errno);
876 ASSERT(result == 0 || errno == EINTR);
877 }
878#endif
879 USE(result);
880 }
881
lrn@chromium.org303ada72010-10-27 09:33:13 +0000882 Sampler* sampler_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000883 bool signal_handler_installed_;
884 struct sigaction old_signal_handler_;
lrn@chromium.org303ada72010-10-27 09:33:13 +0000885 int vm_tgid_;
lrn@chromium.org303ada72010-10-27 09:33:13 +0000886 bool signal_sender_launched_;
887 pthread_t signal_sender_thread_;
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000888 RuntimeProfilerRateLimiter rate_limiter_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000889};
890
891
lrn@chromium.org303ada72010-10-27 09:33:13 +0000892static void* SenderEntry(void* arg) {
893 Sampler::PlatformData* data =
894 reinterpret_cast<Sampler::PlatformData*>(arg);
895 data->SignalSender();
896 return 0;
897}
898
899
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000900Sampler::Sampler(int interval)
whesse@chromium.org4a5224e2010-10-20 12:37:07 +0000901 : interval_(interval),
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000902 profiling_(false),
ager@chromium.orgbeb25712010-11-29 08:02:25 +0000903 active_(false),
904 samples_taken_(0) {
lrn@chromium.org303ada72010-10-27 09:33:13 +0000905 data_ = new PlatformData(this);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000906}
907
908
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000909Sampler::~Sampler() {
whesse@chromium.orgf0ac72d2010-11-08 12:47:26 +0000910 ASSERT(!data_->signal_sender_launched_);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000911 delete data_;
912}
913
914
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000915void Sampler::Start() {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000916 // There can only be one active sampler at the time on POSIX
917 // platforms.
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000918 ASSERT(!IsActive());
919 vm_tid_ = GetThreadID();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000920
921 // Request profiling signals.
922 struct sigaction sa;
923 sa.sa_sigaction = ProfilerSignalHandler;
924 sigemptyset(&sa.sa_mask);
fschneider@chromium.orge03fb642010-11-01 12:34:09 +0000925 sa.sa_flags = SA_RESTART | SA_SIGINFO;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000926 if (sigaction(SIGPROF, &sa, &data_->old_signal_handler_) != 0) return;
927 data_->signal_handler_installed_ = true;
928
lrn@chromium.org303ada72010-10-27 09:33:13 +0000929 // Start a thread that sends SIGPROF signal to VM thread.
930 // Sending the signal ourselves instead of relying on itimer provides
931 // much better accuracy.
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000932 SetActive(true);
lrn@chromium.org303ada72010-10-27 09:33:13 +0000933 if (pthread_create(
934 &data_->signal_sender_thread_, NULL, SenderEntry, data_) == 0) {
935 data_->signal_sender_launched_ = true;
936 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000937
938 // Set this sampler as the active sampler.
939 active_sampler_ = this;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000940}
941
942
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000943void Sampler::Stop() {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000944 SetActive(false);
lrn@chromium.org303ada72010-10-27 09:33:13 +0000945
946 // Wait for signal sender termination (it will exit after setting
947 // active_ to false).
948 if (data_->signal_sender_launched_) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000949 Top::WakeUpRuntimeProfilerThreadBeforeShutdown();
lrn@chromium.org303ada72010-10-27 09:33:13 +0000950 pthread_join(data_->signal_sender_thread_, NULL);
951 data_->signal_sender_launched_ = false;
952 }
953
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000954 // Restore old signal handler
955 if (data_->signal_handler_installed_) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000956 sigaction(SIGPROF, &data_->old_signal_handler_, 0);
957 data_->signal_handler_installed_ = false;
958 }
959
960 // This sampler is no longer the active sampler.
961 active_sampler_ = NULL;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000962}
963
ager@chromium.orga1645e22009-09-09 19:27:10 +0000964
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000965#endif // ENABLE_LOGGING_AND_PROFILING
966
967} } // namespace v8::internal