Revision: 8437
Author:   [email protected]
Date:     Tue Jun 28 01:32:36 2011
Log:      Merge Solaris stack alignment fix to 3.1 branch.
Review URL: http://codereview.chromium.org/7276029
http://code.google.com/p/v8/source/detail?r=8437

Modified:
 /branches/3.1/src/platform-solaris.cc
 /branches/3.1/src/version.cc

=======================================
--- /branches/3.1/src/platform-solaris.cc       Thu Feb 24 02:10:44 2011
+++ /branches/3.1/src/platform-solaris.cc       Tue Jun 28 01:32:36 2011
@@ -1,4 +1,4 @@
-// Copyright 2006-2009 the V8 project authors. All rights reserved.
+// Copyright 2011 the V8 project authors. All rights reserved.
 // Redistribution and use in source and binary forms, with or without
 // modification, are permitted provided that the following conditions are
 // met:
@@ -105,7 +105,8 @@


 int OS::ActivationFrameAlignment() {
-  return STACK_ALIGN;
+  // GCC generates code that requires 16 byte alignment such as movdqa.
+  return Max(STACK_ALIGN, 16);
 }


=======================================
--- /branches/3.1/src/version.cc        Wed Jun 22 08:46:12 2011
+++ /branches/3.1/src/version.cc        Tue Jun 28 01:32:36 2011
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     3
 #define MINOR_VERSION     1
 #define BUILD_NUMBER      8
-#define PATCH_LEVEL       24
+#define PATCH_LEVEL       25
 #define CANDIDATE_VERSION false

 // Define SONAME to have the SCons build the put a specific SONAME into the

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to