blob: 5a603d63e7fad78bf0f6d780b8dab3df55c7b769 [file] [log] [blame]
jkummerow@chromium.org05ed9dd2012-01-23 14:42:48 +00001// Copyright 2012 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// Platform specific code for Win32.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000029
kasperl@chromium.orga5551262010-12-07 12:49:48 +000030#define V8_WIN32_HEADERS_FULL
31#include "win32-headers.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000032
33#include "v8.h"
34
ulan@chromium.org9a21ec42012-03-06 08:42:24 +000035#include "codegen.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000036#include "platform.h"
kasperl@chromium.orga5551262010-12-07 12:49:48 +000037#include "vm-state-inl.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000038
iposva@chromium.org245aa852009-02-10 00:49:54 +000039#ifdef _MSC_VER
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000040
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000041// Case-insensitive bounded string comparisons. Use stricmp() on Win32. Usually
42// defined in strings.h.
43int strncasecmp(const char* s1, const char* s2, int n) {
kasperl@chromium.orgb9123622008-09-17 14:05:56 +000044 return _strnicmp(s1, s2, n);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000045}
46
iposva@chromium.org245aa852009-02-10 00:49:54 +000047#endif // _MSC_VER
48
49
50// Extra functions for MinGW. Most of these are the _s functions which are in
51// the Microsoft Visual Studio C++ CRT.
52#ifdef __MINGW32__
53
54int localtime_s(tm* out_tm, const time_t* time) {
55 tm* posix_local_time_struct = localtime(time);
56 if (posix_local_time_struct == NULL) return 1;
57 *out_tm = *posix_local_time_struct;
58 return 0;
59}
60
61
iposva@chromium.org245aa852009-02-10 00:49:54 +000062int fopen_s(FILE** pFile, const char* filename, const char* mode) {
63 *pFile = fopen(filename, mode);
64 return *pFile != NULL ? 0 : 1;
65}
66
67
kmillikin@chromium.orgbe6bd102012-02-23 08:45:21 +000068#ifndef __MINGW64_VERSION_MAJOR
sgjesse@chromium.org6db88712011-07-11 11:41:22 +000069#define _TRUNCATE 0
70#define STRUNCATE 80
kmillikin@chromium.orgbe6bd102012-02-23 08:45:21 +000071#endif // __MINGW64_VERSION_MAJOR
72
73
iposva@chromium.org245aa852009-02-10 00:49:54 +000074int _vsnprintf_s(char* buffer, size_t sizeOfBuffer, size_t count,
75 const char* format, va_list argptr) {
sgjesse@chromium.org6db88712011-07-11 11:41:22 +000076 ASSERT(count == _TRUNCATE);
iposva@chromium.org245aa852009-02-10 00:49:54 +000077 return _vsnprintf(buffer, sizeOfBuffer, format, argptr);
78}
iposva@chromium.org245aa852009-02-10 00:49:54 +000079
80
sgjesse@chromium.org6db88712011-07-11 11:41:22 +000081int strncpy_s(char* dest, size_t dest_size, const char* source, size_t count) {
82 CHECK(source != NULL);
83 CHECK(dest != NULL);
84 CHECK_GT(dest_size, 0);
85
86 if (count == _TRUNCATE) {
87 while (dest_size > 0 && *source != 0) {
88 *(dest++) = *(source++);
89 --dest_size;
90 }
91 if (dest_size == 0) {
92 *(dest - 1) = 0;
93 return STRUNCATE;
94 }
95 } else {
96 while (dest_size > 0 && count > 0 && *source != 0) {
97 *(dest++) = *(source++);
98 --dest_size;
99 --count;
100 }
101 }
102 CHECK_GT(dest_size, 0);
103 *dest = 0;
iposva@chromium.org245aa852009-02-10 00:49:54 +0000104 return 0;
105}
106
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000107
ulan@chromium.org9a21ec42012-03-06 08:42:24 +0000108#ifndef __MINGW64_VERSION_MAJOR
109
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000110inline void MemoryBarrier() {
111 int barrier = 0;
112 __asm__ __volatile__("xchgl %%eax,%0 ":"=r" (barrier));
113}
114
ulan@chromium.org9a21ec42012-03-06 08:42:24 +0000115#endif // __MINGW64_VERSION_MAJOR
116
117
iposva@chromium.org245aa852009-02-10 00:49:54 +0000118#endif // __MINGW32__
119
120// Generate a pseudo-random number in the range 0-2^31-1. Usually
121// defined in stdlib.h. Missing in both Microsoft Visual Studio C++ and MinGW.
122int random() {
123 return rand();
124}
125
126
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000127namespace v8 {
128namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000129
sgjesse@chromium.org6db88712011-07-11 11:41:22 +0000130intptr_t OS::MaxVirtualMemory() {
131 return 0;
132}
133
134
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000135double ceiling(double x) {
136 return ceil(x);
137}
138
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000139
140static Mutex* limit_mutex = NULL;
141
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000142#if defined(V8_TARGET_ARCH_IA32)
143static OS::MemCopyFunction memcopy_function = NULL;
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000144// Defined in codegen-ia32.cc.
145OS::MemCopyFunction CreateMemCopyFunction();
146
147// Copy memory area to disjoint memory area.
148void OS::MemCopy(void* dest, const void* src, size_t size) {
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000149 // Note: here we rely on dependent reads being ordered. This is true
150 // on all architectures we currently support.
151 (*memcopy_function)(dest, src, size);
152#ifdef DEBUG
153 CHECK_EQ(0, memcmp(dest, src, size));
154#endif
155}
156#endif // V8_TARGET_ARCH_IA32
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000157
ager@chromium.org3811b432009-10-28 14:53:37 +0000158#ifdef _WIN64
159typedef double (*ModuloFunction)(double, double);
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000160static ModuloFunction modulo_function = NULL;
ager@chromium.org3811b432009-10-28 14:53:37 +0000161// Defined in codegen-x64.cc.
162ModuloFunction CreateModuloFunction();
163
jkummerow@chromium.org1456e702012-03-30 08:38:13 +0000164void init_modulo_function() {
165 modulo_function = CreateModuloFunction();
166}
167
ager@chromium.org3811b432009-10-28 14:53:37 +0000168double modulo(double x, double y) {
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000169 // Note: here we rely on dependent reads being ordered. This is true
170 // on all architectures we currently support.
171 return (*modulo_function)(x, y);
ager@chromium.org3811b432009-10-28 14:53:37 +0000172}
173#else // Win32
174
175double modulo(double x, double y) {
176 // Workaround MS fmod bugs. ECMA-262 says:
177 // dividend is finite and divisor is an infinity => result equals dividend
178 // dividend is a zero and divisor is nonzero finite => result equals dividend
179 if (!(isfinite(x) && (!isfinite(y) && !isnan(y))) &&
180 !(x == 0 && (y != 0 && isfinite(y)))) {
181 x = fmod(x, y);
182 }
183 return x;
184}
185
186#endif // _WIN64
187
ulan@chromium.org9a21ec42012-03-06 08:42:24 +0000188
yangguo@chromium.org154ff992012-03-13 08:09:54 +0000189#define UNARY_MATH_FUNCTION(name, generator) \
190static UnaryMathFunction fast_##name##_function = NULL; \
jkummerow@chromium.org1456e702012-03-30 08:38:13 +0000191void init_fast_##name##_function() { \
192 fast_##name##_function = generator; \
193} \
yangguo@chromium.org154ff992012-03-13 08:09:54 +0000194double fast_##name(double x) { \
yangguo@chromium.org154ff992012-03-13 08:09:54 +0000195 return (*fast_##name##_function)(x); \
ulan@chromium.org9a21ec42012-03-06 08:42:24 +0000196}
197
yangguo@chromium.org154ff992012-03-13 08:09:54 +0000198UNARY_MATH_FUNCTION(sin, CreateTranscendentalFunction(TranscendentalCache::SIN))
199UNARY_MATH_FUNCTION(cos, CreateTranscendentalFunction(TranscendentalCache::COS))
200UNARY_MATH_FUNCTION(tan, CreateTranscendentalFunction(TranscendentalCache::TAN))
201UNARY_MATH_FUNCTION(log, CreateTranscendentalFunction(TranscendentalCache::LOG))
202UNARY_MATH_FUNCTION(sqrt, CreateSqrtFunction())
ulan@chromium.org9a21ec42012-03-06 08:42:24 +0000203
yangguo@chromium.org154ff992012-03-13 08:09:54 +0000204#undef MATH_FUNCTION
ulan@chromium.org9a21ec42012-03-06 08:42:24 +0000205
206
danno@chromium.org8c0a43f2012-04-03 08:37:53 +0000207void MathSetup() {
208#ifdef _WIN64
209 init_modulo_function();
210#endif
211 init_fast_sin_function();
212 init_fast_cos_function();
213 init_fast_tan_function();
214 init_fast_log_function();
215 init_fast_sqrt_function();
216}
217
218
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000219// ----------------------------------------------------------------------------
220// The Time class represents time on win32. A timestamp is represented as
ulan@chromium.org2efb9002012-01-19 15:36:35 +0000221// a 64-bit integer in 100 nanoseconds since January 1, 1601 (UTC). JavaScript
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000222// timestamps are represented as a doubles in milliseconds since 00:00:00 UTC,
223// January 1, 1970.
224
225class Time {
226 public:
227 // Constructors.
228 Time();
229 explicit Time(double jstime);
230 Time(int year, int mon, int day, int hour, int min, int sec);
231
232 // Convert timestamp to JavaScript representation.
233 double ToJSTime();
234
235 // Set timestamp to current time.
236 void SetToCurrentTime();
237
238 // Returns the local timezone offset in milliseconds east of UTC. This is
239 // the number of milliseconds you must add to UTC to get local time, i.e.
240 // LocalOffset(CET) = 3600000 and LocalOffset(PST) = -28800000. This
241 // routine also takes into account whether daylight saving is effect
242 // at the time.
243 int64_t LocalOffset();
244
245 // Returns the daylight savings time offset for the time in milliseconds.
246 int64_t DaylightSavingsOffset();
247
248 // Returns a string identifying the current timezone for the
249 // timestamp taking into account daylight saving.
250 char* LocalTimezone();
251
252 private:
253 // Constants for time conversion.
iposva@chromium.org245aa852009-02-10 00:49:54 +0000254 static const int64_t kTimeEpoc = 116444736000000000LL;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000255 static const int64_t kTimeScaler = 10000;
256 static const int64_t kMsPerMinute = 60000;
257
258 // Constants for timezone information.
259 static const int kTzNameSize = 128;
260 static const bool kShortTzNames = false;
261
262 // Timezone information. We need to have static buffers for the
263 // timezone names because we return pointers to these in
264 // LocalTimezone().
265 static bool tz_initialized_;
266 static TIME_ZONE_INFORMATION tzinfo_;
267 static char std_tz_name_[kTzNameSize];
268 static char dst_tz_name_[kTzNameSize];
269
270 // Initialize the timezone information (if not already done).
271 static void TzSet();
272
273 // Guess the name of the timezone from the bias.
274 static const char* GuessTimezoneNameFromBias(int bias);
275
276 // Return whether or not daylight savings time is in effect at this time.
277 bool InDST();
278
279 // Return the difference (in milliseconds) between this timestamp and
280 // another timestamp.
281 int64_t Diff(Time* other);
282
283 // Accessor for FILETIME representation.
284 FILETIME& ft() { return time_.ft_; }
285
286 // Accessor for integer representation.
287 int64_t& t() { return time_.t_; }
288
289 // Although win32 uses 64-bit integers for representing timestamps,
290 // these are packed into a FILETIME structure. The FILETIME structure
291 // is just a struct representing a 64-bit integer. The TimeStamp union
292 // allows access to both a FILETIME and an integer representation of
293 // the timestamp.
294 union TimeStamp {
295 FILETIME ft_;
296 int64_t t_;
297 };
298
299 TimeStamp time_;
300};
301
302// Static variables.
303bool Time::tz_initialized_ = false;
304TIME_ZONE_INFORMATION Time::tzinfo_;
305char Time::std_tz_name_[kTzNameSize];
306char Time::dst_tz_name_[kTzNameSize];
307
308
309// Initialize timestamp to start of epoc.
310Time::Time() {
311 t() = 0;
312}
313
314
315// Initialize timestamp from a JavaScript timestamp.
316Time::Time(double jstime) {
ager@chromium.org41826e72009-03-30 13:30:57 +0000317 t() = static_cast<int64_t>(jstime) * kTimeScaler + kTimeEpoc;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000318}
319
320
321// Initialize timestamp from date/time components.
322Time::Time(int year, int mon, int day, int hour, int min, int sec) {
323 SYSTEMTIME st;
324 st.wYear = year;
325 st.wMonth = mon;
326 st.wDay = day;
327 st.wHour = hour;
328 st.wMinute = min;
329 st.wSecond = sec;
330 st.wMilliseconds = 0;
331 SystemTimeToFileTime(&st, &ft());
332}
333
334
335// Convert timestamp to JavaScript timestamp.
336double Time::ToJSTime() {
337 return static_cast<double>((t() - kTimeEpoc) / kTimeScaler);
338}
339
340
341// Guess the name of the timezone from the bias.
342// The guess is very biased towards the northern hemisphere.
343const char* Time::GuessTimezoneNameFromBias(int bias) {
344 static const int kHour = 60;
345 switch (-bias) {
346 case -9*kHour: return "Alaska";
347 case -8*kHour: return "Pacific";
348 case -7*kHour: return "Mountain";
349 case -6*kHour: return "Central";
350 case -5*kHour: return "Eastern";
351 case -4*kHour: return "Atlantic";
352 case 0*kHour: return "GMT";
353 case +1*kHour: return "Central Europe";
354 case +2*kHour: return "Eastern Europe";
355 case +3*kHour: return "Russia";
356 case +5*kHour + 30: return "India";
357 case +8*kHour: return "China";
358 case +9*kHour: return "Japan";
359 case +12*kHour: return "New Zealand";
360 default: return "Local";
361 }
362}
363
364
365// Initialize timezone information. The timezone information is obtained from
366// windows. If we cannot get the timezone information we fall back to CET.
367// Please notice that this code is not thread-safe.
368void Time::TzSet() {
369 // Just return if timezone information has already been initialized.
370 if (tz_initialized_) return;
371
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000372 // Initialize POSIX time zone data.
373 _tzset();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000374 // Obtain timezone information from operating system.
375 memset(&tzinfo_, 0, sizeof(tzinfo_));
376 if (GetTimeZoneInformation(&tzinfo_) == TIME_ZONE_ID_INVALID) {
377 // If we cannot get timezone information we fall back to CET.
378 tzinfo_.Bias = -60;
379 tzinfo_.StandardDate.wMonth = 10;
380 tzinfo_.StandardDate.wDay = 5;
381 tzinfo_.StandardDate.wHour = 3;
382 tzinfo_.StandardBias = 0;
383 tzinfo_.DaylightDate.wMonth = 3;
384 tzinfo_.DaylightDate.wDay = 5;
385 tzinfo_.DaylightDate.wHour = 2;
386 tzinfo_.DaylightBias = -60;
387 }
388
389 // Make standard and DST timezone names.
jkummerow@chromium.orge297f592011-06-08 10:05:15 +0000390 WideCharToMultiByte(CP_UTF8, 0, tzinfo_.StandardName, -1,
391 std_tz_name_, kTzNameSize, NULL, NULL);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000392 std_tz_name_[kTzNameSize - 1] = '\0';
jkummerow@chromium.orge297f592011-06-08 10:05:15 +0000393 WideCharToMultiByte(CP_UTF8, 0, tzinfo_.DaylightName, -1,
394 dst_tz_name_, kTzNameSize, NULL, NULL);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000395 dst_tz_name_[kTzNameSize - 1] = '\0';
396
397 // If OS returned empty string or resource id (like "@tzres.dll,-211")
398 // simply guess the name from the UTC bias of the timezone.
399 // To properly resolve the resource identifier requires a library load,
400 // which is not possible in a sandbox.
401 if (std_tz_name_[0] == '\0' || std_tz_name_[0] == '@') {
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000402 OS::SNPrintF(Vector<char>(std_tz_name_, kTzNameSize - 1),
403 "%s Standard Time",
404 GuessTimezoneNameFromBias(tzinfo_.Bias));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000405 }
406 if (dst_tz_name_[0] == '\0' || dst_tz_name_[0] == '@') {
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000407 OS::SNPrintF(Vector<char>(dst_tz_name_, kTzNameSize - 1),
408 "%s Daylight Time",
409 GuessTimezoneNameFromBias(tzinfo_.Bias));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000410 }
411
412 // Timezone information initialized.
413 tz_initialized_ = true;
414}
415
416
417// Return the difference in milliseconds between this and another timestamp.
418int64_t Time::Diff(Time* other) {
419 return (t() - other->t()) / kTimeScaler;
420}
421
422
423// Set timestamp to current time.
424void Time::SetToCurrentTime() {
425 // The default GetSystemTimeAsFileTime has a ~15.5ms resolution.
426 // Because we're fast, we like fast timers which have at least a
427 // 1ms resolution.
428 //
429 // timeGetTime() provides 1ms granularity when combined with
430 // timeBeginPeriod(). If the host application for v8 wants fast
431 // timers, it can use timeBeginPeriod to increase the resolution.
432 //
433 // Using timeGetTime() has a drawback because it is a 32bit value
434 // and hence rolls-over every ~49days.
435 //
436 // To use the clock, we use GetSystemTimeAsFileTime as our base;
437 // and then use timeGetTime to extrapolate current time from the
438 // start time. To deal with rollovers, we resync the clock
439 // any time when more than kMaxClockElapsedTime has passed or
440 // whenever timeGetTime creates a rollover.
441
442 static bool initialized = false;
443 static TimeStamp init_time;
444 static DWORD init_ticks;
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000445 static const int64_t kHundredNanosecondsPerSecond = 10000000;
446 static const int64_t kMaxClockElapsedTime =
447 60*kHundredNanosecondsPerSecond; // 1 minute
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000448
449 // If we are uninitialized, we need to resync the clock.
450 bool needs_resync = !initialized;
451
452 // Get the current time.
453 TimeStamp time_now;
454 GetSystemTimeAsFileTime(&time_now.ft_);
455 DWORD ticks_now = timeGetTime();
456
457 // Check if we need to resync due to clock rollover.
458 needs_resync |= ticks_now < init_ticks;
459
460 // Check if we need to resync due to elapsed time.
461 needs_resync |= (time_now.t_ - init_time.t_) > kMaxClockElapsedTime;
462
jkummerow@chromium.org1456e702012-03-30 08:38:13 +0000463 // Check if we need to resync due to backwards time change.
464 needs_resync |= time_now.t_ < init_time.t_;
465
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000466 // Resync the clock if necessary.
467 if (needs_resync) {
468 GetSystemTimeAsFileTime(&init_time.ft_);
469 init_ticks = ticks_now = timeGetTime();
470 initialized = true;
471 }
472
473 // Finally, compute the actual time. Why is this so hard.
474 DWORD elapsed = ticks_now - init_ticks;
475 this->time_.t_ = init_time.t_ + (static_cast<int64_t>(elapsed) * 10000);
476}
477
478
479// Return the local timezone offset in milliseconds east of UTC. This
480// takes into account whether daylight saving is in effect at the time.
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000481// Only times in the 32-bit Unix range may be passed to this function.
482// Also, adding the time-zone offset to the input must not overflow.
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000483// The function EquivalentTime() in date.js guarantees this.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000484int64_t Time::LocalOffset() {
485 // Initialize timezone information, if needed.
486 TzSet();
487
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000488 Time rounded_to_second(*this);
489 rounded_to_second.t() = rounded_to_second.t() / 1000 / kTimeScaler *
490 1000 * kTimeScaler;
491 // Convert to local time using POSIX localtime function.
492 // Windows XP Service Pack 3 made SystemTimeToTzSpecificLocalTime()
493 // very slow. Other browsers use localtime().
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000494
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000495 // Convert from JavaScript milliseconds past 1/1/1970 0:00:00 to
496 // POSIX seconds past 1/1/1970 0:00:00.
497 double unchecked_posix_time = rounded_to_second.ToJSTime() / 1000;
498 if (unchecked_posix_time > INT_MAX || unchecked_posix_time < 0) {
499 return 0;
500 }
501 // Because _USE_32BIT_TIME_T is defined, time_t is a 32-bit int.
502 time_t posix_time = static_cast<time_t>(unchecked_posix_time);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000503
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000504 // Convert to local time, as struct with fields for day, hour, year, etc.
505 tm posix_local_time_struct;
506 if (localtime_s(&posix_local_time_struct, &posix_time)) return 0;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000507
jkummerow@chromium.org1456e702012-03-30 08:38:13 +0000508 if (posix_local_time_struct.tm_isdst > 0) {
509 return (tzinfo_.Bias + tzinfo_.DaylightBias) * -kMsPerMinute;
510 } else if (posix_local_time_struct.tm_isdst == 0) {
511 return (tzinfo_.Bias + tzinfo_.StandardBias) * -kMsPerMinute;
512 } else {
513 return tzinfo_.Bias * -kMsPerMinute;
514 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000515}
516
517
518// Return whether or not daylight savings time is in effect at this time.
519bool Time::InDST() {
520 // Initialize timezone information, if needed.
521 TzSet();
522
523 // Determine if DST is in effect at the specified time.
524 bool in_dst = false;
525 if (tzinfo_.StandardDate.wMonth != 0 || tzinfo_.DaylightDate.wMonth != 0) {
526 // Get the local timezone offset for the timestamp in milliseconds.
527 int64_t offset = LocalOffset();
528
529 // Compute the offset for DST. The bias parameters in the timezone info
530 // are specified in minutes. These must be converted to milliseconds.
531 int64_t dstofs = -(tzinfo_.Bias + tzinfo_.DaylightBias) * kMsPerMinute;
532
533 // If the local time offset equals the timezone bias plus the daylight
534 // bias then DST is in effect.
535 in_dst = offset == dstofs;
536 }
537
538 return in_dst;
539}
540
541
ager@chromium.org32912102009-01-16 10:38:43 +0000542// Return the daylight savings time offset for this time.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000543int64_t Time::DaylightSavingsOffset() {
544 return InDST() ? 60 * kMsPerMinute : 0;
545}
546
547
548// Returns a string identifying the current timezone for the
549// timestamp taking into account daylight saving.
550char* Time::LocalTimezone() {
551 // Return the standard or DST time zone name based on whether daylight
552 // saving is in effect at the given time.
553 return InDST() ? dst_tz_name_ : std_tz_name_;
554}
555
556
danno@chromium.org8c0a43f2012-04-03 08:37:53 +0000557void OS::PostSetUp() {
558 // Math functions depend on CPU features therefore they are initialized after
559 // CPU.
560 MathSetup();
fschneider@chromium.org7d10be52012-04-10 12:30:14 +0000561#if defined(V8_TARGET_ARCH_IA32)
562 memcopy_function = CreateMemCopyFunction();
563#endif
danno@chromium.org8c0a43f2012-04-03 08:37:53 +0000564}
565
566
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000567// Returns the accumulated user time for thread.
568int OS::GetUserTime(uint32_t* secs, uint32_t* usecs) {
569 FILETIME dummy;
570 uint64_t usertime;
571
572 // Get the amount of time that the thread has executed in user mode.
573 if (!GetThreadTimes(GetCurrentThread(), &dummy, &dummy, &dummy,
574 reinterpret_cast<FILETIME*>(&usertime))) return -1;
575
576 // Adjust the resolution to micro-seconds.
577 usertime /= 10;
578
579 // Convert to seconds and microseconds
580 *secs = static_cast<uint32_t>(usertime / 1000000);
581 *usecs = static_cast<uint32_t>(usertime % 1000000);
582 return 0;
583}
584
585
586// Returns current time as the number of milliseconds since
587// 00:00:00 UTC, January 1, 1970.
588double OS::TimeCurrentMillis() {
589 Time t;
590 t.SetToCurrentTime();
591 return t.ToJSTime();
592}
593
594// Returns the tickcounter based on timeGetTime.
595int64_t OS::Ticks() {
596 return timeGetTime() * 1000; // Convert to microseconds.
597}
598
599
600// Returns a string identifying the current timezone taking into
601// account daylight saving.
sgjesse@chromium.orgb9d7da12009-08-05 08:38:10 +0000602const char* OS::LocalTimezone(double time) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000603 return Time(time).LocalTimezone();
604}
605
606
kasper.lund7276f142008-07-30 08:49:36 +0000607// Returns the local time offset in milliseconds east of UTC without
608// taking daylight savings time into account.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000609double OS::LocalTimeOffset() {
kasper.lund7276f142008-07-30 08:49:36 +0000610 // Use current time, rounded to the millisecond.
611 Time t(TimeCurrentMillis());
612 // Time::LocalOffset inlcudes any daylight savings offset, so subtract it.
613 return static_cast<double>(t.LocalOffset() - t.DaylightSavingsOffset());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000614}
615
616
617// Returns the daylight savings offset in milliseconds for the given
618// time.
619double OS::DaylightSavingsOffset(double time) {
620 int64_t offset = Time(time).DaylightSavingsOffset();
621 return static_cast<double>(offset);
622}
623
624
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000625int OS::GetLastError() {
626 return ::GetLastError();
627}
628
629
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000630// ----------------------------------------------------------------------------
631// Win32 console output.
632//
633// If a Win32 application is linked as a console application it has a normal
634// standard output and standard error. In this case normal printf works fine
635// for output. However, if the application is linked as a GUI application,
636// the process doesn't have a console, and therefore (debugging) output is lost.
637// This is the case if we are embedded in a windows program (like a browser).
638// In order to be able to get debug output in this case the the debugging
639// facility using OutputDebugString. This output goes to the active debugger
640// for the process (if any). Else the output can be monitored using DBMON.EXE.
641
642enum OutputMode {
643 UNKNOWN, // Output method has not yet been determined.
644 CONSOLE, // Output is written to stdout.
645 ODS // Output is written to debug facility.
646};
647
648static OutputMode output_mode = UNKNOWN; // Current output mode.
649
650
651// Determine if the process has a console for output.
652static bool HasConsole() {
653 // Only check the first time. Eventual race conditions are not a problem,
654 // because all threads will eventually determine the same mode.
655 if (output_mode == UNKNOWN) {
656 // We cannot just check that the standard output is attached to a console
657 // because this would fail if output is redirected to a file. Therefore we
658 // say that a process does not have an output console if either the
659 // standard output handle is invalid or its file type is unknown.
660 if (GetStdHandle(STD_OUTPUT_HANDLE) != INVALID_HANDLE_VALUE &&
661 GetFileType(GetStdHandle(STD_OUTPUT_HANDLE)) != FILE_TYPE_UNKNOWN)
662 output_mode = CONSOLE;
663 else
664 output_mode = ODS;
665 }
666 return output_mode == CONSOLE;
667}
668
669
670static void VPrintHelper(FILE* stream, const char* format, va_list args) {
671 if (HasConsole()) {
672 vfprintf(stream, format, args);
673 } else {
674 // It is important to use safe print here in order to avoid
675 // overflowing the buffer. We might truncate the output, but this
676 // does not crash.
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000677 EmbeddedVector<char, 4096> buffer;
678 OS::VSNPrintF(buffer, format, args);
679 OutputDebugStringA(buffer.start());
680 }
681}
682
683
684FILE* OS::FOpen(const char* path, const char* mode) {
685 FILE* result;
686 if (fopen_s(&result, path, mode) == 0) {
687 return result;
688 } else {
689 return NULL;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000690 }
691}
692
693
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +0000694bool OS::Remove(const char* path) {
695 return (DeleteFileA(path) != 0);
696}
697
698
whesse@chromium.org030d38e2011-07-13 13:23:34 +0000699FILE* OS::OpenTemporaryFile() {
700 // tmpfile_s tries to use the root dir, don't use it.
701 char tempPathBuffer[MAX_PATH];
702 DWORD path_result = 0;
703 path_result = GetTempPathA(MAX_PATH, tempPathBuffer);
704 if (path_result > MAX_PATH || path_result == 0) return NULL;
705 UINT name_result = 0;
706 char tempNameBuffer[MAX_PATH];
707 name_result = GetTempFileNameA(tempPathBuffer, "", 0, tempNameBuffer);
708 if (name_result == 0) return NULL;
709 FILE* result = FOpen(tempNameBuffer, "w+"); // Same mode as tmpfile uses.
710 if (result != NULL) {
711 Remove(tempNameBuffer); // Delete on close.
712 }
713 return result;
714}
715
716
ager@chromium.org71daaf62009-04-01 07:22:49 +0000717// Open log file in binary mode to avoid /n -> /r/n conversion.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000718const char* const OS::LogFileOpenMode = "wb";
ager@chromium.org71daaf62009-04-01 07:22:49 +0000719
720
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000721// Print (debug) message to console.
722void OS::Print(const char* format, ...) {
723 va_list args;
724 va_start(args, format);
725 VPrint(format, args);
726 va_end(args);
727}
728
729
730void OS::VPrint(const char* format, va_list args) {
731 VPrintHelper(stdout, format, args);
732}
733
734
whesse@chromium.org023421e2010-12-21 12:19:12 +0000735void OS::FPrint(FILE* out, const char* format, ...) {
736 va_list args;
737 va_start(args, format);
738 VFPrint(out, format, args);
739 va_end(args);
740}
741
742
743void OS::VFPrint(FILE* out, const char* format, va_list args) {
744 VPrintHelper(out, format, args);
745}
746
747
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000748// Print error message to console.
749void OS::PrintError(const char* format, ...) {
750 va_list args;
751 va_start(args, format);
752 VPrintError(format, args);
753 va_end(args);
754}
755
756
757void OS::VPrintError(const char* format, va_list args) {
758 VPrintHelper(stderr, format, args);
759}
760
761
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000762int OS::SNPrintF(Vector<char> str, const char* format, ...) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000763 va_list args;
764 va_start(args, format);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000765 int result = VSNPrintF(str, format, args);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000766 va_end(args);
767 return result;
768}
769
770
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000771int OS::VSNPrintF(Vector<char> str, const char* format, va_list args) {
772 int n = _vsnprintf_s(str.start(), str.length(), _TRUNCATE, format, args);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000773 // Make sure to zero-terminate the string if the output was
774 // truncated or if there was an error.
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000775 if (n < 0 || n >= str.length()) {
whesse@chromium.org023421e2010-12-21 12:19:12 +0000776 if (str.length() > 0)
777 str[str.length() - 1] = '\0';
kasper.lund7276f142008-07-30 08:49:36 +0000778 return -1;
779 } else {
780 return n;
781 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000782}
783
784
ager@chromium.org381abbb2009-02-25 13:23:22 +0000785char* OS::StrChr(char* str, int c) {
786 return const_cast<char*>(strchr(str, c));
787}
788
789
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000790void OS::StrNCpy(Vector<char> dest, const char* src, size_t n) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000791 // Use _TRUNCATE or strncpy_s crashes (by design) if buffer is too small.
792 size_t buffer_size = static_cast<size_t>(dest.length());
793 if (n + 1 > buffer_size) // count for trailing '\0'
794 n = _TRUNCATE;
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000795 int result = strncpy_s(dest.start(), dest.length(), src, n);
796 USE(result);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000797 ASSERT(result == 0 || (n == _TRUNCATE && result == STRUNCATE));
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000798}
799
800
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000801// We keep the lowest and highest addresses mapped as a quick way of
802// determining that pointers are outside the heap (used mostly in assertions
ulan@chromium.org2efb9002012-01-19 15:36:35 +0000803// and verification). The estimate is conservative, i.e., not all addresses in
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000804// 'allocated' space are actually allocated to our heap. The range is
805// [lowest, highest), inclusive on the low and and exclusive on the high end.
806static void* lowest_ever_allocated = reinterpret_cast<void*>(-1);
807static void* highest_ever_allocated = reinterpret_cast<void*>(0);
808
809
810static void UpdateAllocatedSpaceLimits(void* address, int size) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000811 ASSERT(limit_mutex != NULL);
812 ScopedLock lock(limit_mutex);
813
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000814 lowest_ever_allocated = Min(lowest_ever_allocated, address);
815 highest_ever_allocated =
816 Max(highest_ever_allocated,
817 reinterpret_cast<void*>(reinterpret_cast<char*>(address) + size));
818}
819
820
821bool OS::IsOutsideAllocatedSpace(void* pointer) {
822 if (pointer < lowest_ever_allocated || pointer >= highest_ever_allocated)
823 return true;
824 // Ask the Windows API
825 if (IsBadWritePtr(pointer, 1))
826 return true;
827 return false;
828}
829
830
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +0000831// Get the system's page size used by VirtualAlloc() or the next power
832// of two. The reason for always returning a power of two is that the
833// rounding up in OS::Allocate expects that.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000834static size_t GetPageSize() {
835 static size_t page_size = 0;
836 if (page_size == 0) {
837 SYSTEM_INFO info;
838 GetSystemInfo(&info);
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +0000839 page_size = RoundUpToPowerOf2(info.dwPageSize);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000840 }
841 return page_size;
842}
843
844
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +0000845// The allocation alignment is the guaranteed alignment for
846// VirtualAlloc'ed blocks of memory.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000847size_t OS::AllocateAlignment() {
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +0000848 static size_t allocate_alignment = 0;
849 if (allocate_alignment == 0) {
850 SYSTEM_INFO info;
851 GetSystemInfo(&info);
852 allocate_alignment = info.dwAllocationGranularity;
853 }
854 return allocate_alignment;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000855}
856
857
kmillikin@chromium.orgbe6bd102012-02-23 08:45:21 +0000858static void* GetRandomAddr() {
859 Isolate* isolate = Isolate::UncheckedCurrent();
860 // Note that the current isolate isn't set up in a call path via
861 // CpuFeatures::Probe. We don't care about randomization in this case because
862 // the code page is immediately freed.
863 if (isolate != NULL) {
864 // The address range used to randomize RWX allocations in OS::Allocate
865 // Try not to map pages into the default range that windows loads DLLs
866 // Use a multiple of 64k to prevent committing unused memory.
867 // Note: This does not guarantee RWX regions will be within the
868 // range kAllocationRandomAddressMin to kAllocationRandomAddressMax
869#ifdef V8_HOST_ARCH_64_BIT
870 static const intptr_t kAllocationRandomAddressMin = 0x0000000080000000;
871 static const intptr_t kAllocationRandomAddressMax = 0x000003FFFFFF0000;
872#else
873 static const intptr_t kAllocationRandomAddressMin = 0x04000000;
874 static const intptr_t kAllocationRandomAddressMax = 0x3FFF0000;
875#endif
876 uintptr_t address = (V8::RandomPrivate(isolate) << kPageSizeBits)
877 | kAllocationRandomAddressMin;
878 address &= kAllocationRandomAddressMax;
879 return reinterpret_cast<void *>(address);
880 }
881 return NULL;
882}
883
884
885static void* RandomizedVirtualAlloc(size_t size, int action, int protection) {
886 LPVOID base = NULL;
887
888 if (protection == PAGE_EXECUTE_READWRITE || protection == PAGE_NOACCESS) {
889 // For exectutable pages try and randomize the allocation address
890 for (size_t attempts = 0; base == NULL && attempts < 3; ++attempts) {
891 base = VirtualAlloc(GetRandomAddr(), size, action, protection);
892 }
893 }
894
895 // After three attempts give up and let the OS find an address to use.
896 if (base == NULL) base = VirtualAlloc(NULL, size, action, protection);
897
898 return base;
899}
900
901
kasper.lund7276f142008-07-30 08:49:36 +0000902void* OS::Allocate(const size_t requested,
903 size_t* allocated,
kasperl@chromium.orgf5aa8372009-03-24 14:47:14 +0000904 bool is_executable) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000905 // VirtualAlloc rounds allocated size to page size automatically.
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000906 size_t msize = RoundUp(requested, static_cast<int>(GetPageSize()));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000907
908 // Windows XP SP2 allows Data Excution Prevention (DEP).
kasperl@chromium.orgf5aa8372009-03-24 14:47:14 +0000909 int prot = is_executable ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE;
sgjesse@chromium.orgc3a01972010-08-04 09:46:24 +0000910
kmillikin@chromium.orgbe6bd102012-02-23 08:45:21 +0000911 LPVOID mbase = RandomizedVirtualAlloc(msize,
912 MEM_COMMIT | MEM_RESERVE,
913 prot);
sgjesse@chromium.orgc3a01972010-08-04 09:46:24 +0000914
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000915 if (mbase == NULL) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000916 LOG(ISOLATE, StringEvent("OS::Allocate", "VirtualAlloc failed"));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000917 return NULL;
918 }
919
920 ASSERT(IsAligned(reinterpret_cast<size_t>(mbase), OS::AllocateAlignment()));
921
922 *allocated = msize;
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000923 UpdateAllocatedSpaceLimits(mbase, static_cast<int>(msize));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000924 return mbase;
925}
926
927
kasperl@chromium.orgf5aa8372009-03-24 14:47:14 +0000928void OS::Free(void* address, const size_t size) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000929 // TODO(1240712): VirtualFree has a return value which is ignored here.
kasperl@chromium.orgf5aa8372009-03-24 14:47:14 +0000930 VirtualFree(address, 0, MEM_RELEASE);
931 USE(size);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000932}
933
934
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +0000935intptr_t OS::CommitPageSize() {
936 return 4096;
937}
938
939
lrn@chromium.orgd4e9e222011-08-03 12:01:58 +0000940void OS::ProtectCode(void* address, const size_t size) {
941 DWORD old_protect;
942 VirtualProtect(address, size, PAGE_EXECUTE_READ, &old_protect);
943}
944
945
rossberg@chromium.org717967f2011-07-20 13:44:42 +0000946void OS::Guard(void* address, const size_t size) {
947 DWORD oldprotect;
948 VirtualProtect(address, size, PAGE_READONLY | PAGE_GUARD, &oldprotect);
949}
950
951
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000952void OS::Sleep(int milliseconds) {
953 ::Sleep(milliseconds);
954}
955
956
957void OS::Abort() {
rossberg@chromium.org2c067b12012-03-19 11:01:52 +0000958 if (IsDebuggerPresent() || FLAG_break_on_abort) {
959 DebugBreak();
960 } else {
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000961 // Make the MSVCRT do a silent abort.
ulan@chromium.org9a21ec42012-03-06 08:42:24 +0000962 raise(SIGABRT);
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000963 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000964}
965
966
kasper.lund7276f142008-07-30 08:49:36 +0000967void OS::DebugBreak() {
iposva@chromium.org245aa852009-02-10 00:49:54 +0000968#ifdef _MSC_VER
kasper.lund7276f142008-07-30 08:49:36 +0000969 __debugbreak();
iposva@chromium.org245aa852009-02-10 00:49:54 +0000970#else
971 ::DebugBreak();
972#endif
kasper.lund7276f142008-07-30 08:49:36 +0000973}
974
975
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000976class Win32MemoryMappedFile : public OS::MemoryMappedFile {
977 public:
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +0000978 Win32MemoryMappedFile(HANDLE file,
979 HANDLE file_mapping,
980 void* memory,
981 int size)
982 : file_(file),
983 file_mapping_(file_mapping),
984 memory_(memory),
985 size_(size) { }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000986 virtual ~Win32MemoryMappedFile();
987 virtual void* memory() { return memory_; }
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +0000988 virtual int size() { return size_; }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000989 private:
990 HANDLE file_;
991 HANDLE file_mapping_;
992 void* memory_;
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +0000993 int size_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000994};
995
996
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +0000997OS::MemoryMappedFile* OS::MemoryMappedFile::open(const char* name) {
998 // Open a physical file
999 HANDLE file = CreateFileA(name, GENERIC_READ | GENERIC_WRITE,
1000 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL);
fschneider@chromium.org3a5fd782011-02-24 10:10:44 +00001001 if (file == INVALID_HANDLE_VALUE) return NULL;
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +00001002
1003 int size = static_cast<int>(GetFileSize(file, NULL));
1004
1005 // Create a file mapping for the physical file
1006 HANDLE file_mapping = CreateFileMapping(file, NULL,
1007 PAGE_READWRITE, 0, static_cast<DWORD>(size), NULL);
1008 if (file_mapping == NULL) return NULL;
1009
1010 // Map a view of the file into memory
1011 void* memory = MapViewOfFile(file_mapping, FILE_MAP_ALL_ACCESS, 0, 0, size);
1012 return new Win32MemoryMappedFile(file, file_mapping, memory, size);
1013}
1014
1015
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001016OS::MemoryMappedFile* OS::MemoryMappedFile::create(const char* name, int size,
1017 void* initial) {
1018 // Open a physical file
1019 HANDLE file = CreateFileA(name, GENERIC_READ | GENERIC_WRITE,
1020 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_ALWAYS, 0, NULL);
1021 if (file == NULL) return NULL;
1022 // Create a file mapping for the physical file
1023 HANDLE file_mapping = CreateFileMapping(file, NULL,
1024 PAGE_READWRITE, 0, static_cast<DWORD>(size), NULL);
1025 if (file_mapping == NULL) return NULL;
1026 // Map a view of the file into memory
1027 void* memory = MapViewOfFile(file_mapping, FILE_MAP_ALL_ACCESS, 0, 0, size);
1028 if (memory) memmove(memory, initial, size);
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +00001029 return new Win32MemoryMappedFile(file, file_mapping, memory, size);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001030}
1031
1032
1033Win32MemoryMappedFile::~Win32MemoryMappedFile() {
1034 if (memory_ != NULL)
1035 UnmapViewOfFile(memory_);
1036 CloseHandle(file_mapping_);
1037 CloseHandle(file_);
1038}
1039
1040
1041// The following code loads functions defined in DbhHelp.h and TlHelp32.h
ager@chromium.org32912102009-01-16 10:38:43 +00001042// dynamically. This is to avoid being depending on dbghelp.dll and
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001043// tlhelp32.dll when running (the functions in tlhelp32.dll have been moved to
1044// kernel32.dll at some point so loading functions defines in TlHelp32.h
1045// dynamically might not be necessary any more - for some versions of Windows?).
1046
1047// Function pointers to functions dynamically loaded from dbghelp.dll.
1048#define DBGHELP_FUNCTION_LIST(V) \
1049 V(SymInitialize) \
1050 V(SymGetOptions) \
1051 V(SymSetOptions) \
1052 V(SymGetSearchPath) \
1053 V(SymLoadModule64) \
1054 V(StackWalk64) \
1055 V(SymGetSymFromAddr64) \
1056 V(SymGetLineFromAddr64) \
1057 V(SymFunctionTableAccess64) \
1058 V(SymGetModuleBase64)
1059
1060// Function pointers to functions dynamically loaded from dbghelp.dll.
1061#define TLHELP32_FUNCTION_LIST(V) \
1062 V(CreateToolhelp32Snapshot) \
1063 V(Module32FirstW) \
1064 V(Module32NextW)
1065
1066// Define the decoration to use for the type and variable name used for
1067// dynamically loaded DLL function..
1068#define DLL_FUNC_TYPE(name) _##name##_
1069#define DLL_FUNC_VAR(name) _##name
1070
1071// Define the type for each dynamically loaded DLL function. The function
1072// definitions are copied from DbgHelp.h and TlHelp32.h. The IN and VOID macros
1073// from the Windows include files are redefined here to have the function
1074// definitions to be as close to the ones in the original .h files as possible.
1075#ifndef IN
1076#define IN
1077#endif
1078#ifndef VOID
1079#define VOID void
1080#endif
1081
iposva@chromium.org245aa852009-02-10 00:49:54 +00001082// DbgHelp isn't supported on MinGW yet
1083#ifndef __MINGW32__
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001084// DbgHelp.h functions.
1085typedef BOOL (__stdcall *DLL_FUNC_TYPE(SymInitialize))(IN HANDLE hProcess,
1086 IN PSTR UserSearchPath,
1087 IN BOOL fInvadeProcess);
1088typedef DWORD (__stdcall *DLL_FUNC_TYPE(SymGetOptions))(VOID);
1089typedef DWORD (__stdcall *DLL_FUNC_TYPE(SymSetOptions))(IN DWORD SymOptions);
1090typedef BOOL (__stdcall *DLL_FUNC_TYPE(SymGetSearchPath))(
1091 IN HANDLE hProcess,
1092 OUT PSTR SearchPath,
1093 IN DWORD SearchPathLength);
1094typedef DWORD64 (__stdcall *DLL_FUNC_TYPE(SymLoadModule64))(
1095 IN HANDLE hProcess,
1096 IN HANDLE hFile,
1097 IN PSTR ImageName,
1098 IN PSTR ModuleName,
1099 IN DWORD64 BaseOfDll,
1100 IN DWORD SizeOfDll);
1101typedef BOOL (__stdcall *DLL_FUNC_TYPE(StackWalk64))(
1102 DWORD MachineType,
1103 HANDLE hProcess,
1104 HANDLE hThread,
1105 LPSTACKFRAME64 StackFrame,
1106 PVOID ContextRecord,
1107 PREAD_PROCESS_MEMORY_ROUTINE64 ReadMemoryRoutine,
1108 PFUNCTION_TABLE_ACCESS_ROUTINE64 FunctionTableAccessRoutine,
1109 PGET_MODULE_BASE_ROUTINE64 GetModuleBaseRoutine,
1110 PTRANSLATE_ADDRESS_ROUTINE64 TranslateAddress);
1111typedef BOOL (__stdcall *DLL_FUNC_TYPE(SymGetSymFromAddr64))(
1112 IN HANDLE hProcess,
1113 IN DWORD64 qwAddr,
1114 OUT PDWORD64 pdwDisplacement,
1115 OUT PIMAGEHLP_SYMBOL64 Symbol);
1116typedef BOOL (__stdcall *DLL_FUNC_TYPE(SymGetLineFromAddr64))(
1117 IN HANDLE hProcess,
1118 IN DWORD64 qwAddr,
1119 OUT PDWORD pdwDisplacement,
1120 OUT PIMAGEHLP_LINE64 Line64);
1121// DbgHelp.h typedefs. Implementation found in dbghelp.dll.
1122typedef PVOID (__stdcall *DLL_FUNC_TYPE(SymFunctionTableAccess64))(
1123 HANDLE hProcess,
1124 DWORD64 AddrBase); // DbgHelp.h typedef PFUNCTION_TABLE_ACCESS_ROUTINE64
1125typedef DWORD64 (__stdcall *DLL_FUNC_TYPE(SymGetModuleBase64))(
1126 HANDLE hProcess,
1127 DWORD64 AddrBase); // DbgHelp.h typedef PGET_MODULE_BASE_ROUTINE64
1128
1129// TlHelp32.h functions.
1130typedef HANDLE (__stdcall *DLL_FUNC_TYPE(CreateToolhelp32Snapshot))(
1131 DWORD dwFlags,
1132 DWORD th32ProcessID);
1133typedef BOOL (__stdcall *DLL_FUNC_TYPE(Module32FirstW))(HANDLE hSnapshot,
1134 LPMODULEENTRY32W lpme);
1135typedef BOOL (__stdcall *DLL_FUNC_TYPE(Module32NextW))(HANDLE hSnapshot,
1136 LPMODULEENTRY32W lpme);
1137
1138#undef IN
1139#undef VOID
1140
1141// Declare a variable for each dynamically loaded DLL function.
1142#define DEF_DLL_FUNCTION(name) DLL_FUNC_TYPE(name) DLL_FUNC_VAR(name) = NULL;
1143DBGHELP_FUNCTION_LIST(DEF_DLL_FUNCTION)
1144TLHELP32_FUNCTION_LIST(DEF_DLL_FUNCTION)
1145#undef DEF_DLL_FUNCTION
1146
1147// Load the functions. This function has a lot of "ugly" macros in order to
1148// keep down code duplication.
1149
1150static bool LoadDbgHelpAndTlHelp32() {
1151 static bool dbghelp_loaded = false;
1152
1153 if (dbghelp_loaded) return true;
1154
1155 HMODULE module;
1156
1157 // Load functions from the dbghelp.dll module.
1158 module = LoadLibrary(TEXT("dbghelp.dll"));
1159 if (module == NULL) {
1160 return false;
1161 }
1162
1163#define LOAD_DLL_FUNC(name) \
1164 DLL_FUNC_VAR(name) = \
1165 reinterpret_cast<DLL_FUNC_TYPE(name)>(GetProcAddress(module, #name));
1166
1167DBGHELP_FUNCTION_LIST(LOAD_DLL_FUNC)
1168
1169#undef LOAD_DLL_FUNC
1170
1171 // Load functions from the kernel32.dll module (the TlHelp32.h function used
1172 // to be in tlhelp32.dll but are now moved to kernel32.dll).
1173 module = LoadLibrary(TEXT("kernel32.dll"));
1174 if (module == NULL) {
1175 return false;
1176 }
1177
1178#define LOAD_DLL_FUNC(name) \
1179 DLL_FUNC_VAR(name) = \
1180 reinterpret_cast<DLL_FUNC_TYPE(name)>(GetProcAddress(module, #name));
1181
1182TLHELP32_FUNCTION_LIST(LOAD_DLL_FUNC)
1183
1184#undef LOAD_DLL_FUNC
1185
1186 // Check that all functions where loaded.
1187 bool result =
1188#define DLL_FUNC_LOADED(name) (DLL_FUNC_VAR(name) != NULL) &&
1189
1190DBGHELP_FUNCTION_LIST(DLL_FUNC_LOADED)
1191TLHELP32_FUNCTION_LIST(DLL_FUNC_LOADED)
1192
1193#undef DLL_FUNC_LOADED
1194 true;
1195
1196 dbghelp_loaded = result;
1197 return result;
ager@chromium.org32912102009-01-16 10:38:43 +00001198 // NOTE: The modules are never unloaded and will stay around until the
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001199 // application is closed.
1200}
1201
1202
1203// Load the symbols for generating stack traces.
1204static bool LoadSymbols(HANDLE process_handle) {
1205 static bool symbols_loaded = false;
1206
1207 if (symbols_loaded) return true;
1208
1209 BOOL ok;
1210
1211 // Initialize the symbol engine.
1212 ok = _SymInitialize(process_handle, // hProcess
1213 NULL, // UserSearchPath
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001214 false); // fInvadeProcess
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001215 if (!ok) return false;
1216
1217 DWORD options = _SymGetOptions();
1218 options |= SYMOPT_LOAD_LINES;
1219 options |= SYMOPT_FAIL_CRITICAL_ERRORS;
1220 options = _SymSetOptions(options);
1221
1222 char buf[OS::kStackWalkMaxNameLen] = {0};
1223 ok = _SymGetSearchPath(process_handle, buf, OS::kStackWalkMaxNameLen);
1224 if (!ok) {
1225 int err = GetLastError();
1226 PrintF("%d\n", err);
1227 return false;
1228 }
1229
1230 HANDLE snapshot = _CreateToolhelp32Snapshot(
1231 TH32CS_SNAPMODULE, // dwFlags
1232 GetCurrentProcessId()); // th32ProcessId
1233 if (snapshot == INVALID_HANDLE_VALUE) return false;
1234 MODULEENTRY32W module_entry;
1235 module_entry.dwSize = sizeof(module_entry); // Set the size of the structure.
1236 BOOL cont = _Module32FirstW(snapshot, &module_entry);
1237 while (cont) {
1238 DWORD64 base;
1239 // NOTE the SymLoadModule64 function has the peculiarity of accepting a
1240 // both unicode and ASCII strings even though the parameter is PSTR.
1241 base = _SymLoadModule64(
1242 process_handle, // hProcess
1243 0, // hFile
1244 reinterpret_cast<PSTR>(module_entry.szExePath), // ImageName
1245 reinterpret_cast<PSTR>(module_entry.szModule), // ModuleName
1246 reinterpret_cast<DWORD64>(module_entry.modBaseAddr), // BaseOfDll
1247 module_entry.modBaseSize); // SizeOfDll
1248 if (base == 0) {
1249 int err = GetLastError();
1250 if (err != ERROR_MOD_NOT_FOUND &&
1251 err != ERROR_INVALID_HANDLE) return false;
1252 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001253 LOG(i::Isolate::Current(),
1254 SharedLibraryEvent(
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001255 module_entry.szExePath,
1256 reinterpret_cast<unsigned int>(module_entry.modBaseAddr),
1257 reinterpret_cast<unsigned int>(module_entry.modBaseAddr +
1258 module_entry.modBaseSize)));
1259 cont = _Module32NextW(snapshot, &module_entry);
1260 }
1261 CloseHandle(snapshot);
1262
1263 symbols_loaded = true;
1264 return true;
1265}
1266
1267
1268void OS::LogSharedLibraryAddresses() {
1269 // SharedLibraryEvents are logged when loading symbol information.
1270 // Only the shared libraries loaded at the time of the call to
1271 // LogSharedLibraryAddresses are logged. DLLs loaded after
1272 // initialization are not accounted for.
1273 if (!LoadDbgHelpAndTlHelp32()) return;
1274 HANDLE process_handle = GetCurrentProcess();
1275 LoadSymbols(process_handle);
1276}
1277
1278
whesse@chromium.org4a5224e2010-10-20 12:37:07 +00001279void OS::SignalCodeMovingGC() {
1280}
1281
1282
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001283// Walk the stack using the facilities in dbghelp.dll and tlhelp32.dll
1284
1285// Switch off warning 4748 (/GS can not protect parameters and local variables
1286// from local buffer overrun because optimizations are disabled in function) as
1287// it is triggered by the use of inline assembler.
1288#pragma warning(push)
1289#pragma warning(disable : 4748)
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001290int OS::StackWalk(Vector<OS::StackFrame> frames) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001291 BOOL ok;
1292
1293 // Load the required functions from DLL's.
1294 if (!LoadDbgHelpAndTlHelp32()) return kStackWalkError;
1295
1296 // Get the process and thread handles.
1297 HANDLE process_handle = GetCurrentProcess();
1298 HANDLE thread_handle = GetCurrentThread();
1299
1300 // Read the symbols.
1301 if (!LoadSymbols(process_handle)) return kStackWalkError;
1302
1303 // Capture current context.
1304 CONTEXT context;
ager@chromium.org3811b432009-10-28 14:53:37 +00001305 RtlCaptureContext(&context);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001306
1307 // Initialize the stack walking
1308 STACKFRAME64 stack_frame;
1309 memset(&stack_frame, 0, sizeof(stack_frame));
ager@chromium.orgab99eea2009-08-25 07:05:41 +00001310#ifdef _WIN64
1311 stack_frame.AddrPC.Offset = context.Rip;
1312 stack_frame.AddrFrame.Offset = context.Rbp;
1313 stack_frame.AddrStack.Offset = context.Rsp;
1314#else
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001315 stack_frame.AddrPC.Offset = context.Eip;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001316 stack_frame.AddrFrame.Offset = context.Ebp;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001317 stack_frame.AddrStack.Offset = context.Esp;
ager@chromium.orgab99eea2009-08-25 07:05:41 +00001318#endif
1319 stack_frame.AddrPC.Mode = AddrModeFlat;
1320 stack_frame.AddrFrame.Mode = AddrModeFlat;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001321 stack_frame.AddrStack.Mode = AddrModeFlat;
1322 int frames_count = 0;
1323
1324 // Collect stack frames.
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001325 int frames_size = frames.length();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001326 while (frames_count < frames_size) {
1327 ok = _StackWalk64(
1328 IMAGE_FILE_MACHINE_I386, // MachineType
1329 process_handle, // hProcess
1330 thread_handle, // hThread
1331 &stack_frame, // StackFrame
1332 &context, // ContextRecord
1333 NULL, // ReadMemoryRoutine
1334 _SymFunctionTableAccess64, // FunctionTableAccessRoutine
1335 _SymGetModuleBase64, // GetModuleBaseRoutine
1336 NULL); // TranslateAddress
1337 if (!ok) break;
1338
1339 // Store the address.
1340 ASSERT((stack_frame.AddrPC.Offset >> 32) == 0); // 32-bit address.
1341 frames[frames_count].address =
1342 reinterpret_cast<void*>(stack_frame.AddrPC.Offset);
1343
1344 // Try to locate a symbol for this frame.
1345 DWORD64 symbol_displacement;
kmillikin@chromium.org83e16822011-09-13 08:21:47 +00001346 SmartArrayPointer<IMAGEHLP_SYMBOL64> symbol(
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00001347 NewArray<IMAGEHLP_SYMBOL64>(kStackWalkMaxNameLen));
1348 if (symbol.is_empty()) return kStackWalkError; // Out of memory.
1349 memset(*symbol, 0, sizeof(IMAGEHLP_SYMBOL64) + kStackWalkMaxNameLen);
1350 (*symbol)->SizeOfStruct = sizeof(IMAGEHLP_SYMBOL64);
1351 (*symbol)->MaxNameLength = kStackWalkMaxNameLen;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001352 ok = _SymGetSymFromAddr64(process_handle, // hProcess
1353 stack_frame.AddrPC.Offset, // Address
1354 &symbol_displacement, // Displacement
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00001355 *symbol); // Symbol
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001356 if (ok) {
1357 // Try to locate more source information for the symbol.
1358 IMAGEHLP_LINE64 Line;
1359 memset(&Line, 0, sizeof(Line));
1360 Line.SizeOfStruct = sizeof(Line);
1361 DWORD line_displacement;
1362 ok = _SymGetLineFromAddr64(
1363 process_handle, // hProcess
1364 stack_frame.AddrPC.Offset, // dwAddr
1365 &line_displacement, // pdwDisplacement
1366 &Line); // Line
1367 // Format a text representation of the frame based on the information
1368 // available.
1369 if (ok) {
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00001370 SNPrintF(MutableCStrVector(frames[frames_count].text,
1371 kStackWalkMaxTextLen),
1372 "%s %s:%d:%d",
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00001373 (*symbol)->Name, Line.FileName, Line.LineNumber,
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001374 line_displacement);
1375 } else {
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00001376 SNPrintF(MutableCStrVector(frames[frames_count].text,
1377 kStackWalkMaxTextLen),
1378 "%s",
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00001379 (*symbol)->Name);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001380 }
1381 // Make sure line termination is in place.
1382 frames[frames_count].text[kStackWalkMaxTextLen - 1] = '\0';
1383 } else {
1384 // No text representation of this frame
1385 frames[frames_count].text[0] = '\0';
1386
1387 // Continue if we are just missing a module (for non C/C++ frames a
1388 // module will never be found).
1389 int err = GetLastError();
1390 if (err != ERROR_MOD_NOT_FOUND) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001391 break;
1392 }
1393 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001394
1395 frames_count++;
1396 }
1397
1398 // Return the number of frames filled in.
1399 return frames_count;
1400}
1401
1402// Restore warnings to previous settings.
1403#pragma warning(pop)
1404
iposva@chromium.org245aa852009-02-10 00:49:54 +00001405#else // __MINGW32__
1406void OS::LogSharedLibraryAddresses() { }
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001407void OS::SignalCodeMovingGC() { }
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001408int OS::StackWalk(Vector<OS::StackFrame> frames) { return 0; }
iposva@chromium.org245aa852009-02-10 00:49:54 +00001409#endif // __MINGW32__
1410
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001411
ager@chromium.orgc4c92722009-11-18 14:12:51 +00001412uint64_t OS::CpuFeaturesImpliedByPlatform() {
1413 return 0; // Windows runs on anything.
1414}
1415
1416
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001417double OS::nan_value() {
iposva@chromium.org245aa852009-02-10 00:49:54 +00001418#ifdef _MSC_VER
ager@chromium.org3811b432009-10-28 14:53:37 +00001419 // Positive Quiet NaN with no payload (aka. Indeterminate) has all bits
1420 // in mask set, so value equals mask.
1421 static const __int64 nanval = kQuietNaNMask;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001422 return *reinterpret_cast<const double*>(&nanval);
iposva@chromium.org245aa852009-02-10 00:49:54 +00001423#else // _MSC_VER
1424 return NAN;
1425#endif // _MSC_VER
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001426}
1427
ager@chromium.org236ad962008-09-25 09:45:57 +00001428
1429int OS::ActivationFrameAlignment() {
ager@chromium.org18ad94b2009-09-02 08:22:29 +00001430#ifdef _WIN64
1431 return 16; // Windows 64-bit ABI requires the stack to be 16-byte aligned.
1432#else
1433 return 8; // Floating-point math runs faster with 8-byte alignment.
1434#endif
ager@chromium.org236ad962008-09-25 09:45:57 +00001435}
1436
1437
kmillikin@chromium.org9155e252010-05-26 13:27:57 +00001438void OS::ReleaseStore(volatile AtomicWord* ptr, AtomicWord value) {
1439 MemoryBarrier();
1440 *ptr = value;
1441}
1442
1443
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001444VirtualMemory::VirtualMemory() : address_(NULL), size_(0) { }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001445
1446
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001447VirtualMemory::VirtualMemory(size_t size)
1448 : address_(ReserveRegion(size)), size_(size) { }
1449
1450
1451VirtualMemory::VirtualMemory(size_t size, size_t alignment)
1452 : address_(NULL), size_(0) {
1453 ASSERT(IsAligned(alignment, static_cast<intptr_t>(OS::AllocateAlignment())));
1454 size_t request_size = RoundUp(size + alignment,
1455 static_cast<intptr_t>(OS::AllocateAlignment()));
1456 void* address = ReserveRegion(request_size);
1457 if (address == NULL) return;
1458 Address base = RoundUp(static_cast<Address>(address), alignment);
1459 // Try reducing the size by freeing and then reallocating a specific area.
1460 bool result = ReleaseRegion(address, request_size);
1461 USE(result);
1462 ASSERT(result);
1463 address = VirtualAlloc(base, size, MEM_RESERVE, PAGE_NOACCESS);
1464 if (address != NULL) {
1465 request_size = size;
1466 ASSERT(base == static_cast<Address>(address));
1467 } else {
1468 // Resizing failed, just go with a bigger area.
1469 address = ReserveRegion(request_size);
1470 if (address == NULL) return;
1471 }
1472 address_ = address;
1473 size_ = request_size;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001474}
1475
1476
1477VirtualMemory::~VirtualMemory() {
1478 if (IsReserved()) {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001479 bool result = ReleaseRegion(address_, size_);
1480 ASSERT(result);
1481 USE(result);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001482 }
1483}
1484
1485
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001486bool VirtualMemory::IsReserved() {
1487 return address_ != NULL;
1488}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001489
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001490
1491void VirtualMemory::Reset() {
1492 address_ = NULL;
1493 size_ = 0;
1494}
1495
1496
1497bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) {
1498 if (CommitRegion(address, size, is_executable)) {
1499 UpdateAllocatedSpaceLimits(address, static_cast<int>(size));
1500 return true;
1501 }
1502 return false;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001503}
1504
1505
1506bool VirtualMemory::Uncommit(void* address, size_t size) {
1507 ASSERT(IsReserved());
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001508 return UncommitRegion(address, size);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001509}
1510
1511
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001512void* VirtualMemory::ReserveRegion(size_t size) {
kmillikin@chromium.orgbe6bd102012-02-23 08:45:21 +00001513 return RandomizedVirtualAlloc(size, MEM_RESERVE, PAGE_NOACCESS);
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001514}
1515
1516
1517bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) {
1518 int prot = is_executable ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE;
1519 if (NULL == VirtualAlloc(base, size, MEM_COMMIT, prot)) {
1520 return false;
1521 }
1522
1523 UpdateAllocatedSpaceLimits(base, static_cast<int>(size));
1524 return true;
1525}
1526
1527
yangguo@chromium.orgab30bb82012-02-24 14:41:46 +00001528bool VirtualMemory::Guard(void* address) {
1529 if (NULL == VirtualAlloc(address,
1530 OS::CommitPageSize(),
1531 MEM_COMMIT,
1532 PAGE_READONLY | PAGE_GUARD)) {
1533 return false;
1534 }
1535 return true;
1536}
1537
1538
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001539bool VirtualMemory::UncommitRegion(void* base, size_t size) {
1540 return VirtualFree(base, size, MEM_DECOMMIT) != 0;
1541}
1542
1543
1544bool VirtualMemory::ReleaseRegion(void* base, size_t size) {
1545 return VirtualFree(base, 0, MEM_RELEASE) != 0;
1546}
1547
1548
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001549// ----------------------------------------------------------------------------
1550// Win32 thread support.
1551
1552// Definition of invalid thread handle and id.
1553static const HANDLE kNoThread = INVALID_HANDLE_VALUE;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001554
1555// Entry point for threads. The supplied argument is a pointer to the thread
1556// object. The entry function dispatches to the run method in the thread
1557// object. It is important that this function has __stdcall calling
1558// convention.
1559static unsigned int __stdcall ThreadEntry(void* arg) {
1560 Thread* thread = reinterpret_cast<Thread*>(arg);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001561 thread->Run();
1562 return 0;
1563}
1564
1565
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001566class Thread::PlatformData : public Malloced {
1567 public:
1568 explicit PlatformData(HANDLE thread) : thread_(thread) {}
1569 HANDLE thread_;
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001570 unsigned thread_id_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001571};
1572
1573
1574// Initialize a Win32 thread object. The thread has an invalid thread
1575// handle until it is started.
1576
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001577Thread::Thread(const Options& options)
yangguo@chromium.org659ceec2012-01-26 07:37:54 +00001578 : stack_size_(options.stack_size()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001579 data_ = new PlatformData(kNoThread);
yangguo@chromium.org659ceec2012-01-26 07:37:54 +00001580 set_name(options.name());
lrn@chromium.org5d00b602011-01-05 09:51:43 +00001581}
1582
1583
1584void Thread::set_name(const char* name) {
erik.corry@gmail.com0511e242011-01-19 11:11:08 +00001585 OS::StrNCpy(Vector<char>(name_, sizeof(name_)), name, strlen(name));
lrn@chromium.org5d00b602011-01-05 09:51:43 +00001586 name_[sizeof(name_) - 1] = '\0';
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001587}
1588
1589
1590// Close our own handle for the thread.
1591Thread::~Thread() {
1592 if (data_->thread_ != kNoThread) CloseHandle(data_->thread_);
1593 delete data_;
1594}
1595
1596
1597// Create a new thread. It is important to use _beginthreadex() instead of
1598// the Win32 function CreateThread(), because the CreateThread() does not
1599// initialize thread specific structures in the C runtime library.
1600void Thread::Start() {
1601 data_->thread_ = reinterpret_cast<HANDLE>(
1602 _beginthreadex(NULL,
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001603 static_cast<unsigned>(stack_size_),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001604 ThreadEntry,
1605 this,
1606 0,
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001607 &data_->thread_id_));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001608}
1609
1610
1611// Wait for thread to terminate.
1612void Thread::Join() {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001613 if (data_->thread_id_ != GetCurrentThreadId()) {
1614 WaitForSingleObject(data_->thread_, INFINITE);
1615 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001616}
1617
1618
1619Thread::LocalStorageKey Thread::CreateThreadLocalKey() {
1620 DWORD result = TlsAlloc();
1621 ASSERT(result != TLS_OUT_OF_INDEXES);
1622 return static_cast<LocalStorageKey>(result);
1623}
1624
1625
1626void Thread::DeleteThreadLocalKey(LocalStorageKey key) {
1627 BOOL result = TlsFree(static_cast<DWORD>(key));
1628 USE(result);
1629 ASSERT(result);
1630}
1631
1632
1633void* Thread::GetThreadLocal(LocalStorageKey key) {
1634 return TlsGetValue(static_cast<DWORD>(key));
1635}
1636
1637
1638void Thread::SetThreadLocal(LocalStorageKey key, void* value) {
1639 BOOL result = TlsSetValue(static_cast<DWORD>(key), value);
1640 USE(result);
1641 ASSERT(result);
1642}
1643
1644
1645
1646void Thread::YieldCPU() {
1647 Sleep(0);
1648}
1649
1650
1651// ----------------------------------------------------------------------------
1652// Win32 mutex support.
1653//
1654// On Win32 mutexes are implemented using CRITICAL_SECTION objects. These are
1655// faster than Win32 Mutex objects because they are implemented using user mode
1656// atomic instructions. Therefore we only do ring transitions if there is lock
1657// contention.
1658
1659class Win32Mutex : public Mutex {
1660 public:
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001661 Win32Mutex() { InitializeCriticalSection(&cs_); }
1662
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001663 virtual ~Win32Mutex() { DeleteCriticalSection(&cs_); }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001664
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001665 virtual int Lock() {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001666 EnterCriticalSection(&cs_);
1667 return 0;
1668 }
1669
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001670 virtual int Unlock() {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001671 LeaveCriticalSection(&cs_);
1672 return 0;
1673 }
1674
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001675
1676 virtual bool TryLock() {
1677 // Returns non-zero if critical section is entered successfully entered.
1678 return TryEnterCriticalSection(&cs_);
1679 }
1680
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001681 private:
1682 CRITICAL_SECTION cs_; // Critical section used for mutex
1683};
1684
1685
1686Mutex* OS::CreateMutex() {
1687 return new Win32Mutex();
1688}
1689
1690
1691// ----------------------------------------------------------------------------
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001692// Win32 semaphore support.
1693//
1694// On Win32 semaphores are implemented using Win32 Semaphore objects. The
1695// semaphores are anonymous. Also, the semaphores are initialized to have
1696// no upper limit on count.
1697
1698
1699class Win32Semaphore : public Semaphore {
1700 public:
1701 explicit Win32Semaphore(int count) {
1702 sem = ::CreateSemaphoreA(NULL, count, 0x7fffffff, NULL);
1703 }
1704
1705 ~Win32Semaphore() {
1706 CloseHandle(sem);
1707 }
1708
1709 void Wait() {
1710 WaitForSingleObject(sem, INFINITE);
1711 }
1712
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00001713 bool Wait(int timeout) {
1714 // Timeout in Windows API is in milliseconds.
1715 DWORD millis_timeout = timeout / 1000;
1716 return WaitForSingleObject(sem, millis_timeout) != WAIT_TIMEOUT;
1717 }
1718
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001719 void Signal() {
1720 LONG dummy;
1721 ReleaseSemaphore(sem, 1, &dummy);
1722 }
1723
1724 private:
1725 HANDLE sem;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001726};
1727
1728
1729Semaphore* OS::CreateSemaphore(int count) {
1730 return new Win32Semaphore(count);
1731}
1732
ager@chromium.org381abbb2009-02-25 13:23:22 +00001733
1734// ----------------------------------------------------------------------------
1735// Win32 socket support.
1736//
1737
1738class Win32Socket : public Socket {
1739 public:
1740 explicit Win32Socket() {
1741 // Create the socket.
1742 socket_ = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
1743 }
1744 explicit Win32Socket(SOCKET socket): socket_(socket) { }
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00001745 virtual ~Win32Socket() { Shutdown(); }
ager@chromium.org381abbb2009-02-25 13:23:22 +00001746
1747 // Server initialization.
1748 bool Bind(const int port);
1749 bool Listen(int backlog) const;
1750 Socket* Accept() const;
1751
1752 // Client initialization.
1753 bool Connect(const char* host, const char* port);
1754
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00001755 // Shutdown socket for both read and write.
1756 bool Shutdown();
1757
ager@chromium.org381abbb2009-02-25 13:23:22 +00001758 // Data Transimission
1759 int Send(const char* data, int len) const;
ager@chromium.org381abbb2009-02-25 13:23:22 +00001760 int Receive(char* data, int len) const;
1761
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00001762 bool SetReuseAddress(bool reuse_address);
1763
ager@chromium.org381abbb2009-02-25 13:23:22 +00001764 bool IsValid() const { return socket_ != INVALID_SOCKET; }
1765
1766 private:
1767 SOCKET socket_;
1768};
1769
1770
1771bool Win32Socket::Bind(const int port) {
1772 if (!IsValid()) {
1773 return false;
1774 }
1775
1776 sockaddr_in addr;
1777 memset(&addr, 0, sizeof(addr));
1778 addr.sin_family = AF_INET;
1779 addr.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
1780 addr.sin_port = htons(port);
1781 int status = bind(socket_,
1782 reinterpret_cast<struct sockaddr *>(&addr),
1783 sizeof(addr));
1784 return status == 0;
1785}
1786
1787
1788bool Win32Socket::Listen(int backlog) const {
1789 if (!IsValid()) {
1790 return false;
1791 }
1792
1793 int status = listen(socket_, backlog);
1794 return status == 0;
1795}
1796
1797
1798Socket* Win32Socket::Accept() const {
1799 if (!IsValid()) {
1800 return NULL;
1801 }
1802
1803 SOCKET socket = accept(socket_, NULL, NULL);
1804 if (socket == INVALID_SOCKET) {
1805 return NULL;
1806 } else {
1807 return new Win32Socket(socket);
1808 }
1809}
1810
1811
1812bool Win32Socket::Connect(const char* host, const char* port) {
1813 if (!IsValid()) {
1814 return false;
1815 }
1816
1817 // Lookup host and port.
1818 struct addrinfo *result = NULL;
1819 struct addrinfo hints;
1820 memset(&hints, 0, sizeof(addrinfo));
1821 hints.ai_family = AF_INET;
1822 hints.ai_socktype = SOCK_STREAM;
1823 hints.ai_protocol = IPPROTO_TCP;
1824 int status = getaddrinfo(host, port, &hints, &result);
1825 if (status != 0) {
1826 return false;
1827 }
1828
1829 // Connect.
ager@chromium.orgc4c92722009-11-18 14:12:51 +00001830 status = connect(socket_,
1831 result->ai_addr,
1832 static_cast<int>(result->ai_addrlen));
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00001833 freeaddrinfo(result);
ager@chromium.org381abbb2009-02-25 13:23:22 +00001834 return status == 0;
1835}
1836
1837
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00001838bool Win32Socket::Shutdown() {
1839 if (IsValid()) {
1840 // Shutdown socket for both read and write.
1841 int status = shutdown(socket_, SD_BOTH);
1842 closesocket(socket_);
1843 socket_ = INVALID_SOCKET;
1844 return status == SOCKET_ERROR;
1845 }
1846 return true;
1847}
1848
1849
ager@chromium.org381abbb2009-02-25 13:23:22 +00001850int Win32Socket::Send(const char* data, int len) const {
1851 int status = send(socket_, data, len, 0);
1852 return status;
1853}
1854
1855
ager@chromium.org381abbb2009-02-25 13:23:22 +00001856int Win32Socket::Receive(char* data, int len) const {
1857 int status = recv(socket_, data, len, 0);
1858 return status;
1859}
1860
1861
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00001862bool Win32Socket::SetReuseAddress(bool reuse_address) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001863 BOOL on = reuse_address ? true : false;
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00001864 int status = setsockopt(socket_, SOL_SOCKET, SO_REUSEADDR,
1865 reinterpret_cast<char*>(&on), sizeof(on));
1866 return status == SOCKET_ERROR;
1867}
1868
1869
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +00001870bool Socket::SetUp() {
ager@chromium.org381abbb2009-02-25 13:23:22 +00001871 // Initialize Winsock32
1872 int err;
1873 WSADATA winsock_data;
1874 WORD version_requested = MAKEWORD(1, 0);
1875 err = WSAStartup(version_requested, &winsock_data);
1876 if (err != 0) {
1877 PrintF("Unable to initialize Winsock, err = %d\n", Socket::LastError());
1878 }
1879
1880 return err == 0;
1881}
1882
1883
1884int Socket::LastError() {
1885 return WSAGetLastError();
1886}
1887
1888
1889uint16_t Socket::HToN(uint16_t value) {
1890 return htons(value);
1891}
1892
1893
1894uint16_t Socket::NToH(uint16_t value) {
1895 return ntohs(value);
1896}
1897
1898
1899uint32_t Socket::HToN(uint32_t value) {
1900 return htonl(value);
1901}
1902
1903
1904uint32_t Socket::NToH(uint32_t value) {
1905 return ntohl(value);
1906}
1907
1908
1909Socket* OS::CreateSocket() {
1910 return new Win32Socket();
1911}
1912
1913
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001914// ----------------------------------------------------------------------------
1915// Win32 profiler support.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001916
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00001917class Sampler::PlatformData : public Malloced {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001918 public:
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001919 // Get a handle to the calling thread. This is the thread that we are
1920 // going to profile. We need to make a copy of the handle because we are
1921 // going to use it in the sampler thread. Using GetThreadHandle() will
1922 // not work in this case. We're using OpenThread because DuplicateHandle
1923 // for some reason doesn't work in Chrome's sandbox.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001924 PlatformData() : profiled_thread_(OpenThread(THREAD_GET_CONTEXT |
1925 THREAD_SUSPEND_RESUME |
1926 THREAD_QUERY_INFORMATION,
1927 false,
1928 GetCurrentThreadId())) {}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001929
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001930 ~PlatformData() {
1931 if (profiled_thread_ != NULL) {
1932 CloseHandle(profiled_thread_);
1933 profiled_thread_ = NULL;
1934 }
1935 }
1936
1937 HANDLE profiled_thread() { return profiled_thread_; }
1938
1939 private:
1940 HANDLE profiled_thread_;
1941};
1942
1943
1944class SamplerThread : public Thread {
1945 public:
jkummerow@chromium.orgab7dad42012-02-07 12:07:34 +00001946 static const int kSamplerThreadStackSize = 64 * KB;
yangguo@chromium.org659ceec2012-01-26 07:37:54 +00001947
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001948 explicit SamplerThread(int interval)
yangguo@chromium.org659ceec2012-01-26 07:37:54 +00001949 : Thread(Thread::Options("SamplerThread", kSamplerThreadStackSize)),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001950 interval_(interval) {}
1951
erik.corry@gmail.comed49e962012-04-17 11:57:53 +00001952 static void SetUp() { if (!mutex_) mutex_ = OS::CreateMutex(); }
1953 static void TearDown() { delete mutex_; }
fschneider@chromium.org7d10be52012-04-10 12:30:14 +00001954
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001955 static void AddActiveSampler(Sampler* sampler) {
fschneider@chromium.org7d10be52012-04-10 12:30:14 +00001956 ScopedLock lock(mutex_);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001957 SamplerRegistry::AddActiveSampler(sampler);
1958 if (instance_ == NULL) {
1959 instance_ = new SamplerThread(sampler->interval());
1960 instance_->Start();
1961 } else {
1962 ASSERT(instance_->interval_ == sampler->interval());
1963 }
1964 }
1965
1966 static void RemoveActiveSampler(Sampler* sampler) {
fschneider@chromium.org7d10be52012-04-10 12:30:14 +00001967 ScopedLock lock(mutex_);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001968 SamplerRegistry::RemoveActiveSampler(sampler);
1969 if (SamplerRegistry::GetState() == SamplerRegistry::HAS_NO_SAMPLERS) {
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +00001970 RuntimeProfiler::StopRuntimeProfilerThreadBeforeShutdown(instance_);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001971 delete instance_;
1972 instance_ = NULL;
1973 }
1974 }
1975
1976 // Implement Thread::Run().
1977 virtual void Run() {
1978 SamplerRegistry::State state;
1979 while ((state = SamplerRegistry::GetState()) !=
1980 SamplerRegistry::HAS_NO_SAMPLERS) {
1981 bool cpu_profiling_enabled =
1982 (state == SamplerRegistry::HAS_CPU_PROFILING_SAMPLERS);
1983 bool runtime_profiler_enabled = RuntimeProfiler::IsEnabled();
1984 // When CPU profiling is enabled both JavaScript and C++ code is
1985 // profiled. We must not suspend.
1986 if (!cpu_profiling_enabled) {
1987 if (rate_limiter_.SuspendIfNecessary()) continue;
1988 }
1989 if (cpu_profiling_enabled) {
1990 if (!SamplerRegistry::IterateActiveSamplers(&DoCpuProfile, this)) {
1991 return;
1992 }
1993 }
1994 if (runtime_profiler_enabled) {
1995 if (!SamplerRegistry::IterateActiveSamplers(&DoRuntimeProfile, NULL)) {
1996 return;
1997 }
1998 }
1999 OS::Sleep(interval_);
2000 }
2001 }
2002
2003 static void DoCpuProfile(Sampler* sampler, void* raw_sampler_thread) {
2004 if (!sampler->isolate()->IsInitialized()) return;
2005 if (!sampler->IsProfiling()) return;
2006 SamplerThread* sampler_thread =
2007 reinterpret_cast<SamplerThread*>(raw_sampler_thread);
2008 sampler_thread->SampleContext(sampler);
2009 }
2010
2011 static void DoRuntimeProfile(Sampler* sampler, void* ignored) {
2012 if (!sampler->isolate()->IsInitialized()) return;
2013 sampler->isolate()->runtime_profiler()->NotifyTick();
2014 }
2015
2016 void SampleContext(Sampler* sampler) {
2017 HANDLE profiled_thread = sampler->platform_data()->profiled_thread();
2018 if (profiled_thread == NULL) return;
2019
2020 // Context used for sampling the register state of the profiled thread.
2021 CONTEXT context;
2022 memset(&context, 0, sizeof(context));
2023
2024 TickSample sample_obj;
2025 TickSample* sample = CpuProfiler::TickSampleEvent(sampler->isolate());
2026 if (sample == NULL) sample = &sample_obj;
2027
2028 static const DWORD kSuspendFailed = static_cast<DWORD>(-1);
2029 if (SuspendThread(profiled_thread) == kSuspendFailed) return;
2030 sample->state = sampler->isolate()->current_vm_state();
2031
2032 context.ContextFlags = CONTEXT_FULL;
2033 if (GetThreadContext(profiled_thread, &context) != 0) {
2034#if V8_HOST_ARCH_X64
2035 sample->pc = reinterpret_cast<Address>(context.Rip);
2036 sample->sp = reinterpret_cast<Address>(context.Rsp);
2037 sample->fp = reinterpret_cast<Address>(context.Rbp);
2038#else
2039 sample->pc = reinterpret_cast<Address>(context.Eip);
2040 sample->sp = reinterpret_cast<Address>(context.Esp);
2041 sample->fp = reinterpret_cast<Address>(context.Ebp);
2042#endif
2043 sampler->SampleStack(sample);
2044 sampler->Tick(sample);
2045 }
2046 ResumeThread(profiled_thread);
2047 }
2048
2049 const int interval_;
2050 RuntimeProfilerRateLimiter rate_limiter_;
2051
2052 // Protects the process wide state below.
fschneider@chromium.org7d10be52012-04-10 12:30:14 +00002053 static Mutex* mutex_;
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00002054 static SamplerThread* instance_;
2055
jkummerow@chromium.org05ed9dd2012-01-23 14:42:48 +00002056 private:
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00002057 DISALLOW_COPY_AND_ASSIGN(SamplerThread);
2058};
2059
2060
fschneider@chromium.org7d10be52012-04-10 12:30:14 +00002061Mutex* SamplerThread::mutex_ = NULL;
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00002062SamplerThread* SamplerThread::instance_ = NULL;
2063
2064
fschneider@chromium.org7d10be52012-04-10 12:30:14 +00002065void OS::SetUp() {
2066 // Seed the random number generator.
2067 // Convert the current time to a 64-bit integer first, before converting it
2068 // to an unsigned. Going directly can cause an overflow and the seed to be
2069 // set to all ones. The seed will be identical for different instances that
2070 // call this setup code within the same millisecond.
2071 uint64_t seed = static_cast<uint64_t>(TimeCurrentMillis());
2072 srand(static_cast<unsigned int>(seed));
2073 limit_mutex = CreateMutex();
2074 SamplerThread::SetUp();
2075}
2076
2077
erik.corry@gmail.comed49e962012-04-17 11:57:53 +00002078void OS::TearDown() {
2079 SamplerThread::TearDown();
2080 delete limit_mutex;
2081}
2082
2083
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00002084Sampler::Sampler(Isolate* isolate, int interval)
2085 : isolate_(isolate),
2086 interval_(interval),
2087 profiling_(false),
2088 active_(false),
2089 samples_taken_(0) {
2090 data_ = new PlatformData;
2091}
2092
2093
2094Sampler::~Sampler() {
2095 ASSERT(!IsActive());
2096 delete data_;
2097}
2098
2099
2100void Sampler::Start() {
2101 ASSERT(!IsActive());
kasperl@chromium.orga5551262010-12-07 12:49:48 +00002102 SetActive(true);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00002103 SamplerThread::AddActiveSampler(this);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002104}
2105
2106
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00002107void Sampler::Stop() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00002108 ASSERT(IsActive());
2109 SamplerThread::RemoveActiveSampler(this);
kasperl@chromium.orga5551262010-12-07 12:49:48 +00002110 SetActive(false);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002111}
2112
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002113
2114} } // namespace v8::internal