Version 1.3.1.

Speed improvements to accessors and interceptors.

Added support for capturing stack information on custom errors.

Added support for morphing an object into a pixel array where its indexed properties are stored in an external byte array. Values written are always clamped to the 0..255 interval.

Profiler on x64 now handles C/C++ functions from shared libraries.

Changed the debugger to avoid stepping into function.call/apply if the function is a built-in.

Initial implementation of constructor heap profile for JS objects.

More fine grained control of profiling aspects through the API.

Optimized the called as constructor check for API calls.



git-svn-id: http://v8.googlecode.com/svn/trunk@2592 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
diff --git a/tools/gyp/v8.gyp b/tools/gyp/v8.gyp
index fc49620..c8a2e85 100644
--- a/tools/gyp/v8.gyp
+++ b/tools/gyp/v8.gyp
@@ -52,6 +52,11 @@
           'V8_NATIVE_REGEXP',
         ],
       }],
+      ['target_arch=="x64"', {
+        'defines': [
+          'V8_TARGET_ARCH_X64',
+        ],
+      }],
     ],
     'configurations': {
       'Debug': {
@@ -428,6 +433,34 @@
             '../../src/ia32/virtual-frame-ia32.h',
           ],
         }],
+        ['target_arch=="x64"', {
+          'include_dirs+': [
+            '../../src/x64',
+          ],
+          'sources': [
+            '../../src/x64/assembler-x64-inl.h',
+            '../../src/x64/assembler-x64.cc',
+            '../../src/x64/assembler-x64.h',
+            '../../src/x64/builtins-x64.cc',
+            '../../src/x64/codegen-x64.cc',
+            '../../src/x64/codegen-x64.h',
+            '../../src/x64/cpu-x64.cc',
+            '../../src/x64/debug-x64.cc',
+            '../../src/x64/disasm-x64.cc',
+            '../../src/x64/frames-x64.cc',
+            '../../src/x64/frames-x64.h',
+            '../../src/x64/ic-x64.cc',
+            '../../src/x64/jump-target-x64.cc',
+            '../../src/x64/macro-assembler-x64.cc',
+            '../../src/x64/macro-assembler-x64.h',
+            #'../../src/x64/regexp-macro-assembler-x64.cc',
+            #'../../src/x64/regexp-macro-assembler-x64.h',
+            '../../src/x64/register-allocator-x64.cc',
+            '../../src/x64/stub-cache-x64.cc',
+            '../../src/x64/virtual-frame-x64.cc',
+            '../../src/x64/virtual-frame-x64.h',
+          ],
+        }],
         ['OS=="linux"', {
             'link_settings': {
               'libraries': [