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

Side by Side Diff: src/runtime/runtime.h

Issue 1253103006: Rename IsSimdObject assembly intrinsic. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 4 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 | « src/runtime.js ('k') | src/runtime/runtime-simd.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 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_RUNTIME_RUNTIME_H_ 5 #ifndef V8_RUNTIME_RUNTIME_H_
6 #define V8_RUNTIME_RUNTIME_H_ 6 #define V8_RUNTIME_RUNTIME_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/objects.h" 9 #include "src/objects.h"
10 #include "src/zone.h" 10 #include "src/zone.h"
(...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after
561 F(PushModuleContext, 2, 1) \ 561 F(PushModuleContext, 2, 1) \
562 F(DeclareModules, 1, 1) \ 562 F(DeclareModules, 1, 1) \
563 F(DeleteLookupSlot, 2, 1) \ 563 F(DeleteLookupSlot, 2, 1) \
564 F(StoreLookupSlot, 4, 1) \ 564 F(StoreLookupSlot, 4, 1) \
565 F(GetArgumentsProperty, 1, 1) \ 565 F(GetArgumentsProperty, 1, 1) \
566 F(ArgumentsLength, 0, 1) \ 566 F(ArgumentsLength, 0, 1) \
567 F(Arguments, 1, 1) 567 F(Arguments, 1, 1)
568 568
569 569
570 #define FOR_EACH_INTRINSIC_SIMD(F) \ 570 #define FOR_EACH_INTRINSIC_SIMD(F) \
571 F(IsSimdObject, 1, 1) \ 571 F(IsSimdValue, 1, 1) \
572 F(SimdToObject, 1, 1) \ 572 F(SimdToObject, 1, 1) \
573 F(SimdEquals, 2, 1) \ 573 F(SimdEquals, 2, 1) \
574 F(SimdSameValue, 2, 1) \ 574 F(SimdSameValue, 2, 1) \
575 F(SimdSameValueZero, 2, 1) \ 575 F(SimdSameValueZero, 2, 1) \
576 F(CreateFloat32x4, 4, 1) \ 576 F(CreateFloat32x4, 4, 1) \
577 F(CreateInt32x4, 4, 1) \ 577 F(CreateInt32x4, 4, 1) \
578 F(CreateBool32x4, 4, 1) \ 578 F(CreateBool32x4, 4, 1) \
579 F(CreateInt16x8, 8, 1) \ 579 F(CreateInt16x8, 8, 1) \
580 F(CreateBool16x8, 8, 1) \ 580 F(CreateBool16x8, 8, 1) \
581 F(CreateInt8x16, 16, 1) \ 581 F(CreateInt8x16, 16, 1) \
(...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after
1009 inline bool Runtime::AtomicIsLockFree(uint32_t size) { 1009 inline bool Runtime::AtomicIsLockFree(uint32_t size) {
1010 return size == 1 || size == 2 || size == 4; 1010 return size == 1 || size == 2 || size == 4;
1011 } 1011 }
1012 1012
1013 #endif 1013 #endif
1014 1014
1015 } // namespace internal 1015 } // namespace internal
1016 } // namespace v8 1016 } // namespace v8
1017 1017
1018 #endif // V8_RUNTIME_RUNTIME_H_ 1018 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/runtime.js ('k') | src/runtime/runtime-simd.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698