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

Side by Side Diff: src/compiler/machine-operator.h

Issue 2203693002: [turbofan] Introduce initial support for TypedArrays. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@5254
Patch Set: Fix Retain 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/compiler/load-elimination.cc ('k') | src/compiler/machine-operator.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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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_COMPILER_MACHINE_OPERATOR_H_ 5 #ifndef V8_COMPILER_MACHINE_OPERATOR_H_
6 #define V8_COMPILER_MACHINE_OPERATOR_H_ 6 #define V8_COMPILER_MACHINE_OPERATOR_H_
7 7
8 #include "src/base/flags.h" 8 #include "src/base/flags.h"
9 #include "src/machine-type.h" 9 #include "src/machine-type.h"
10 10
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 207
208 explicit MachineOperatorBuilder( 208 explicit MachineOperatorBuilder(
209 Zone* zone, 209 Zone* zone,
210 MachineRepresentation word = MachineType::PointerRepresentation(), 210 MachineRepresentation word = MachineType::PointerRepresentation(),
211 Flags supportedOperators = kNoFlags, 211 Flags supportedOperators = kNoFlags,
212 AlignmentRequirements alignmentRequirements = 212 AlignmentRequirements alignmentRequirements =
213 AlignmentRequirements::FullUnalignedAccessSupport()); 213 AlignmentRequirements::FullUnalignedAccessSupport());
214 214
215 const Operator* Comment(const char* msg); 215 const Operator* Comment(const char* msg);
216 const Operator* DebugBreak(); 216 const Operator* DebugBreak();
217 const Operator* UnsafePointerAdd();
217 218
218 const Operator* Word32And(); 219 const Operator* Word32And();
219 const Operator* Word32Or(); 220 const Operator* Word32Or();
220 const Operator* Word32Xor(); 221 const Operator* Word32Xor();
221 const Operator* Word32Shl(); 222 const Operator* Word32Shl();
222 const Operator* Word32Shr(); 223 const Operator* Word32Shr();
223 const Operator* Word32Sar(); 224 const Operator* Word32Sar();
224 const Operator* Word32Ror(); 225 const Operator* Word32Ror();
225 const Operator* Word32Equal(); 226 const Operator* Word32Equal();
226 const Operator* Word32Clz(); 227 const Operator* Word32Clz();
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after
703 }; 704 };
704 705
705 706
706 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) 707 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags)
707 708
708 } // namespace compiler 709 } // namespace compiler
709 } // namespace internal 710 } // namespace internal
710 } // namespace v8 711 } // namespace v8
711 712
712 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ 713 #endif // V8_COMPILER_MACHINE_OPERATOR_H_
OLDNEW
« no previous file with comments | « src/compiler/load-elimination.cc ('k') | src/compiler/machine-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698