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

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

Issue 1109773002: [turbofan] Add SimplifiedOperator::Allocate operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebased. 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/linkage.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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 V(PlainPrimitiveToNumber) \ 165 V(PlainPrimitiveToNumber) \
166 V(StringAdd) \ 166 V(StringAdd) \
167 V(ChangeTaggedToInt32) \ 167 V(ChangeTaggedToInt32) \
168 V(ChangeTaggedToUint32) \ 168 V(ChangeTaggedToUint32) \
169 V(ChangeTaggedToFloat64) \ 169 V(ChangeTaggedToFloat64) \
170 V(ChangeInt32ToTagged) \ 170 V(ChangeInt32ToTagged) \
171 V(ChangeUint32ToTagged) \ 171 V(ChangeUint32ToTagged) \
172 V(ChangeFloat64ToTagged) \ 172 V(ChangeFloat64ToTagged) \
173 V(ChangeBoolToBit) \ 173 V(ChangeBoolToBit) \
174 V(ChangeBitToBool) \ 174 V(ChangeBitToBool) \
175 V(Allocate) \
175 V(LoadField) \ 176 V(LoadField) \
176 V(LoadBuffer) \ 177 V(LoadBuffer) \
177 V(LoadElement) \ 178 V(LoadElement) \
178 V(StoreField) \ 179 V(StoreField) \
179 V(StoreBuffer) \ 180 V(StoreBuffer) \
180 V(StoreElement) \ 181 V(StoreElement) \
181 V(ObjectIsSmi) \ 182 V(ObjectIsSmi) \
182 V(ObjectIsNonNegativeSmi) 183 V(ObjectIsNonNegativeSmi)
183 184
184 // Opcodes for Machine-level operators. 185 // Opcodes for Machine-level operators.
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 (kNumberEqual <= value && value <= kStringLessThanOrEqual) || 345 (kNumberEqual <= value && value <= kStringLessThanOrEqual) ||
345 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual); 346 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual);
346 } 347 }
347 }; 348 };
348 349
349 } // namespace compiler 350 } // namespace compiler
350 } // namespace internal 351 } // namespace internal
351 } // namespace v8 352 } // namespace v8
352 353
353 #endif // V8_COMPILER_OPCODES_H_ 354 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/linkage.cc ('k') | src/compiler/simplified-lowering.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698