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

Side by Side Diff: src/globals.h

Issue 2582683002: s390x: implement vector support on s390 (Closed)
Patch Set: fix comments and dchecks Created 4 years 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 | « src/crankshaft/s390/lithium-s390.cc ('k') | src/s390/assembler-s390.h » ('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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project 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 #ifndef V8_GLOBALS_H_ 5 #ifndef V8_GLOBALS_H_
6 #define V8_GLOBALS_H_ 6 #define V8_GLOBALS_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 777 matching lines...) Expand 10 before | Expand all | Expand 10 after
788 // ARM64 788 // ARM64
789 ALWAYS_ALIGN_CSP, 789 ALWAYS_ALIGN_CSP,
790 // PPC 790 // PPC
791 FPR_GPR_MOV, 791 FPR_GPR_MOV,
792 LWSYNC, 792 LWSYNC,
793 ISELECT, 793 ISELECT,
794 // S390 794 // S390
795 DISTINCT_OPS, 795 DISTINCT_OPS,
796 GENERAL_INSTR_EXT, 796 GENERAL_INSTR_EXT,
797 FLOATING_POINT_EXT, 797 FLOATING_POINT_EXT,
798 VECTOR_FACILITY,
798 799
799 NUMBER_OF_CPU_FEATURES, 800 NUMBER_OF_CPU_FEATURES,
800 801
801 // ARM feature aliases (based on the standard configurations above). 802 // ARM feature aliases (based on the standard configurations above).
802 VFPv3 = ARMv7, 803 VFPv3 = ARMv7,
803 NEON = ARMv7, 804 NEON = ARMv7,
804 VFP32DREGS = ARMv7, 805 VFP32DREGS = ARMv7,
805 SUDIV = ARMv7_SUDIV 806 SUDIV = ARMv7_SUDIV
806 }; 807 };
807 808
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after
1312 } // namespace internal 1313 } // namespace internal
1313 } // namespace v8 1314 } // namespace v8
1314 1315
1315 // Used by js-builtin-reducer to identify whether ReduceArrayIterator() is 1316 // Used by js-builtin-reducer to identify whether ReduceArrayIterator() is
1316 // reducing a JSArray method, or a JSTypedArray method. 1317 // reducing a JSArray method, or a JSTypedArray method.
1317 enum class ArrayIteratorKind { kArray, kTypedArray }; 1318 enum class ArrayIteratorKind { kArray, kTypedArray };
1318 1319
1319 namespace i = v8::internal; 1320 namespace i = v8::internal;
1320 1321
1321 #endif // V8_GLOBALS_H_ 1322 #endif // V8_GLOBALS_H_
OLDNEW
« no previous file with comments | « src/crankshaft/s390/lithium-s390.cc ('k') | src/s390/assembler-s390.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698