Version 3.1.4

Fixed incorrect compare of prototypes of the global object (issue 1082).

Fixed a bug in optimizing calls to global functions (issue 1106).

Made optimized Function.prototype.apply safe for non-JSObject first arguments (issue 1128).

Fixed an error related to element accessors on Object.prototype and parser errors (issue 1130).

Fixed a bug in sorting an array with large array indices (issue 1131).

Properly treat exceptions thrown while compiling (issue 1132).

Fixed bug in register requirements for function.apply (issue 1133).

Fixed a representation change bug in the Hydrogen graph construction (issue 1134).

Fixed the semantics of delete on parameters (issue 1136).

Fixed a optimizer bug related to moving instructions with side effects (issue 1138).

Added support for the global object in Object.keys (issue 1150).

Fixed incorrect value for Math.LOG10E (issue http://code.google.com/p/chromium/issues/detail?id=72555)

Performance improvements on the IA32 platform.

Implement assignment to undefined reference in ES5 Strict Mode.



git-svn-id: http://v8.googlecode.com/svn/trunk@6768 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
diff --git a/SConstruct b/SConstruct
index 28bb713..017bcad 100644
--- a/SConstruct
+++ b/SConstruct
@@ -234,9 +234,6 @@
       'CCFLAGS':      ['-m64'],
       'LINKFLAGS':    ['-m64'],
     },
-    'prof:oprofile': {
-      'CPPDEFINES':   ['ENABLE_OPROFILE_AGENT']
-    },
     'gdbjit:on': {
       'CPPDEFINES':   ['ENABLE_GDB_JIT_INTERFACE']
     }
@@ -539,10 +536,6 @@
       'CCFLAGS':      ['-g', '-O0'],
       'CPPDEFINES':   ['DEBUG']
     },
-    'prof:oprofile': {
-      'LIBPATH': ['/usr/lib32', '/usr/lib32/oprofile'],
-      'LIBS': ['opagent']
-    }
   },
   'msvc': {
     'all': {
@@ -712,7 +705,7 @@
     'help': 'build using snapshots for faster start-up'
   },
   'prof': {
-    'values': ['on', 'off', 'oprofile'],
+    'values': ['on', 'off'],
     'default': 'off',
     'help': 'enable profiling of build target'
   },
@@ -899,8 +892,6 @@
     Abort("Profiling on windows only supported for static library.")
   if env['gdbjit'] == 'on' and (env['os'] != 'linux' or (env['arch'] != 'ia32' and env['arch'] != 'x64')):
     Abort("GDBJIT interface is supported only for Intel-compatible (ia32 or x64) Linux target.")
-  if env['prof'] == 'oprofile' and env['os'] != 'linux':
-    Abort("OProfile is only supported on Linux.")
   if env['os'] == 'win32' and env['soname'] == 'on':
     Abort("Shared Object soname not applicable for Windows.")
   if env['soname'] == 'on' and env['library'] == 'static':