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

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

Issue 9873023: Fix performance regressions due to lazy initialization. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Add OS::PostSetUp(). 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
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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« src/platform-cygwin.cc ('K') | « src/platform-linux.cc ('k') | src/platform-nullos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698