OLD | NEW |
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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 | 94 |
95 | 95 |
96 void OS::SetUp() { | 96 void OS::SetUp() { |
97 // Seed the random number generator. We preserve microsecond resolution. | 97 // Seed the random number generator. We preserve microsecond resolution. |
98 uint64_t seed = Ticks() ^ (getpid() << 16); | 98 uint64_t seed = Ticks() ^ (getpid() << 16); |
99 srandom(static_cast<unsigned int>(seed)); | 99 srandom(static_cast<unsigned int>(seed)); |
100 limit_mutex = CreateMutex(); | 100 limit_mutex = CreateMutex(); |
101 } | 101 } |
102 | 102 |
103 | 103 |
| 104 void MathSetup(); // Defined in platform-posix.cc. |
| 105 |
| 106 void OS::PostSetUp() { |
| 107 // Math functions depend on CPU features therefore they are initialized after |
| 108 // CPU. |
| 109 MathSetup(); |
| 110 } |
| 111 |
| 112 |
104 // We keep the lowest and highest addresses mapped as a quick way of | 113 // We keep the lowest and highest addresses mapped as a quick way of |
105 // determining that pointers are outside the heap (used mostly in assertions | 114 // determining that pointers are outside the heap (used mostly in assertions |
106 // and verification). The estimate is conservative, i.e., not all addresses in | 115 // and verification). The estimate is conservative, i.e., not all addresses in |
107 // 'allocated' space are actually allocated to our heap. The range is | 116 // 'allocated' space are actually allocated to our heap. The range is |
108 // [lowest, highest), inclusive on the low and and exclusive on the high end. | 117 // [lowest, highest), inclusive on the low and and exclusive on the high end. |
109 static void* lowest_ever_allocated = reinterpret_cast<void*>(-1); | 118 static void* lowest_ever_allocated = reinterpret_cast<void*>(-1); |
110 static void* highest_ever_allocated = reinterpret_cast<void*>(0); | 119 static void* highest_ever_allocated = reinterpret_cast<void*>(0); |
111 | 120 |
112 | 121 |
113 static void UpdateAllocatedSpaceLimits(void* address, int size) { | 122 static void UpdateAllocatedSpaceLimits(void* address, int size) { |
(...skipping 778 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
892 | 901 |
893 | 902 |
894 void Sampler::Stop() { | 903 void Sampler::Stop() { |
895 ASSERT(IsActive()); | 904 ASSERT(IsActive()); |
896 SamplerThread::RemoveActiveSampler(this); | 905 SamplerThread::RemoveActiveSampler(this); |
897 SetActive(false); | 906 SetActive(false); |
898 } | 907 } |
899 | 908 |
900 | 909 |
901 } } // namespace v8::internal | 910 } } // namespace v8::internal |
OLD | NEW |