| 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 <limits> | 7 #include <limits> |
| 8 | 8 |
| 9 #include "src/base/adapters.h" | 9 #include "src/base/adapters.h" |
| 10 #include "src/compiler/compiler-source-position-table.h" | 10 #include "src/compiler/compiler-source-position-table.h" |
| (...skipping 2013 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2024 | 2024 |
| 2025 void InstructionSelector::VisitInt32PairMul(Node* node) { UNIMPLEMENTED(); } | 2025 void InstructionSelector::VisitInt32PairMul(Node* node) { UNIMPLEMENTED(); } |
| 2026 | 2026 |
| 2027 void InstructionSelector::VisitWord32PairShl(Node* node) { UNIMPLEMENTED(); } | 2027 void InstructionSelector::VisitWord32PairShl(Node* node) { UNIMPLEMENTED(); } |
| 2028 | 2028 |
| 2029 void InstructionSelector::VisitWord32PairShr(Node* node) { UNIMPLEMENTED(); } | 2029 void InstructionSelector::VisitWord32PairShr(Node* node) { UNIMPLEMENTED(); } |
| 2030 | 2030 |
| 2031 void InstructionSelector::VisitWord32PairSar(Node* node) { UNIMPLEMENTED(); } | 2031 void InstructionSelector::VisitWord32PairSar(Node* node) { UNIMPLEMENTED(); } |
| 2032 #endif // V8_TARGET_ARCH_64_BIT | 2032 #endif // V8_TARGET_ARCH_64_BIT |
| 2033 | 2033 |
| 2034 #if !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM | 2034 #if !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_IA32 |
| 2035 void InstructionSelector::VisitInt32x4Splat(Node* node) { UNIMPLEMENTED(); } | 2035 void InstructionSelector::VisitInt32x4Splat(Node* node) { UNIMPLEMENTED(); } |
| 2036 | 2036 |
| 2037 void InstructionSelector::VisitInt32x4ExtractLane(Node* node) { | 2037 void InstructionSelector::VisitInt32x4ExtractLane(Node* node) { |
| 2038 UNIMPLEMENTED(); | 2038 UNIMPLEMENTED(); |
| 2039 } | 2039 } |
| 2040 | 2040 |
| 2041 void InstructionSelector::VisitInt32x4ReplaceLane(Node* node) { | 2041 void InstructionSelector::VisitInt32x4ReplaceLane(Node* node) { |
| 2042 UNIMPLEMENTED(); | 2042 UNIMPLEMENTED(); |
| 2043 } | 2043 } |
| 2044 | 2044 |
| 2045 void InstructionSelector::VisitInt32x4Add(Node* node) { UNIMPLEMENTED(); } | 2045 void InstructionSelector::VisitInt32x4Add(Node* node) { UNIMPLEMENTED(); } |
| 2046 | 2046 |
| 2047 void InstructionSelector::VisitInt32x4Sub(Node* node) { UNIMPLEMENTED(); } | 2047 void InstructionSelector::VisitInt32x4Sub(Node* node) { UNIMPLEMENTED(); } |
| 2048 #endif // !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_IA32 |
| 2048 | 2049 |
| 2050 #if !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM |
| 2049 void InstructionSelector::VisitSimd128Zero(Node* node) { UNIMPLEMENTED(); } | 2051 void InstructionSelector::VisitSimd128Zero(Node* node) { UNIMPLEMENTED(); } |
| 2050 | 2052 |
| 2051 void InstructionSelector::VisitSimd1x4Zero(Node* node) { UNIMPLEMENTED(); } | 2053 void InstructionSelector::VisitSimd1x4Zero(Node* node) { UNIMPLEMENTED(); } |
| 2052 | 2054 |
| 2053 void InstructionSelector::VisitSimd1x8Zero(Node* node) { UNIMPLEMENTED(); } | 2055 void InstructionSelector::VisitSimd1x8Zero(Node* node) { UNIMPLEMENTED(); } |
| 2054 | 2056 |
| 2055 void InstructionSelector::VisitSimd1x16Zero(Node* node) { UNIMPLEMENTED(); } | 2057 void InstructionSelector::VisitSimd1x16Zero(Node* node) { UNIMPLEMENTED(); } |
| 2056 #endif // !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM | 2058 #endif // !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM |
| 2057 | 2059 |
| 2058 #if !V8_TARGET_ARCH_ARM | 2060 #if !V8_TARGET_ARCH_ARM |
| (...skipping 668 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2727 return new (instruction_zone()) FrameStateDescriptor( | 2729 return new (instruction_zone()) FrameStateDescriptor( |
| 2728 instruction_zone(), state_info.type(), state_info.bailout_id(), | 2730 instruction_zone(), state_info.type(), state_info.bailout_id(), |
| 2729 state_info.state_combine(), parameters, locals, stack, | 2731 state_info.state_combine(), parameters, locals, stack, |
| 2730 state_info.shared_info(), outer_state); | 2732 state_info.shared_info(), outer_state); |
| 2731 } | 2733 } |
| 2732 | 2734 |
| 2733 | 2735 |
| 2734 } // namespace compiler | 2736 } // namespace compiler |
| 2735 } // namespace internal | 2737 } // namespace internal |
| 2736 } // namespace v8 | 2738 } // namespace v8 |
| OLD | NEW |