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 #include "src/compiler/instruction-selector.h" | 5 #include "src/compiler/instruction-selector.h" |
6 | 6 |
7 #include "src/compiler/instruction-selector-impl.h" | 7 #include "src/compiler/instruction-selector-impl.h" |
8 #include "src/compiler/node-matchers.h" | 8 #include "src/compiler/node-matchers.h" |
9 #include "src/compiler/node-properties-inl.h" | 9 #include "src/compiler/node-properties-inl.h" |
10 #include "src/compiler/pipeline.h" | 10 #include "src/compiler/pipeline.h" |
(...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
504 case IrOpcode::kWord64Sar: | 504 case IrOpcode::kWord64Sar: |
505 return VisitWord64Sar(node); | 505 return VisitWord64Sar(node); |
506 case IrOpcode::kWord64Equal: | 506 case IrOpcode::kWord64Equal: |
507 return VisitWord64Equal(node); | 507 return VisitWord64Equal(node); |
508 case IrOpcode::kInt32Add: | 508 case IrOpcode::kInt32Add: |
509 return VisitInt32Add(node); | 509 return VisitInt32Add(node); |
510 case IrOpcode::kInt32AddWithOverflow: | 510 case IrOpcode::kInt32AddWithOverflow: |
511 return VisitInt32AddWithOverflow(node); | 511 return VisitInt32AddWithOverflow(node); |
512 case IrOpcode::kInt32Sub: | 512 case IrOpcode::kInt32Sub: |
513 return VisitInt32Sub(node); | 513 return VisitInt32Sub(node); |
| 514 case IrOpcode::kInt32SubWithOverflow: |
| 515 return VisitInt32SubWithOverflow(node); |
514 case IrOpcode::kInt32Mul: | 516 case IrOpcode::kInt32Mul: |
515 return VisitInt32Mul(node); | 517 return VisitInt32Mul(node); |
516 case IrOpcode::kInt32Div: | 518 case IrOpcode::kInt32Div: |
517 return VisitInt32Div(node); | 519 return VisitInt32Div(node); |
518 case IrOpcode::kInt32UDiv: | 520 case IrOpcode::kInt32UDiv: |
519 return VisitInt32UDiv(node); | 521 return VisitInt32UDiv(node); |
520 case IrOpcode::kInt32Mod: | 522 case IrOpcode::kInt32Mod: |
521 return VisitInt32Mod(node); | 523 return VisitInt32Mod(node); |
522 case IrOpcode::kInt32UMod: | 524 case IrOpcode::kInt32UMod: |
523 return VisitInt32UMod(node); | 525 return VisitInt32UMod(node); |
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
909 | 911 |
910 | 912 |
911 void InstructionSelector::VisitCall(Node* call, BasicBlock* continuation, | 913 void InstructionSelector::VisitCall(Node* call, BasicBlock* continuation, |
912 BasicBlock* deoptimization) {} | 914 BasicBlock* deoptimization) {} |
913 | 915 |
914 #endif | 916 #endif |
915 | 917 |
916 } // namespace compiler | 918 } // namespace compiler |
917 } // namespace internal | 919 } // namespace internal |
918 } // namespace v8 | 920 } // namespace v8 |
OLD | NEW |