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

Unified Diff: src/platform-openbsd.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, 9 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 side-by-side diff with in-line comments
Download patch
Index: src/platform-openbsd.cc
diff --git a/src/platform-openbsd.cc b/src/platform-openbsd.cc
index b79cb71a50b2c82907b4e3580b0ea2a36b4beaff..838c55f00f8221bf6bad7c868c38a2490e88e98e 100644
--- a/src/platform-openbsd.cc
+++ b/src/platform-openbsd.cc
@@ -107,6 +107,15 @@ void OS::SetUp() {
}
+void MathSetup(); // Defined in platform-posix.cc.
+
+void OS::PostSetUp() {
+ // Math functions depend on CPU features therefore they are initialized after
+ // CPU.
+ MathSetup();
+}
+
+
uint64_t OS::CpuFeaturesImpliedByPlatform() {
return 0;
}
« src/platform-cygwin.cc ('K') | « src/platform-nullos.cc ('k') | src/platform-posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698