| 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/type-hints.h" | 10 #include "src/compiler/type-hints.h" |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 const Operator* ChangeTaggedToFloat64(); | 185 const Operator* ChangeTaggedToFloat64(); |
| 186 const Operator* ChangeInt31ToTaggedSigned(); | 186 const Operator* ChangeInt31ToTaggedSigned(); |
| 187 const Operator* ChangeInt32ToTagged(); | 187 const Operator* ChangeInt32ToTagged(); |
| 188 const Operator* ChangeUint32ToTagged(); | 188 const Operator* ChangeUint32ToTagged(); |
| 189 const Operator* ChangeFloat64ToTagged(); | 189 const Operator* ChangeFloat64ToTagged(); |
| 190 const Operator* ChangeTaggedToBit(); | 190 const Operator* ChangeTaggedToBit(); |
| 191 const Operator* ChangeBitToTagged(); | 191 const Operator* ChangeBitToTagged(); |
| 192 const Operator* TruncateTaggedToWord32(); | 192 const Operator* TruncateTaggedToWord32(); |
| 193 const Operator* TruncateTaggedToFloat64(); | 193 const Operator* TruncateTaggedToFloat64(); |
| 194 | 194 |
| 195 const Operator* CheckBounds(); | |
| 196 | |
| 197 const Operator* CheckedUint32ToInt32(); | 195 const Operator* CheckedUint32ToInt32(); |
| 198 const Operator* CheckedFloat64ToInt32(); | 196 const Operator* CheckedFloat64ToInt32(); |
| 199 const Operator* CheckedTaggedToInt32(); | 197 const Operator* CheckedTaggedToInt32(); |
| 200 const Operator* CheckedTaggedToFloat64(); | 198 const Operator* CheckedTaggedToFloat64(); |
| 201 | 199 |
| 202 const Operator* CheckIf(); | 200 const Operator* CheckIf(); |
| 203 | 201 |
| 204 const Operator* ObjectIsCallable(); | 202 const Operator* ObjectIsCallable(); |
| 205 const Operator* ObjectIsNumber(); | 203 const Operator* ObjectIsNumber(); |
| 206 const Operator* ObjectIsReceiver(); | 204 const Operator* ObjectIsReceiver(); |
| (...skipping 27 matching lines...) Expand all Loading... |
| 234 Zone* const zone_; | 232 Zone* const zone_; |
| 235 | 233 |
| 236 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 234 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
| 237 }; | 235 }; |
| 238 | 236 |
| 239 } // namespace compiler | 237 } // namespace compiler |
| 240 } // namespace internal | 238 } // namespace internal |
| 241 } // namespace v8 | 239 } // namespace v8 |
| 242 | 240 |
| 243 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 241 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
| OLD | NEW |