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

Unified Diff: tools/gyp/v8.gyp

Issue 1550803006: Convert runtime atomics functions to inline asm (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: update BUILD.gn, add *-inl.h and *.h to gyp as well Created 4 years, 11 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
« no previous file with comments | « src/runtime/runtime-atomics-x64-inl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gyp/v8.gyp
diff --git a/tools/gyp/v8.gyp b/tools/gyp/v8.gyp
index fb8c218c6f83568d8914b1bcc162d8db7d501d94..8e66b6f9703341aad10a2b8f5b0685356d09ccdb 100644
--- a/tools/gyp/v8.gyp
+++ b/tools/gyp/v8.gyp
@@ -974,6 +974,7 @@
'../../src/runtime-profiler.h',
'../../src/runtime/runtime-array.cc',
'../../src/runtime/runtime-atomics.cc',
+ '../../src/runtime/runtime-atomics-intrinsics-inl.h',
'../../src/runtime/runtime-classes.cc',
'../../src/runtime/runtime-collections.cc',
'../../src/runtime/runtime-compiler.cc',
@@ -1221,6 +1222,8 @@
'../../src/ic/ia32/stub-cache-ia32.cc',
'../../src/regexp/ia32/regexp-macro-assembler-ia32.cc',
'../../src/regexp/ia32/regexp-macro-assembler-ia32.h',
+ '../../src/runtime/runtime-atomics-ia32-inl.h',
+ '../../src/runtime/runtime-atomics-x64-inl.h',
],
}],
['v8_target_arch=="x87"', {
@@ -1381,6 +1384,7 @@
'../../src/ic/x64/stub-cache-x64.cc',
'../../src/regexp/x64/regexp-macro-assembler-x64.cc',
'../../src/regexp/x64/regexp-macro-assembler-x64.h',
+ '../../src/runtime/runtime-atomics-x64-inl.h',
],
}],
['v8_target_arch=="x64"', {
@@ -1435,6 +1439,12 @@
'../../src/regexp/ppc/regexp-macro-assembler-ppc.h',
],
}],
+ ['OS=="win" and v8_target_arch=="x64"', {
+ 'sources': [
+ '../../src/runtime/runtime-atomics-x64.asm',
+ '../../src/runtime/runtime-atomics-x64.h',
+ ],
+ }],
['OS=="win"', {
'variables': {
'gyp_generators': '<!(echo $GYP_GENERATORS)',
« no previous file with comments | « src/runtime/runtime-atomics-x64-inl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698