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

Side by Side Diff: src/platform-cygwin.cc

Issue 9959093: Merged r11194, r11198, r11201, r11214 into trunk branch. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/platform.h ('k') | src/platform-freebsd.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 23 matching lines...) Expand all
34 #include <stdarg.h> 34 #include <stdarg.h>
35 #include <strings.h> // index 35 #include <strings.h> // index
36 #include <sys/time.h> 36 #include <sys/time.h>
37 #include <sys/mman.h> // mmap & munmap 37 #include <sys/mman.h> // mmap & munmap
38 #include <unistd.h> // sysconf 38 #include <unistd.h> // sysconf
39 39
40 #undef MAP_TYPE 40 #undef MAP_TYPE
41 41
42 #include "v8.h" 42 #include "v8.h"
43 43
44 #include "platform-posix.h"
44 #include "platform.h" 45 #include "platform.h"
45 #include "v8threads.h" 46 #include "v8threads.h"
46 #include "vm-state-inl.h" 47 #include "vm-state-inl.h"
47 #include "win32-headers.h" 48 #include "win32-headers.h"
48 49
49 namespace v8 { 50 namespace v8 {
50 namespace internal { 51 namespace internal {
51 52
52 // 0 is never a valid thread id 53 // 0 is never a valid thread id
53 static const pthread_t kNoThread = (pthread_t) 0; 54 static const pthread_t kNoThread = (pthread_t) 0;
(...skipping 12 matching lines...) Expand all
66 // Convert the current time to a 64-bit integer first, before converting it 67 // Convert the current time to a 64-bit integer first, before converting it
67 // to an unsigned. Going directly can cause an overflow and the seed to be 68 // to an unsigned. Going directly can cause an overflow and the seed to be
68 // set to all ones. The seed will be identical for different instances that 69 // set to all ones. The seed will be identical for different instances that
69 // call this setup code within the same millisecond. 70 // call this setup code within the same millisecond.
70 uint64_t seed = static_cast<uint64_t>(TimeCurrentMillis()); 71 uint64_t seed = static_cast<uint64_t>(TimeCurrentMillis());
71 srandom(static_cast<unsigned int>(seed)); 72 srandom(static_cast<unsigned int>(seed));
72 limit_mutex = CreateMutex(); 73 limit_mutex = CreateMutex();
73 } 74 }
74 75
75 76
77 void OS::PostSetUp() {
78 // Math functions depend on CPU features therefore they are initialized after
79 // CPU.
80 MathSetup();
81 }
82
76 uint64_t OS::CpuFeaturesImpliedByPlatform() { 83 uint64_t OS::CpuFeaturesImpliedByPlatform() {
77 return 0; // Nothing special about Cygwin. 84 return 0; // Nothing special about Cygwin.
78 } 85 }
79 86
80 87
81 int OS::ActivationFrameAlignment() { 88 int OS::ActivationFrameAlignment() {
82 // With gcc 4.4 the tree vectorization optimizer can generate code 89 // With gcc 4.4 the tree vectorization optimizer can generate code
83 // that requires 16 byte alignment such as movdqa on x86. 90 // that requires 16 byte alignment such as movdqa on x86.
84 return 16; 91 return 16;
85 } 92 }
(...skipping 675 matching lines...) Expand 10 before | Expand all | Expand 10 after
761 768
762 769
763 void Sampler::Stop() { 770 void Sampler::Stop() {
764 ASSERT(IsActive()); 771 ASSERT(IsActive());
765 SamplerThread::RemoveActiveSampler(this); 772 SamplerThread::RemoveActiveSampler(this);
766 SetActive(false); 773 SetActive(false);
767 } 774 }
768 775
769 776
770 } } // namespace v8::internal 777 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/platform.h ('k') | src/platform-freebsd.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698