| 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 1948 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1959 | 1959 |
| 1960 void InstructionSelector::VisitInt32PairMul(Node* node) { UNIMPLEMENTED(); } | 1960 void InstructionSelector::VisitInt32PairMul(Node* node) { UNIMPLEMENTED(); } |
| 1961 | 1961 |
| 1962 void InstructionSelector::VisitWord32PairShl(Node* node) { UNIMPLEMENTED(); } | 1962 void InstructionSelector::VisitWord32PairShl(Node* node) { UNIMPLEMENTED(); } |
| 1963 | 1963 |
| 1964 void InstructionSelector::VisitWord32PairShr(Node* node) { UNIMPLEMENTED(); } | 1964 void InstructionSelector::VisitWord32PairShr(Node* node) { UNIMPLEMENTED(); } |
| 1965 | 1965 |
| 1966 void InstructionSelector::VisitWord32PairSar(Node* node) { UNIMPLEMENTED(); } | 1966 void InstructionSelector::VisitWord32PairSar(Node* node) { UNIMPLEMENTED(); } |
| 1967 #endif // V8_TARGET_ARCH_64_BIT | 1967 #endif // V8_TARGET_ARCH_64_BIT |
| 1968 | 1968 |
| 1969 #if !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_IA32 | 1969 #if !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM |
| 1970 void InstructionSelector::VisitInt32x4Splat(Node* node) { UNIMPLEMENTED(); } | 1970 void InstructionSelector::VisitInt32x4Splat(Node* node) { UNIMPLEMENTED(); } |
| 1971 | 1971 |
| 1972 void InstructionSelector::VisitInt32x4ExtractLane(Node* node) { | 1972 void InstructionSelector::VisitInt32x4ExtractLane(Node* node) { |
| 1973 UNIMPLEMENTED(); | 1973 UNIMPLEMENTED(); |
| 1974 } | 1974 } |
| 1975 | 1975 |
| 1976 void InstructionSelector::VisitInt32x4ReplaceLane(Node* node) { | 1976 void InstructionSelector::VisitInt32x4ReplaceLane(Node* node) { |
| 1977 UNIMPLEMENTED(); | 1977 UNIMPLEMENTED(); |
| 1978 } | 1978 } |
| 1979 | 1979 |
| 1980 void InstructionSelector::VisitInt32x4Add(Node* node) { UNIMPLEMENTED(); } | 1980 void InstructionSelector::VisitInt32x4Add(Node* node) { UNIMPLEMENTED(); } |
| 1981 | 1981 |
| 1982 void InstructionSelector::VisitInt32x4Sub(Node* node) { UNIMPLEMENTED(); } | 1982 void InstructionSelector::VisitInt32x4Sub(Node* node) { UNIMPLEMENTED(); } |
| 1983 #endif // !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_IA32 | |
| 1984 | 1983 |
| 1985 #if !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM | |
| 1986 void InstructionSelector::VisitSimd128Zero(Node* node) { UNIMPLEMENTED(); } | 1984 void InstructionSelector::VisitSimd128Zero(Node* node) { UNIMPLEMENTED(); } |
| 1987 | 1985 |
| 1988 void InstructionSelector::VisitSimd1x4Zero(Node* node) { UNIMPLEMENTED(); } | 1986 void InstructionSelector::VisitSimd1x4Zero(Node* node) { UNIMPLEMENTED(); } |
| 1989 | 1987 |
| 1990 void InstructionSelector::VisitSimd1x8Zero(Node* node) { UNIMPLEMENTED(); } | 1988 void InstructionSelector::VisitSimd1x8Zero(Node* node) { UNIMPLEMENTED(); } |
| 1991 | 1989 |
| 1992 void InstructionSelector::VisitSimd1x16Zero(Node* node) { UNIMPLEMENTED(); } | 1990 void InstructionSelector::VisitSimd1x16Zero(Node* node) { UNIMPLEMENTED(); } |
| 1993 #endif // !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM | 1991 #endif // !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM |
| 1994 | 1992 |
| 1995 #if !V8_TARGET_ARCH_ARM | 1993 #if !V8_TARGET_ARCH_ARM |
| (...skipping 632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2628 return new (instruction_zone()) FrameStateDescriptor( | 2626 return new (instruction_zone()) FrameStateDescriptor( |
| 2629 instruction_zone(), state_info.type(), state_info.bailout_id(), | 2627 instruction_zone(), state_info.type(), state_info.bailout_id(), |
| 2630 state_info.state_combine(), parameters, locals, stack, | 2628 state_info.state_combine(), parameters, locals, stack, |
| 2631 state_info.shared_info(), outer_state); | 2629 state_info.shared_info(), outer_state); |
| 2632 } | 2630 } |
| 2633 | 2631 |
| 2634 | 2632 |
| 2635 } // namespace compiler | 2633 } // namespace compiler |
| 2636 } // namespace internal | 2634 } // namespace internal |
| 2637 } // namespace v8 | 2635 } // namespace v8 |
| OLD | NEW |