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

Side by Side Diff: src/compiler/opcodes.h

Issue 1131263002: [turbofan] Work towards fixing asm.js heap access. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 7 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/js-typed-lowering.cc ('k') | src/compiler/simplified-lowering.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 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_OPCODES_H_ 5 #ifndef V8_COMPILER_OPCODES_H_
6 #define V8_COMPILER_OPCODES_H_ 6 #define V8_COMPILER_OPCODES_H_
7 7
8 // Opcodes for control operators. 8 // Opcodes for control operators.
9 #define CONTROL_OP_LIST(V) \ 9 #define CONTROL_OP_LIST(V) \
10 V(Start) \ 10 V(Start) \
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 SIMPLIFIED_COMPARE_BINOP_LIST(V) \ 156 SIMPLIFIED_COMPARE_BINOP_LIST(V) \
157 V(BooleanNot) \ 157 V(BooleanNot) \
158 V(BooleanToNumber) \ 158 V(BooleanToNumber) \
159 V(NumberAdd) \ 159 V(NumberAdd) \
160 V(NumberSubtract) \ 160 V(NumberSubtract) \
161 V(NumberMultiply) \ 161 V(NumberMultiply) \
162 V(NumberDivide) \ 162 V(NumberDivide) \
163 V(NumberModulus) \ 163 V(NumberModulus) \
164 V(NumberToInt32) \ 164 V(NumberToInt32) \
165 V(NumberToUint32) \ 165 V(NumberToUint32) \
166 V(PlainPrimitiveToNumber) \
167 V(StringAdd) \ 166 V(StringAdd) \
168 V(ChangeTaggedToInt32) \ 167 V(ChangeTaggedToInt32) \
169 V(ChangeTaggedToUint32) \ 168 V(ChangeTaggedToUint32) \
170 V(ChangeTaggedToFloat64) \ 169 V(ChangeTaggedToFloat64) \
171 V(ChangeInt32ToTagged) \ 170 V(ChangeInt32ToTagged) \
172 V(ChangeUint32ToTagged) \ 171 V(ChangeUint32ToTagged) \
173 V(ChangeFloat64ToTagged) \ 172 V(ChangeFloat64ToTagged) \
174 V(ChangeBoolToBit) \ 173 V(ChangeBoolToBit) \
175 V(ChangeBitToBool) \ 174 V(ChangeBitToBool) \
176 V(Allocate) \ 175 V(Allocate) \
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
346 (kNumberEqual <= value && value <= kStringLessThanOrEqual) || 345 (kNumberEqual <= value && value <= kStringLessThanOrEqual) ||
347 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual); 346 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual);
348 } 347 }
349 }; 348 };
350 349
351 } // namespace compiler 350 } // namespace compiler
352 } // namespace internal 351 } // namespace internal
353 } // namespace v8 352 } // namespace v8
354 353
355 #endif // V8_COMPILER_OPCODES_H_ 354 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-typed-lowering.cc ('k') | src/compiler/simplified-lowering.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698