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

Side by Side Diff: src/js/harmony-simd.js

Issue 2206573002: Move NoSideEffectToString to C++ (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Address comments Created 4 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/isolate.cc ('k') | src/js/messages.js » ('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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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 (function(global, utils) { 5 (function(global, utils) {
6 6
7 "use strict"; 7 "use strict";
8 8
9 %CheckIsBootstrapping(); 9 %CheckIsBootstrapping();
10 10
(...skipping 907 matching lines...) Expand 10 before | Expand all | Expand 10 after
918 'and', Bool8x16AndJS, 918 'and', Bool8x16AndJS,
919 'or', Bool8x16OrJS, 919 'or', Bool8x16OrJS,
920 'xor', Bool8x16XorJS, 920 'xor', Bool8x16XorJS,
921 'not', Bool8x16NotJS, 921 'not', Bool8x16NotJS,
922 'anyTrue', Bool8x16AnyTrueJS, 922 'anyTrue', Bool8x16AnyTrueJS,
923 'allTrue', Bool8x16AllTrueJS, 923 'allTrue', Bool8x16AllTrueJS,
924 'swizzle', Bool8x16SwizzleJS, 924 'swizzle', Bool8x16SwizzleJS,
925 'shuffle', Bool8x16ShuffleJS, 925 'shuffle', Bool8x16ShuffleJS,
926 ]); 926 ]);
927 927
928 utils.Export(function(to) {
929 to.Float32x4ToString = Float32x4ToString;
930 to.Int32x4ToString = Int32x4ToString;
931 to.Uint32x4ToString = Uint32x4ToString;
932 to.Bool32x4ToString = Bool32x4ToString;
933 to.Int16x8ToString = Int16x8ToString;
934 to.Uint16x8ToString = Uint16x8ToString;
935 to.Bool16x8ToString = Bool16x8ToString;
936 to.Int8x16ToString = Int8x16ToString;
937 to.Uint8x16ToString = Uint8x16ToString;
938 to.Bool8x16ToString = Bool8x16ToString;
939 });
940
941 }) 928 })
OLDNEW
« no previous file with comments | « src/isolate.cc ('k') | src/js/messages.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698