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

Side by Side Diff: BUILD.gn

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 unified diff | Download patch
« no previous file with comments | « no previous file | src/runtime/runtime-atomics.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/arm.gni") 6 import("//build/config/arm.gni")
7 import("//build/config/mips.gni") 7 import("//build/config/mips.gni")
8 import("//build/config/sanitizers/sanitizers.gni") 8 import("//build/config/sanitizers/sanitizers.gni")
9 9
10 if (is_android) { 10 if (is_android) {
(...skipping 1177 matching lines...) Expand 10 before | Expand all | Expand 10 after
1188 "src/regexp/regexp-macro-assembler.cc", 1188 "src/regexp/regexp-macro-assembler.cc",
1189 "src/regexp/regexp-macro-assembler.h", 1189 "src/regexp/regexp-macro-assembler.h",
1190 "src/regexp/regexp-stack.cc", 1190 "src/regexp/regexp-stack.cc",
1191 "src/regexp/regexp-stack.h", 1191 "src/regexp/regexp-stack.h",
1192 "src/register-configuration.cc", 1192 "src/register-configuration.cc",
1193 "src/register-configuration.h", 1193 "src/register-configuration.h",
1194 "src/runtime-profiler.cc", 1194 "src/runtime-profiler.cc",
1195 "src/runtime-profiler.h", 1195 "src/runtime-profiler.h",
1196 "src/runtime/runtime-array.cc", 1196 "src/runtime/runtime-array.cc",
1197 "src/runtime/runtime-atomics.cc", 1197 "src/runtime/runtime-atomics.cc",
1198 "src/runtime/runtime-atomics-intrinsics-inl.h",
1198 "src/runtime/runtime-classes.cc", 1199 "src/runtime/runtime-classes.cc",
1199 "src/runtime/runtime-collections.cc", 1200 "src/runtime/runtime-collections.cc",
1200 "src/runtime/runtime-compiler.cc", 1201 "src/runtime/runtime-compiler.cc",
1201 "src/runtime/runtime-date.cc", 1202 "src/runtime/runtime-date.cc",
1202 "src/runtime/runtime-debug.cc", 1203 "src/runtime/runtime-debug.cc",
1203 "src/runtime/runtime-forin.cc", 1204 "src/runtime/runtime-forin.cc",
1204 "src/runtime/runtime-function.cc", 1205 "src/runtime/runtime-function.cc",
1205 "src/runtime/runtime-futex.cc", 1206 "src/runtime/runtime-futex.cc",
1206 "src/runtime/runtime-generator.cc", 1207 "src/runtime/runtime-generator.cc",
1207 "src/runtime/runtime-i18n.cc", 1208 "src/runtime/runtime-i18n.cc",
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
1326 "src/ia32/interface-descriptors-ia32.cc", 1327 "src/ia32/interface-descriptors-ia32.cc",
1327 "src/ia32/macro-assembler-ia32.cc", 1328 "src/ia32/macro-assembler-ia32.cc",
1328 "src/ia32/macro-assembler-ia32.h", 1329 "src/ia32/macro-assembler-ia32.h",
1329 "src/ic/ia32/access-compiler-ia32.cc", 1330 "src/ic/ia32/access-compiler-ia32.cc",
1330 "src/ic/ia32/handler-compiler-ia32.cc", 1331 "src/ic/ia32/handler-compiler-ia32.cc",
1331 "src/ic/ia32/ic-ia32.cc", 1332 "src/ic/ia32/ic-ia32.cc",
1332 "src/ic/ia32/ic-compiler-ia32.cc", 1333 "src/ic/ia32/ic-compiler-ia32.cc",
1333 "src/ic/ia32/stub-cache-ia32.cc", 1334 "src/ic/ia32/stub-cache-ia32.cc",
1334 "src/regexp/ia32/regexp-macro-assembler-ia32.cc", 1335 "src/regexp/ia32/regexp-macro-assembler-ia32.cc",
1335 "src/regexp/ia32/regexp-macro-assembler-ia32.h", 1336 "src/regexp/ia32/regexp-macro-assembler-ia32.h",
1337 "src/runtime/runtime-atomics-ia32-inl.h",
1338 "src/runtime/runtime-atomics-x64-inl.h",
1336 ] 1339 ]
1337 } else if (v8_target_arch == "x64") { 1340 } else if (v8_target_arch == "x64") {
1338 sources += [ 1341 sources += [
1339 "src/compiler/x64/code-generator-x64.cc", 1342 "src/compiler/x64/code-generator-x64.cc",
1340 "src/compiler/x64/instruction-codes-x64.h", 1343 "src/compiler/x64/instruction-codes-x64.h",
1341 "src/compiler/x64/instruction-scheduler-x64.cc", 1344 "src/compiler/x64/instruction-scheduler-x64.cc",
1342 "src/compiler/x64/instruction-selector-x64.cc", 1345 "src/compiler/x64/instruction-selector-x64.cc",
1343 "src/crankshaft/x64/lithium-codegen-x64.cc", 1346 "src/crankshaft/x64/lithium-codegen-x64.cc",
1344 "src/crankshaft/x64/lithium-codegen-x64.h", 1347 "src/crankshaft/x64/lithium-codegen-x64.h",
1345 "src/crankshaft/x64/lithium-gap-resolver-x64.cc", 1348 "src/crankshaft/x64/lithium-gap-resolver-x64.cc",
1346 "src/crankshaft/x64/lithium-gap-resolver-x64.h", 1349 "src/crankshaft/x64/lithium-gap-resolver-x64.h",
1347 "src/crankshaft/x64/lithium-x64.cc", 1350 "src/crankshaft/x64/lithium-x64.cc",
1348 "src/crankshaft/x64/lithium-x64.h", 1351 "src/crankshaft/x64/lithium-x64.h",
1349 "src/debug/x64/debug-x64.cc", 1352 "src/debug/x64/debug-x64.cc",
1350 "src/full-codegen/x64/full-codegen-x64.cc", 1353 "src/full-codegen/x64/full-codegen-x64.cc",
1351 "src/ic/x64/access-compiler-x64.cc", 1354 "src/ic/x64/access-compiler-x64.cc",
1352 "src/ic/x64/handler-compiler-x64.cc", 1355 "src/ic/x64/handler-compiler-x64.cc",
1353 "src/ic/x64/ic-x64.cc", 1356 "src/ic/x64/ic-x64.cc",
1354 "src/ic/x64/ic-compiler-x64.cc", 1357 "src/ic/x64/ic-compiler-x64.cc",
1355 "src/ic/x64/stub-cache-x64.cc", 1358 "src/ic/x64/stub-cache-x64.cc",
1356 "src/regexp/x64/regexp-macro-assembler-x64.cc", 1359 "src/regexp/x64/regexp-macro-assembler-x64.cc",
1357 "src/regexp/x64/regexp-macro-assembler-x64.h", 1360 "src/regexp/x64/regexp-macro-assembler-x64.h",
1361 "src/runtime/runtime-atomics-x64-inl.h",
1358 "src/x64/assembler-x64-inl.h", 1362 "src/x64/assembler-x64-inl.h",
1359 "src/x64/assembler-x64.cc", 1363 "src/x64/assembler-x64.cc",
1360 "src/x64/assembler-x64.h", 1364 "src/x64/assembler-x64.h",
1361 "src/x64/builtins-x64.cc", 1365 "src/x64/builtins-x64.cc",
1362 "src/x64/code-stubs-x64.cc", 1366 "src/x64/code-stubs-x64.cc",
1363 "src/x64/code-stubs-x64.h", 1367 "src/x64/code-stubs-x64.h",
1364 "src/x64/codegen-x64.cc", 1368 "src/x64/codegen-x64.cc",
1365 "src/x64/codegen-x64.h", 1369 "src/x64/codegen-x64.h",
1366 "src/x64/cpu-x64.cc", 1370 "src/x64/cpu-x64.cc",
1367 "src/x64/deoptimizer-x64.cc", 1371 "src/x64/deoptimizer-x64.cc",
1368 "src/x64/disasm-x64.cc", 1372 "src/x64/disasm-x64.cc",
1369 "src/x64/frames-x64.cc", 1373 "src/x64/frames-x64.cc",
1370 "src/x64/frames-x64.h", 1374 "src/x64/frames-x64.h",
1371 "src/x64/interface-descriptors-x64.cc", 1375 "src/x64/interface-descriptors-x64.cc",
1372 "src/x64/macro-assembler-x64.cc", 1376 "src/x64/macro-assembler-x64.cc",
1373 "src/x64/macro-assembler-x64.h", 1377 "src/x64/macro-assembler-x64.h",
1374 ] 1378 ]
1379 if (is_win) {
1380 sources += [
1381 "src/runtime/runtime-atomics-x64.asm",
1382 "src/runtime/runtime-atomics-x64.h",
1383 ]
1384 }
1375 } else if (v8_target_arch == "arm") { 1385 } else if (v8_target_arch == "arm") {
1376 sources += [ 1386 sources += [
1377 "src/arm/assembler-arm-inl.h", 1387 "src/arm/assembler-arm-inl.h",
1378 "src/arm/assembler-arm.cc", 1388 "src/arm/assembler-arm.cc",
1379 "src/arm/assembler-arm.h", 1389 "src/arm/assembler-arm.h",
1380 "src/arm/builtins-arm.cc", 1390 "src/arm/builtins-arm.cc",
1381 "src/arm/code-stubs-arm.cc", 1391 "src/arm/code-stubs-arm.cc",
1382 "src/arm/code-stubs-arm.h", 1392 "src/arm/code-stubs-arm.h",
1383 "src/arm/codegen-arm.cc", 1393 "src/arm/codegen-arm.cc",
1384 "src/arm/codegen-arm.h", 1394 "src/arm/codegen-arm.h",
(...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after
1857 if (!is_component_build) { 1867 if (!is_component_build) {
1858 sources += [ 1868 sources += [
1859 "$target_gen_dir/d8-js.cc", 1869 "$target_gen_dir/d8-js.cc",
1860 ] 1870 ]
1861 } 1871 }
1862 if (v8_enable_i18n_support) { 1872 if (v8_enable_i18n_support) {
1863 deps += [ "//third_party/icu" ] 1873 deps += [ "//third_party/icu" ]
1864 } 1874 }
1865 } 1875 }
1866 } 1876 }
OLDNEW
« no previous file with comments | « no previous file | src/runtime/runtime-atomics.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698