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

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

Issue 2666863002: [turbofan] Introduce ChangeTaggedToTaggedSigned operator. (Closed)
Patch Set: Created 3 years, 10 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/representation-change.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 #include "src/globals.h" 10 #include "src/globals.h"
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 JS_OBJECT_OP_LIST(V) \ 184 JS_OBJECT_OP_LIST(V) \
185 JS_CONTEXT_OP_LIST(V) \ 185 JS_CONTEXT_OP_LIST(V) \
186 JS_OTHER_OP_LIST(V) 186 JS_OTHER_OP_LIST(V)
187 187
188 // Opcodes for VirtuaMachine-level operators. 188 // Opcodes for VirtuaMachine-level operators.
189 #define SIMPLIFIED_CHANGE_OP_LIST(V) \ 189 #define SIMPLIFIED_CHANGE_OP_LIST(V) \
190 V(ChangeTaggedSignedToInt32) \ 190 V(ChangeTaggedSignedToInt32) \
191 V(ChangeTaggedToInt32) \ 191 V(ChangeTaggedToInt32) \
192 V(ChangeTaggedToUint32) \ 192 V(ChangeTaggedToUint32) \
193 V(ChangeTaggedToFloat64) \ 193 V(ChangeTaggedToFloat64) \
194 V(ChangeTaggedToTaggedSigned) \
194 V(ChangeInt31ToTaggedSigned) \ 195 V(ChangeInt31ToTaggedSigned) \
195 V(ChangeInt32ToTagged) \ 196 V(ChangeInt32ToTagged) \
196 V(ChangeUint32ToTagged) \ 197 V(ChangeUint32ToTagged) \
197 V(ChangeFloat64ToTagged) \ 198 V(ChangeFloat64ToTagged) \
198 V(ChangeFloat64ToTaggedPointer) \ 199 V(ChangeFloat64ToTaggedPointer) \
199 V(ChangeTaggedToBit) \ 200 V(ChangeTaggedToBit) \
200 V(ChangeBitToTagged) \ 201 V(ChangeBitToTagged) \
201 V(TruncateTaggedToWord32) \ 202 V(TruncateTaggedToWord32) \
202 V(TruncateTaggedToFloat64) \ 203 V(TruncateTaggedToFloat64) \
203 V(TruncateTaggedToBit) 204 V(TruncateTaggedToBit)
(...skipping 610 matching lines...) Expand 10 before | Expand all | Expand 10 after
814 } 815 }
815 }; 816 };
816 817
817 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); 818 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value);
818 819
819 } // namespace compiler 820 } // namespace compiler
820 } // namespace internal 821 } // namespace internal
821 } // namespace v8 822 } // namespace v8
822 823
823 #endif // V8_COMPILER_OPCODES_H_ 824 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/effect-control-linearizer.cc ('k') | src/compiler/representation-change.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698