Commit 89af05e7 authored by Deepti Gandluri's avatar Deepti Gandluri Committed by Commit Bot

[wasm-simd] Rename no_simd_sse to no_simd_hardware to be generic

Change-Id: Id1581981ac54c74216e5a7887b7972254237f319
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2847581Reviewed-by: 's avatarZhi An Ng <zhin@chromium.org>
Commit-Queue: Deepti Gandluri <gdeepti@chromium.org>
Cr-Commit-Position: refs/heads/master@{#74133}
parent 02a51e6b
......@@ -705,10 +705,10 @@
}],
##############################################################################
['no_simd_sse == True', {
['no_simd_hardware == True', {
'test-run-wasm-simd/*': [SKIP],
'test-run-wasm-simd-liftoff/*': [SKIP],
}], # no_simd_sse == True
}], # no_simd_hardware == True
################################################################################
['variant == stress_concurrent_inlining', {
......
......@@ -81,8 +81,8 @@
}],
##############################################################################
['no_simd_sse == True', {
['no_simd_hardware == True', {
'wasm-trace-memory': [SKIP],
'wasm-trace-memory-liftoff': [SKIP],
}], # no_simd_sse == True
}], # no_simd_hardware == True
]
......@@ -1442,7 +1442,7 @@
}], # variant == stress_concurrent_allocation
##############################################################################
['no_simd_sse == True', {
['no_simd_hardware == True', {
'wasm/exceptions-simd': [SKIP],
'wasm/liftoff-simd-params': [SKIP],
'wasm/multi-value-simd': [SKIP],
......@@ -1463,7 +1463,7 @@
'regress/wasm/regress-1165966': [SKIP],
'regress/wasm/regress-1187831': [SKIP],
'regress/wasm/regress-1199662': [SKIP],
}], # no_simd_sse == True
}], # no_simd_hardware == True
##############################################################################
# TODO(v8:11421): Port baseline compiler to other architectures.
......
......@@ -180,8 +180,8 @@
}],
##############################################################################
['no_simd_sse == True', {
['no_simd_hardware == True', {
'proposals/simd/*': [SKIP],
}], # no_simd_sse == True
}], # no_simd_hardware == True
]
......@@ -645,7 +645,7 @@ class BaseTestRunner(object):
self.build_config.arch in ['mipsel', 'mips', 'mips64', 'mips64el'] and
self.build_config.mips_arch_variant)
no_simd_sse = any(
no_simd_hardware = any(
i in options.extra_flags for i in ['--noenable-sse3',
'--no-enable-sse3'
'--noenable-ssse3',
......@@ -653,10 +653,10 @@ class BaseTestRunner(object):
'--noenable-sse4-1',
'--no-enable-sse4_1'])
# Set no_simd_sse on architectures without Simd enabled.
# Set no_simd_hardware on architectures without Simd enabled.
if self.build_config.arch == 'mips64el' or \
self.build_config.arch == 'mipsel':
no_simd_sse = not simd_mips
no_simd_hardware = not simd_mips
return {
"arch": self.build_config.arch,
......@@ -681,7 +681,7 @@ class BaseTestRunner(object):
"msan": self.build_config.msan,
"no_harness": options.no_harness,
"no_i18n": self.build_config.no_i18n,
"no_simd_sse": no_simd_sse,
"no_simd_hardware": no_simd_hardware,
"novfp3": False,
"optimize_for_size": "--optimize-for-size" in options.extra_flags,
"predictable": self.build_config.predictable,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment