| OLD | NEW |
| 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/dcheck_always_on.gni") | 7 import("//build/config/dcheck_always_on.gni") |
| 8 import("//build/config/mips.gni") | 8 import("//build/config/mips.gni") |
| 9 import("//build/config/sanitizers/sanitizers.gni") | 9 import("//build/config/sanitizers/sanitizers.gni") |
| 10 | 10 |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 } | 182 } |
| 183 } | 183 } |
| 184 | 184 |
| 185 config("toolchain") { | 185 config("toolchain") { |
| 186 visibility = [ ":*" ] # Only targets in this file can depend on this. | 186 visibility = [ ":*" ] # Only targets in this file can depend on this. |
| 187 | 187 |
| 188 defines = [] | 188 defines = [] |
| 189 cflags = [] | 189 cflags = [] |
| 190 ldflags = [] | 190 ldflags = [] |
| 191 | 191 |
| 192 if (v8_target_cpu == "arm") { | 192 if (v8_current_cpu == "arm") { |
| 193 defines += [ "V8_TARGET_ARCH_ARM" ] | 193 defines += [ "V8_TARGET_ARCH_ARM" ] |
| 194 if (arm_version == 7) { | 194 if (arm_version == 7) { |
| 195 defines += [ "CAN_USE_ARMV7_INSTRUCTIONS" ] | 195 defines += [ "CAN_USE_ARMV7_INSTRUCTIONS" ] |
| 196 } | 196 } |
| 197 if (arm_fpu == "vfpv3-d16") { | 197 if (arm_fpu == "vfpv3-d16") { |
| 198 defines += [ "CAN_USE_VFP3_INSTRUCTIONS" ] | 198 defines += [ "CAN_USE_VFP3_INSTRUCTIONS" ] |
| 199 } else if (arm_fpu == "vfpv3") { | 199 } else if (arm_fpu == "vfpv3") { |
| 200 defines += [ | 200 defines += [ |
| 201 "CAN_USE_VFP3_INSTRUCTIONS", | 201 "CAN_USE_VFP3_INSTRUCTIONS", |
| 202 "CAN_USE_VFP32DREGS", | 202 "CAN_USE_VFP32DREGS", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 213 | 213 |
| 214 if (current_cpu != "arm") { | 214 if (current_cpu != "arm") { |
| 215 # These defines ares used for the ARM simulator. | 215 # These defines ares used for the ARM simulator. |
| 216 if (arm_float_abi == "hard") { | 216 if (arm_float_abi == "hard") { |
| 217 defines += [ "USE_EABI_HARDFLOAT=1" ] | 217 defines += [ "USE_EABI_HARDFLOAT=1" ] |
| 218 } else if (arm_float_abi == "softfp") { | 218 } else if (arm_float_abi == "softfp") { |
| 219 defines += [ "USE_EABI_HARDFLOAT=0" ] | 219 defines += [ "USE_EABI_HARDFLOAT=0" ] |
| 220 } | 220 } |
| 221 } | 221 } |
| 222 } | 222 } |
| 223 if (v8_target_cpu == "arm64") { | 223 if (v8_current_cpu == "arm64") { |
| 224 defines += [ "V8_TARGET_ARCH_ARM64" ] | 224 defines += [ "V8_TARGET_ARCH_ARM64" ] |
| 225 } | 225 } |
| 226 | 226 |
| 227 # TODO(jochen): Add support for mips. | 227 # TODO(jochen): Add support for mips. |
| 228 if (v8_target_cpu == "mipsel") { | 228 if (v8_current_cpu == "mipsel") { |
| 229 defines += [ "V8_TARGET_ARCH_MIPS" ] | 229 defines += [ "V8_TARGET_ARCH_MIPS" ] |
| 230 if (v8_can_use_fpu_instructions) { | 230 if (v8_can_use_fpu_instructions) { |
| 231 defines += [ "CAN_USE_FPU_INSTRUCTIONS" ] | 231 defines += [ "CAN_USE_FPU_INSTRUCTIONS" ] |
| 232 } | 232 } |
| 233 if (v8_use_mips_abi_hardfloat) { | 233 if (v8_use_mips_abi_hardfloat) { |
| 234 defines += [ | 234 defines += [ |
| 235 "__mips_hard_float=1", | 235 "__mips_hard_float=1", |
| 236 "CAN_USE_FPU_INSTRUCTIONS", | 236 "CAN_USE_FPU_INSTRUCTIONS", |
| 237 ] | 237 ] |
| 238 } else { | 238 } else { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 253 defines += [ "FPU_MODE_FP32" ] | 253 defines += [ "FPU_MODE_FP32" ] |
| 254 } | 254 } |
| 255 } else if (mips_arch_variant == "r1") { | 255 } else if (mips_arch_variant == "r1") { |
| 256 defines += [ "FPU_MODE_FP32" ] | 256 defines += [ "FPU_MODE_FP32" ] |
| 257 } | 257 } |
| 258 | 258 |
| 259 # TODO(jochen): Add support for mips_arch_variant rx and loongson. | 259 # TODO(jochen): Add support for mips_arch_variant rx and loongson. |
| 260 } | 260 } |
| 261 | 261 |
| 262 # TODO(jochen): Add support for mips64. | 262 # TODO(jochen): Add support for mips64. |
| 263 if (v8_target_cpu == "mips64el") { | 263 if (v8_current_cpu == "mips64el") { |
| 264 defines += [ "V8_TARGET_ARCH_MIPS64" ] | 264 defines += [ "V8_TARGET_ARCH_MIPS64" ] |
| 265 if (v8_can_use_fpu_instructions) { | 265 if (v8_can_use_fpu_instructions) { |
| 266 defines += [ "CAN_USE_FPU_INSTRUCTIONS" ] | 266 defines += [ "CAN_USE_FPU_INSTRUCTIONS" ] |
| 267 } | 267 } |
| 268 | 268 |
| 269 # TODO(jochen): Add support for big endian host byteorder. | 269 # TODO(jochen): Add support for big endian host byteorder. |
| 270 defines += [ "V8_TARGET_ARCH_MIPS64_LE" ] | 270 defines += [ "V8_TARGET_ARCH_MIPS64_LE" ] |
| 271 if (v8_use_mips_abi_hardfloat) { | 271 if (v8_use_mips_abi_hardfloat) { |
| 272 defines += [ | 272 defines += [ |
| 273 "__mips_hard_float=1", | 273 "__mips_hard_float=1", |
| 274 "CAN_USE_FPU_INSTRUCTIONS", | 274 "CAN_USE_FPU_INSTRUCTIONS", |
| 275 ] | 275 ] |
| 276 } else { | 276 } else { |
| 277 defines += [ "__mips_soft_float=1" ] | 277 defines += [ "__mips_soft_float=1" ] |
| 278 } | 278 } |
| 279 if (mips_arch_variant == "r6") { | 279 if (mips_arch_variant == "r6") { |
| 280 defines += [ "_MIPS_ARCH_MIPS64R6" ] | 280 defines += [ "_MIPS_ARCH_MIPS64R6" ] |
| 281 } else if (mips_arch_variant == "r2") { | 281 } else if (mips_arch_variant == "r2") { |
| 282 defines += [ "_MIPS_ARCH_MIPS64R2" ] | 282 defines += [ "_MIPS_ARCH_MIPS64R2" ] |
| 283 } | 283 } |
| 284 } | 284 } |
| 285 if (v8_target_cpu == "s390" || v8_target_cpu == "s390x") { | 285 if (v8_current_cpu == "s390" || v8_current_cpu == "s390x") { |
| 286 defines += [ "V8_TARGET_ARCH_S390" ] | 286 defines += [ "V8_TARGET_ARCH_S390" ] |
| 287 if (v8_target_cpu == "s390x") { | 287 if (v8_current_cpu == "s390x") { |
| 288 defines += [ "V8_TARGET_ARCH_S390X" ] | 288 defines += [ "V8_TARGET_ARCH_S390X" ] |
| 289 } | 289 } |
| 290 if (host_cpu == "x64" || host_cpu == "x86") { | 290 if (host_cpu == "x64" || host_cpu == "x86") { |
| 291 defines += [ "V8_TARGET_ARCH_S390_LE_SIM" ] | 291 defines += [ "V8_TARGET_ARCH_S390_LE_SIM" ] |
| 292 } | 292 } |
| 293 } | 293 } |
| 294 if (v8_target_cpu == "x86") { | 294 if (v8_current_cpu == "x86") { |
| 295 defines += [ "V8_TARGET_ARCH_IA32" ] | 295 defines += [ "V8_TARGET_ARCH_IA32" ] |
| 296 if (is_win) { | 296 if (is_win) { |
| 297 # Ensure no surprising artifacts from 80bit double math with x86. | 297 # Ensure no surprising artifacts from 80bit double math with x86. |
| 298 cflags += [ "/arch:SSE2" ] | 298 cflags += [ "/arch:SSE2" ] |
| 299 } | 299 } |
| 300 } | 300 } |
| 301 if (v8_target_cpu == "x64") { | 301 if (v8_current_cpu == "x64") { |
| 302 defines += [ "V8_TARGET_ARCH_X64" ] | 302 defines += [ "V8_TARGET_ARCH_X64" ] |
| 303 if (is_win) { | 303 if (is_win) { |
| 304 # Increase the initial stack size. The default is 1MB, this is 2MB. This | 304 # Increase the initial stack size. The default is 1MB, this is 2MB. This |
| 305 # applies only to executables and shared libraries produced by V8 since | 305 # applies only to executables and shared libraries produced by V8 since |
| 306 # ldflags are not pushed to dependants. | 306 # ldflags are not pushed to dependants. |
| 307 ldflags += [ "/STACK:2097152" ] | 307 ldflags += [ "/STACK:2097152" ] |
| 308 } | 308 } |
| 309 } | 309 } |
| 310 | 310 |
| 311 # TODO(jochen): Support v8_enable_prof on Windows. | 311 # TODO(jochen): Support v8_enable_prof on Windows. |
| (...skipping 1268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1580 "src/wasm/wasm-opcodes.cc", | 1580 "src/wasm/wasm-opcodes.cc", |
| 1581 "src/wasm/wasm-opcodes.h", | 1581 "src/wasm/wasm-opcodes.h", |
| 1582 "src/wasm/wasm-result.cc", | 1582 "src/wasm/wasm-result.cc", |
| 1583 "src/wasm/wasm-result.h", | 1583 "src/wasm/wasm-result.h", |
| 1584 "src/zone-allocator.h", | 1584 "src/zone-allocator.h", |
| 1585 "src/zone-containers.h", | 1585 "src/zone-containers.h", |
| 1586 "src/zone.cc", | 1586 "src/zone.cc", |
| 1587 "src/zone.h", | 1587 "src/zone.h", |
| 1588 ] | 1588 ] |
| 1589 | 1589 |
| 1590 if (v8_target_cpu == "x86") { | 1590 if (v8_current_cpu == "x86") { |
| 1591 sources += [ | 1591 sources += [ |
| 1592 "src/builtins/ia32/builtins-ia32.cc", | 1592 "src/builtins/ia32/builtins-ia32.cc", |
| 1593 "src/compiler/ia32/code-generator-ia32.cc", | 1593 "src/compiler/ia32/code-generator-ia32.cc", |
| 1594 "src/compiler/ia32/instruction-codes-ia32.h", | 1594 "src/compiler/ia32/instruction-codes-ia32.h", |
| 1595 "src/compiler/ia32/instruction-scheduler-ia32.cc", | 1595 "src/compiler/ia32/instruction-scheduler-ia32.cc", |
| 1596 "src/compiler/ia32/instruction-selector-ia32.cc", | 1596 "src/compiler/ia32/instruction-selector-ia32.cc", |
| 1597 "src/crankshaft/ia32/lithium-codegen-ia32.cc", | 1597 "src/crankshaft/ia32/lithium-codegen-ia32.cc", |
| 1598 "src/crankshaft/ia32/lithium-codegen-ia32.h", | 1598 "src/crankshaft/ia32/lithium-codegen-ia32.h", |
| 1599 "src/crankshaft/ia32/lithium-gap-resolver-ia32.cc", | 1599 "src/crankshaft/ia32/lithium-gap-resolver-ia32.cc", |
| 1600 "src/crankshaft/ia32/lithium-gap-resolver-ia32.h", | 1600 "src/crankshaft/ia32/lithium-gap-resolver-ia32.h", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 1618 "src/ia32/macro-assembler-ia32.cc", | 1618 "src/ia32/macro-assembler-ia32.cc", |
| 1619 "src/ia32/macro-assembler-ia32.h", | 1619 "src/ia32/macro-assembler-ia32.h", |
| 1620 "src/ic/ia32/access-compiler-ia32.cc", | 1620 "src/ic/ia32/access-compiler-ia32.cc", |
| 1621 "src/ic/ia32/handler-compiler-ia32.cc", | 1621 "src/ic/ia32/handler-compiler-ia32.cc", |
| 1622 "src/ic/ia32/ic-compiler-ia32.cc", | 1622 "src/ic/ia32/ic-compiler-ia32.cc", |
| 1623 "src/ic/ia32/ic-ia32.cc", | 1623 "src/ic/ia32/ic-ia32.cc", |
| 1624 "src/ic/ia32/stub-cache-ia32.cc", | 1624 "src/ic/ia32/stub-cache-ia32.cc", |
| 1625 "src/regexp/ia32/regexp-macro-assembler-ia32.cc", | 1625 "src/regexp/ia32/regexp-macro-assembler-ia32.cc", |
| 1626 "src/regexp/ia32/regexp-macro-assembler-ia32.h", | 1626 "src/regexp/ia32/regexp-macro-assembler-ia32.h", |
| 1627 ] | 1627 ] |
| 1628 } else if (v8_target_cpu == "x64") { | 1628 } else if (v8_current_cpu == "x64") { |
| 1629 sources += [ | 1629 sources += [ |
| 1630 "src/builtins/x64/builtins-x64.cc", | 1630 "src/builtins/x64/builtins-x64.cc", |
| 1631 "src/compiler/x64/code-generator-x64.cc", | 1631 "src/compiler/x64/code-generator-x64.cc", |
| 1632 "src/compiler/x64/instruction-codes-x64.h", | 1632 "src/compiler/x64/instruction-codes-x64.h", |
| 1633 "src/compiler/x64/instruction-scheduler-x64.cc", | 1633 "src/compiler/x64/instruction-scheduler-x64.cc", |
| 1634 "src/compiler/x64/instruction-selector-x64.cc", | 1634 "src/compiler/x64/instruction-selector-x64.cc", |
| 1635 "src/compiler/x64/unwinding-info-writer-x64.cc", | 1635 "src/compiler/x64/unwinding-info-writer-x64.cc", |
| 1636 "src/compiler/x64/unwinding-info-writer-x64.h", | 1636 "src/compiler/x64/unwinding-info-writer-x64.h", |
| 1637 "src/crankshaft/x64/lithium-codegen-x64.cc", | 1637 "src/crankshaft/x64/lithium-codegen-x64.cc", |
| 1638 "src/crankshaft/x64/lithium-codegen-x64.h", | 1638 "src/crankshaft/x64/lithium-codegen-x64.h", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 1659 "src/x64/cpu-x64.cc", | 1659 "src/x64/cpu-x64.cc", |
| 1660 "src/x64/deoptimizer-x64.cc", | 1660 "src/x64/deoptimizer-x64.cc", |
| 1661 "src/x64/disasm-x64.cc", | 1661 "src/x64/disasm-x64.cc", |
| 1662 "src/x64/eh-frame-x64.cc", | 1662 "src/x64/eh-frame-x64.cc", |
| 1663 "src/x64/frames-x64.cc", | 1663 "src/x64/frames-x64.cc", |
| 1664 "src/x64/frames-x64.h", | 1664 "src/x64/frames-x64.h", |
| 1665 "src/x64/interface-descriptors-x64.cc", | 1665 "src/x64/interface-descriptors-x64.cc", |
| 1666 "src/x64/macro-assembler-x64.cc", | 1666 "src/x64/macro-assembler-x64.cc", |
| 1667 "src/x64/macro-assembler-x64.h", | 1667 "src/x64/macro-assembler-x64.h", |
| 1668 ] | 1668 ] |
| 1669 } else if (v8_target_cpu == "arm") { | 1669 } else if (v8_current_cpu == "arm") { |
| 1670 sources += [ | 1670 sources += [ |
| 1671 "src/arm/assembler-arm-inl.h", | 1671 "src/arm/assembler-arm-inl.h", |
| 1672 "src/arm/assembler-arm.cc", | 1672 "src/arm/assembler-arm.cc", |
| 1673 "src/arm/assembler-arm.h", | 1673 "src/arm/assembler-arm.h", |
| 1674 "src/arm/code-stubs-arm.cc", | 1674 "src/arm/code-stubs-arm.cc", |
| 1675 "src/arm/code-stubs-arm.h", | 1675 "src/arm/code-stubs-arm.h", |
| 1676 "src/arm/codegen-arm.cc", | 1676 "src/arm/codegen-arm.cc", |
| 1677 "src/arm/codegen-arm.h", | 1677 "src/arm/codegen-arm.h", |
| 1678 "src/arm/constants-arm.cc", | 1678 "src/arm/constants-arm.cc", |
| 1679 "src/arm/constants-arm.h", | 1679 "src/arm/constants-arm.h", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 1705 "src/debug/arm/debug-arm.cc", | 1705 "src/debug/arm/debug-arm.cc", |
| 1706 "src/full-codegen/arm/full-codegen-arm.cc", | 1706 "src/full-codegen/arm/full-codegen-arm.cc", |
| 1707 "src/ic/arm/access-compiler-arm.cc", | 1707 "src/ic/arm/access-compiler-arm.cc", |
| 1708 "src/ic/arm/handler-compiler-arm.cc", | 1708 "src/ic/arm/handler-compiler-arm.cc", |
| 1709 "src/ic/arm/ic-arm.cc", | 1709 "src/ic/arm/ic-arm.cc", |
| 1710 "src/ic/arm/ic-compiler-arm.cc", | 1710 "src/ic/arm/ic-compiler-arm.cc", |
| 1711 "src/ic/arm/stub-cache-arm.cc", | 1711 "src/ic/arm/stub-cache-arm.cc", |
| 1712 "src/regexp/arm/regexp-macro-assembler-arm.cc", | 1712 "src/regexp/arm/regexp-macro-assembler-arm.cc", |
| 1713 "src/regexp/arm/regexp-macro-assembler-arm.h", | 1713 "src/regexp/arm/regexp-macro-assembler-arm.h", |
| 1714 ] | 1714 ] |
| 1715 } else if (v8_target_cpu == "arm64") { | 1715 } else if (v8_current_cpu == "arm64") { |
| 1716 sources += [ | 1716 sources += [ |
| 1717 "src/arm64/assembler-arm64-inl.h", | 1717 "src/arm64/assembler-arm64-inl.h", |
| 1718 "src/arm64/assembler-arm64.cc", | 1718 "src/arm64/assembler-arm64.cc", |
| 1719 "src/arm64/assembler-arm64.h", | 1719 "src/arm64/assembler-arm64.h", |
| 1720 "src/arm64/code-stubs-arm64.cc", | 1720 "src/arm64/code-stubs-arm64.cc", |
| 1721 "src/arm64/code-stubs-arm64.h", | 1721 "src/arm64/code-stubs-arm64.h", |
| 1722 "src/arm64/codegen-arm64.cc", | 1722 "src/arm64/codegen-arm64.cc", |
| 1723 "src/arm64/codegen-arm64.h", | 1723 "src/arm64/codegen-arm64.h", |
| 1724 "src/arm64/constants-arm64.h", | 1724 "src/arm64/constants-arm64.h", |
| 1725 "src/arm64/cpu-arm64.cc", | 1725 "src/arm64/cpu-arm64.cc", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1764 "src/debug/arm64/debug-arm64.cc", | 1764 "src/debug/arm64/debug-arm64.cc", |
| 1765 "src/full-codegen/arm64/full-codegen-arm64.cc", | 1765 "src/full-codegen/arm64/full-codegen-arm64.cc", |
| 1766 "src/ic/arm64/access-compiler-arm64.cc", | 1766 "src/ic/arm64/access-compiler-arm64.cc", |
| 1767 "src/ic/arm64/handler-compiler-arm64.cc", | 1767 "src/ic/arm64/handler-compiler-arm64.cc", |
| 1768 "src/ic/arm64/ic-arm64.cc", | 1768 "src/ic/arm64/ic-arm64.cc", |
| 1769 "src/ic/arm64/ic-compiler-arm64.cc", | 1769 "src/ic/arm64/ic-compiler-arm64.cc", |
| 1770 "src/ic/arm64/stub-cache-arm64.cc", | 1770 "src/ic/arm64/stub-cache-arm64.cc", |
| 1771 "src/regexp/arm64/regexp-macro-assembler-arm64.cc", | 1771 "src/regexp/arm64/regexp-macro-assembler-arm64.cc", |
| 1772 "src/regexp/arm64/regexp-macro-assembler-arm64.h", | 1772 "src/regexp/arm64/regexp-macro-assembler-arm64.h", |
| 1773 ] | 1773 ] |
| 1774 } else if (v8_target_cpu == "mipsel") { | 1774 } else if (v8_current_cpu == "mipsel") { |
| 1775 sources += [ | 1775 sources += [ |
| 1776 "src/builtins/mips/builtins-mips.cc", | 1776 "src/builtins/mips/builtins-mips.cc", |
| 1777 "src/compiler/mips/code-generator-mips.cc", | 1777 "src/compiler/mips/code-generator-mips.cc", |
| 1778 "src/compiler/mips/instruction-codes-mips.h", | 1778 "src/compiler/mips/instruction-codes-mips.h", |
| 1779 "src/compiler/mips/instruction-scheduler-mips.cc", | 1779 "src/compiler/mips/instruction-scheduler-mips.cc", |
| 1780 "src/compiler/mips/instruction-selector-mips.cc", | 1780 "src/compiler/mips/instruction-selector-mips.cc", |
| 1781 "src/crankshaft/mips/lithium-codegen-mips.cc", | 1781 "src/crankshaft/mips/lithium-codegen-mips.cc", |
| 1782 "src/crankshaft/mips/lithium-codegen-mips.h", | 1782 "src/crankshaft/mips/lithium-codegen-mips.h", |
| 1783 "src/crankshaft/mips/lithium-gap-resolver-mips.cc", | 1783 "src/crankshaft/mips/lithium-gap-resolver-mips.cc", |
| 1784 "src/crankshaft/mips/lithium-gap-resolver-mips.h", | 1784 "src/crankshaft/mips/lithium-gap-resolver-mips.h", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 1806 "src/mips/frames-mips.cc", | 1806 "src/mips/frames-mips.cc", |
| 1807 "src/mips/frames-mips.h", | 1807 "src/mips/frames-mips.h", |
| 1808 "src/mips/interface-descriptors-mips.cc", | 1808 "src/mips/interface-descriptors-mips.cc", |
| 1809 "src/mips/macro-assembler-mips.cc", | 1809 "src/mips/macro-assembler-mips.cc", |
| 1810 "src/mips/macro-assembler-mips.h", | 1810 "src/mips/macro-assembler-mips.h", |
| 1811 "src/mips/simulator-mips.cc", | 1811 "src/mips/simulator-mips.cc", |
| 1812 "src/mips/simulator-mips.h", | 1812 "src/mips/simulator-mips.h", |
| 1813 "src/regexp/mips/regexp-macro-assembler-mips.cc", | 1813 "src/regexp/mips/regexp-macro-assembler-mips.cc", |
| 1814 "src/regexp/mips/regexp-macro-assembler-mips.h", | 1814 "src/regexp/mips/regexp-macro-assembler-mips.h", |
| 1815 ] | 1815 ] |
| 1816 } else if (v8_target_cpu == "mips64el") { | 1816 } else if (v8_current_cpu == "mips64el") { |
| 1817 sources += [ | 1817 sources += [ |
| 1818 "src/builtins/mips64/builtins-mips64.cc", | 1818 "src/builtins/mips64/builtins-mips64.cc", |
| 1819 "src/compiler/mips64/code-generator-mips64.cc", | 1819 "src/compiler/mips64/code-generator-mips64.cc", |
| 1820 "src/compiler/mips64/instruction-codes-mips64.h", | 1820 "src/compiler/mips64/instruction-codes-mips64.h", |
| 1821 "src/compiler/mips64/instruction-scheduler-mips64.cc", | 1821 "src/compiler/mips64/instruction-scheduler-mips64.cc", |
| 1822 "src/compiler/mips64/instruction-selector-mips64.cc", | 1822 "src/compiler/mips64/instruction-selector-mips64.cc", |
| 1823 "src/crankshaft/mips64/lithium-codegen-mips64.cc", | 1823 "src/crankshaft/mips64/lithium-codegen-mips64.cc", |
| 1824 "src/crankshaft/mips64/lithium-codegen-mips64.h", | 1824 "src/crankshaft/mips64/lithium-codegen-mips64.h", |
| 1825 "src/crankshaft/mips64/lithium-gap-resolver-mips64.cc", | 1825 "src/crankshaft/mips64/lithium-gap-resolver-mips64.cc", |
| 1826 "src/crankshaft/mips64/lithium-gap-resolver-mips64.h", | 1826 "src/crankshaft/mips64/lithium-gap-resolver-mips64.h", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 1848 "src/mips64/frames-mips64.cc", | 1848 "src/mips64/frames-mips64.cc", |
| 1849 "src/mips64/frames-mips64.h", | 1849 "src/mips64/frames-mips64.h", |
| 1850 "src/mips64/interface-descriptors-mips64.cc", | 1850 "src/mips64/interface-descriptors-mips64.cc", |
| 1851 "src/mips64/macro-assembler-mips64.cc", | 1851 "src/mips64/macro-assembler-mips64.cc", |
| 1852 "src/mips64/macro-assembler-mips64.h", | 1852 "src/mips64/macro-assembler-mips64.h", |
| 1853 "src/mips64/simulator-mips64.cc", | 1853 "src/mips64/simulator-mips64.cc", |
| 1854 "src/mips64/simulator-mips64.h", | 1854 "src/mips64/simulator-mips64.h", |
| 1855 "src/regexp/mips64/regexp-macro-assembler-mips64.cc", | 1855 "src/regexp/mips64/regexp-macro-assembler-mips64.cc", |
| 1856 "src/regexp/mips64/regexp-macro-assembler-mips64.h", | 1856 "src/regexp/mips64/regexp-macro-assembler-mips64.h", |
| 1857 ] | 1857 ] |
| 1858 } else if (v8_target_cpu == "s390" || v8_target_cpu == "s390x") { | 1858 } else if (v8_current_cpu == "s390" || v8_current_cpu == "s390x") { |
| 1859 sources += [ | 1859 sources += [ |
| 1860 "src/builtins/s390/builtins-s390.cc", | 1860 "src/builtins/s390/builtins-s390.cc", |
| 1861 "src/compiler/s390/code-generator-s390.cc", | 1861 "src/compiler/s390/code-generator-s390.cc", |
| 1862 "src/compiler/s390/instruction-codes-s390.h", | 1862 "src/compiler/s390/instruction-codes-s390.h", |
| 1863 "src/compiler/s390/instruction-scheduler-s390.cc", | 1863 "src/compiler/s390/instruction-scheduler-s390.cc", |
| 1864 "src/compiler/s390/instruction-selector-s390.cc", | 1864 "src/compiler/s390/instruction-selector-s390.cc", |
| 1865 "src/crankshaft/s390/lithium-codegen-s390.cc", | 1865 "src/crankshaft/s390/lithium-codegen-s390.cc", |
| 1866 "src/crankshaft/s390/lithium-codegen-s390.h", | 1866 "src/crankshaft/s390/lithium-codegen-s390.h", |
| 1867 "src/crankshaft/s390/lithium-gap-resolver-s390.cc", | 1867 "src/crankshaft/s390/lithium-gap-resolver-s390.cc", |
| 1868 "src/crankshaft/s390/lithium-gap-resolver-s390.h", | 1868 "src/crankshaft/s390/lithium-gap-resolver-s390.h", |
| (...skipping 560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2429 | 2429 |
| 2430 deps = [ | 2430 deps = [ |
| 2431 ":fuzzer_support", | 2431 ":fuzzer_support", |
| 2432 ] | 2432 ] |
| 2433 | 2433 |
| 2434 configs = [ ":internal_config" ] | 2434 configs = [ ":internal_config" ] |
| 2435 } | 2435 } |
| 2436 | 2436 |
| 2437 v8_fuzzer("wasm_asmjs_fuzzer") { | 2437 v8_fuzzer("wasm_asmjs_fuzzer") { |
| 2438 } | 2438 } |
| OLD | NEW |