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

Unified Diff: src/compiler/machine-operator.h

Issue 2711863002: Implement remaining Boolean SIMD operations on ARM. (Closed)
Patch Set: Fix macro assembler test. Created 3 years, 10 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/compiler/instruction-selector.cc ('k') | src/compiler/machine-operator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/machine-operator.h
diff --git a/src/compiler/machine-operator.h b/src/compiler/machine-operator.h
index 2087ab8454e19d6e8151624d8fa96d8aeff0d6a7..aee27045fd9a1994822b6c736b8575feb3fc5687 100644
--- a/src/compiler/machine-operator.h
+++ b/src/compiler/machine-operator.h
@@ -478,13 +478,6 @@ class V8_EXPORT_PRIVATE MachineOperatorBuilder final
const Operator* Uint32x4GreaterThanOrEqual();
const Operator* Uint32x4FromFloat32x4();
- const Operator* Bool32x4And();
- const Operator* Bool32x4Or();
- const Operator* Bool32x4Xor();
- const Operator* Bool32x4Not();
- const Operator* Bool32x4AnyTrue();
- const Operator* Bool32x4AllTrue();
-
const Operator* Int16x8Splat();
const Operator* Int16x8ExtractLane(int32_t);
const Operator* Int16x8ReplaceLane(int32_t);
@@ -515,13 +508,6 @@ class V8_EXPORT_PRIVATE MachineOperatorBuilder final
const Operator* Uint16x8GreaterThan();
const Operator* Uint16x8GreaterThanOrEqual();
- const Operator* Bool16x8And();
- const Operator* Bool16x8Or();
- const Operator* Bool16x8Xor();
- const Operator* Bool16x8Not();
- const Operator* Bool16x8AnyTrue();
- const Operator* Bool16x8AllTrue();
-
const Operator* Int8x16Splat();
const Operator* Int8x16ExtractLane(int32_t);
const Operator* Int8x16ReplaceLane(int32_t);
@@ -552,13 +538,6 @@ class V8_EXPORT_PRIVATE MachineOperatorBuilder final
const Operator* Uint8x16GreaterThan();
const Operator* Uint8x16GreaterThanOrEqual();
- const Operator* Bool8x16And();
- const Operator* Bool8x16Or();
- const Operator* Bool8x16Xor();
- const Operator* Bool8x16Not();
- const Operator* Bool8x16AnyTrue();
- const Operator* Bool8x16AllTrue();
-
const Operator* Simd128Load();
const Operator* Simd128Load1();
const Operator* Simd128Load2();
@@ -585,8 +564,28 @@ class V8_EXPORT_PRIVATE MachineOperatorBuilder final
const Operator* Simd8x16Shuffle();
const Operator* Simd1x4Zero();
+ const Operator* Simd1x4And();
+ const Operator* Simd1x4Or();
+ const Operator* Simd1x4Xor();
+ const Operator* Simd1x4Not();
+ const Operator* Simd1x4AnyTrue();
+ const Operator* Simd1x4AllTrue();
+
const Operator* Simd1x8Zero();
+ const Operator* Simd1x8And();
+ const Operator* Simd1x8Or();
+ const Operator* Simd1x8Xor();
+ const Operator* Simd1x8Not();
+ const Operator* Simd1x8AnyTrue();
+ const Operator* Simd1x8AllTrue();
+
const Operator* Simd1x16Zero();
+ const Operator* Simd1x16And();
+ const Operator* Simd1x16Or();
+ const Operator* Simd1x16Xor();
+ const Operator* Simd1x16Not();
+ const Operator* Simd1x16AnyTrue();
+ const Operator* Simd1x16AllTrue();
// load [base + index]
const Operator* Load(LoadRepresentation rep);
« no previous file with comments | « src/compiler/instruction-selector.cc ('k') | src/compiler/machine-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698