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 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
310 | 310 |
311 const Operator* CheckIf(); | 311 const Operator* CheckIf(); |
312 const Operator* CheckBounds(); | 312 const Operator* CheckBounds(); |
313 const Operator* CheckMaps(int map_input_count); | 313 const Operator* CheckMaps(int map_input_count); |
314 | 314 |
315 const Operator* CheckHeapObject(); | 315 const Operator* CheckHeapObject(); |
316 const Operator* CheckNumber(); | 316 const Operator* CheckNumber(); |
317 const Operator* CheckSmi(); | 317 const Operator* CheckSmi(); |
318 const Operator* CheckString(); | 318 const Operator* CheckString(); |
319 | 319 |
320 const Operator* CheckHasInPrototypeChain(); | |
321 | |
322 const Operator* CheckedInt32Add(); | 320 const Operator* CheckedInt32Add(); |
323 const Operator* CheckedInt32Sub(); | 321 const Operator* CheckedInt32Sub(); |
324 const Operator* CheckedInt32Div(); | 322 const Operator* CheckedInt32Div(); |
325 const Operator* CheckedInt32Mod(); | 323 const Operator* CheckedInt32Mod(); |
326 const Operator* CheckedUint32Div(); | 324 const Operator* CheckedUint32Div(); |
327 const Operator* CheckedUint32Mod(); | 325 const Operator* CheckedUint32Mod(); |
328 const Operator* CheckedInt32Mul(CheckForMinusZeroMode); | 326 const Operator* CheckedInt32Mul(CheckForMinusZeroMode); |
329 const Operator* CheckedInt32ToTaggedSigned(); | 327 const Operator* CheckedInt32ToTaggedSigned(); |
330 const Operator* CheckedUint32ToInt32(); | 328 const Operator* CheckedUint32ToInt32(); |
331 const Operator* CheckedUint32ToTaggedSigned(); | 329 const Operator* CheckedUint32ToTaggedSigned(); |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
389 Zone* const zone_; | 387 Zone* const zone_; |
390 | 388 |
391 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 389 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
392 }; | 390 }; |
393 | 391 |
394 } // namespace compiler | 392 } // namespace compiler |
395 } // namespace internal | 393 } // namespace internal |
396 } // namespace v8 | 394 } // namespace v8 |
397 | 395 |
398 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 396 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
OLD | NEW |