OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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_SIMPLIFIED_OPERATOR_H_ | 5 #ifndef V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
6 #define V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 6 #define V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
7 | 7 |
8 #include <iosfwd> | 8 #include <iosfwd> |
9 | 9 |
10 #include "src/compiler/operator.h" | 10 #include "src/compiler/operator.h" |
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
260 const Operator* ChangeTaggedToUint32(); | 260 const Operator* ChangeTaggedToUint32(); |
261 const Operator* ChangeTaggedToFloat64(); | 261 const Operator* ChangeTaggedToFloat64(); |
262 const Operator* ChangeInt31ToTaggedSigned(); | 262 const Operator* ChangeInt31ToTaggedSigned(); |
263 const Operator* ChangeInt32ToTagged(); | 263 const Operator* ChangeInt32ToTagged(); |
264 const Operator* ChangeUint32ToTagged(); | 264 const Operator* ChangeUint32ToTagged(); |
265 const Operator* ChangeFloat64ToTagged(); | 265 const Operator* ChangeFloat64ToTagged(); |
266 const Operator* ChangeTaggedToBit(); | 266 const Operator* ChangeTaggedToBit(); |
267 const Operator* ChangeBitToTagged(); | 267 const Operator* ChangeBitToTagged(); |
268 const Operator* TruncateTaggedToWord32(); | 268 const Operator* TruncateTaggedToWord32(); |
269 const Operator* TruncateTaggedToFloat64(); | 269 const Operator* TruncateTaggedToFloat64(); |
270 const Operator* TruncateTaggedToBit(); | |
271 | 270 |
272 const Operator* CheckIf(); | 271 const Operator* CheckIf(); |
273 const Operator* CheckBounds(); | 272 const Operator* CheckBounds(); |
274 const Operator* CheckNumber(); | 273 const Operator* CheckNumber(); |
275 const Operator* CheckTaggedPointer(); | 274 const Operator* CheckTaggedPointer(); |
276 const Operator* CheckTaggedSigned(); | 275 const Operator* CheckTaggedSigned(); |
277 | 276 |
278 const Operator* CheckedInt32Add(); | 277 const Operator* CheckedInt32Add(); |
279 const Operator* CheckedInt32Sub(); | 278 const Operator* CheckedInt32Sub(); |
280 const Operator* CheckedInt32Div(); | 279 const Operator* CheckedInt32Div(); |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 Zone* const zone_; | 323 Zone* const zone_; |
325 | 324 |
326 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 325 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
327 }; | 326 }; |
328 | 327 |
329 } // namespace compiler | 328 } // namespace compiler |
330 } // namespace internal | 329 } // namespace internal |
331 } // namespace v8 | 330 } // namespace v8 |
332 | 331 |
333 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 332 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
OLD | NEW |