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

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

Issue 1908093002: [turbofan] Optimize tagged conversion based on type. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fixes Created 4 years, 8 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/effect-control-linearizer.cc ('k') | src/compiler/pipeline.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_OPCODES_H_ 5 #ifndef V8_COMPILER_OPCODES_H_
6 #define V8_COMPILER_OPCODES_H_ 6 #define V8_COMPILER_OPCODES_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 // Opcodes for control operators. 10 // Opcodes for control operators.
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 V(NumberRound) \ 193 V(NumberRound) \
194 V(NumberTrunc) \ 194 V(NumberTrunc) \
195 V(NumberToInt32) \ 195 V(NumberToInt32) \
196 V(NumberToUint32) \ 196 V(NumberToUint32) \
197 V(NumberIsHoleNaN) \ 197 V(NumberIsHoleNaN) \
198 V(StringToNumber) \ 198 V(StringToNumber) \
199 V(ChangeSmiToInt32) \ 199 V(ChangeSmiToInt32) \
200 V(ChangeTaggedToInt32) \ 200 V(ChangeTaggedToInt32) \
201 V(ChangeTaggedToUint32) \ 201 V(ChangeTaggedToUint32) \
202 V(ChangeTaggedToFloat64) \ 202 V(ChangeTaggedToFloat64) \
203 V(ChangeInt31ToTagged) \
203 V(ChangeInt32ToTagged) \ 204 V(ChangeInt32ToTagged) \
204 V(ChangeUint32ToTagged) \ 205 V(ChangeUint32ToTagged) \
205 V(ChangeFloat64ToTagged) \ 206 V(ChangeFloat64ToTagged) \
206 V(ChangeBoolToBit) \ 207 V(ChangeBoolToBit) \
207 V(ChangeBitToBool) \ 208 V(ChangeBitToBool) \
208 V(Allocate) \ 209 V(Allocate) \
209 V(LoadField) \ 210 V(LoadField) \
210 V(LoadBuffer) \ 211 V(LoadBuffer) \
211 V(LoadElement) \ 212 V(LoadElement) \
212 V(StoreField) \ 213 V(StoreField) \
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 } 434 }
434 }; 435 };
435 436
436 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 437 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
437 438
438 } // namespace compiler 439 } // namespace compiler
439 } // namespace internal 440 } // namespace internal
440 } // namespace v8 441 } // namespace v8
441 442
442 #endif // V8_COMPILER_OPCODES_H_ 443 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/effect-control-linearizer.cc ('k') | src/compiler/pipeline.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698