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

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

Issue 2738483002: [turbofan] Introduce TruncateTaggedPointerToBit operator. (Closed)
Patch Set: Created 3 years, 9 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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 V(ChangeTaggedToTaggedSigned) \ 195 V(ChangeTaggedToTaggedSigned) \
196 V(ChangeInt31ToTaggedSigned) \ 196 V(ChangeInt31ToTaggedSigned) \
197 V(ChangeInt32ToTagged) \ 197 V(ChangeInt32ToTagged) \
198 V(ChangeUint32ToTagged) \ 198 V(ChangeUint32ToTagged) \
199 V(ChangeFloat64ToTagged) \ 199 V(ChangeFloat64ToTagged) \
200 V(ChangeFloat64ToTaggedPointer) \ 200 V(ChangeFloat64ToTaggedPointer) \
201 V(ChangeTaggedToBit) \ 201 V(ChangeTaggedToBit) \
202 V(ChangeBitToTagged) \ 202 V(ChangeBitToTagged) \
203 V(TruncateTaggedToWord32) \ 203 V(TruncateTaggedToWord32) \
204 V(TruncateTaggedToFloat64) \ 204 V(TruncateTaggedToFloat64) \
205 V(TruncateTaggedToBit) 205 V(TruncateTaggedToBit) \
206 V(TruncateTaggedPointerToBit)
206 207
207 #define SIMPLIFIED_CHECKED_OP_LIST(V) \ 208 #define SIMPLIFIED_CHECKED_OP_LIST(V) \
208 V(CheckedInt32Add) \ 209 V(CheckedInt32Add) \
209 V(CheckedInt32Sub) \ 210 V(CheckedInt32Sub) \
210 V(CheckedInt32Div) \ 211 V(CheckedInt32Div) \
211 V(CheckedInt32Mod) \ 212 V(CheckedInt32Mod) \
212 V(CheckedUint32Div) \ 213 V(CheckedUint32Div) \
213 V(CheckedUint32Mod) \ 214 V(CheckedUint32Mod) \
214 V(CheckedInt32Mul) \ 215 V(CheckedInt32Mul) \
215 V(CheckedInt32ToTaggedSigned) \ 216 V(CheckedInt32ToTaggedSigned) \
(...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after
789 } 790 }
790 }; 791 };
791 792
792 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); 793 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value);
793 794
794 } // namespace compiler 795 } // namespace compiler
795 } // namespace internal 796 } // namespace internal
796 } // namespace v8 797 } // namespace v8
797 798
798 #endif // V8_COMPILER_OPCODES_H_ 799 #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