| 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 1939 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1950 | 1950 |
| 1951 void InstructionSelector::VisitInt32PairMul(Node* node) { UNIMPLEMENTED(); } | 1951 void InstructionSelector::VisitInt32PairMul(Node* node) { UNIMPLEMENTED(); } |
| 1952 | 1952 |
| 1953 void InstructionSelector::VisitWord32PairShl(Node* node) { UNIMPLEMENTED(); } | 1953 void InstructionSelector::VisitWord32PairShl(Node* node) { UNIMPLEMENTED(); } |
| 1954 | 1954 |
| 1955 void InstructionSelector::VisitWord32PairShr(Node* node) { UNIMPLEMENTED(); } | 1955 void InstructionSelector::VisitWord32PairShr(Node* node) { UNIMPLEMENTED(); } |
| 1956 | 1956 |
| 1957 void InstructionSelector::VisitWord32PairSar(Node* node) { UNIMPLEMENTED(); } | 1957 void InstructionSelector::VisitWord32PairSar(Node* node) { UNIMPLEMENTED(); } |
| 1958 #endif // V8_TARGET_ARCH_64_BIT | 1958 #endif // V8_TARGET_ARCH_64_BIT |
| 1959 | 1959 |
| 1960 #if !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM | 1960 #if !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_IA32 |
| 1961 void InstructionSelector::VisitCreateInt32x4(Node* node) { UNIMPLEMENTED(); } | 1961 void InstructionSelector::VisitCreateInt32x4(Node* node) { UNIMPLEMENTED(); } |
| 1962 | 1962 |
| 1963 void InstructionSelector::VisitInt32x4ExtractLane(Node* node) { | 1963 void InstructionSelector::VisitInt32x4ExtractLane(Node* node) { |
| 1964 UNIMPLEMENTED(); | 1964 UNIMPLEMENTED(); |
| 1965 } | 1965 } |
| 1966 | 1966 |
| 1967 void InstructionSelector::VisitInt32x4ReplaceLane(Node* node) { | 1967 void InstructionSelector::VisitInt32x4ReplaceLane(Node* node) { |
| 1968 UNIMPLEMENTED(); | 1968 UNIMPLEMENTED(); |
| 1969 } | 1969 } |
| 1970 | 1970 |
| 1971 void InstructionSelector::VisitInt32x4Add(Node* node) { UNIMPLEMENTED(); } | 1971 void InstructionSelector::VisitInt32x4Add(Node* node) { UNIMPLEMENTED(); } |
| 1972 | 1972 |
| 1973 void InstructionSelector::VisitInt32x4Sub(Node* node) { UNIMPLEMENTED(); } | 1973 void InstructionSelector::VisitInt32x4Sub(Node* node) { UNIMPLEMENTED(); } |
| 1974 | 1974 |
| 1975 #endif // !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM | 1975 #endif // !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_IA32 |
| 1976 | 1976 |
| 1977 #if !V8_TARGET_ARCH_ARM | 1977 #if !V8_TARGET_ARCH_ARM |
| 1978 void InstructionSelector::VisitCreateFloat32x4(Node* node) { UNIMPLEMENTED(); } | 1978 void InstructionSelector::VisitCreateFloat32x4(Node* node) { UNIMPLEMENTED(); } |
| 1979 | 1979 |
| 1980 void InstructionSelector::VisitFloat32x4ExtractLane(Node* node) { | 1980 void InstructionSelector::VisitFloat32x4ExtractLane(Node* node) { |
| 1981 UNIMPLEMENTED(); | 1981 UNIMPLEMENTED(); |
| 1982 } | 1982 } |
| 1983 | 1983 |
| 1984 void InstructionSelector::VisitFloat32x4ReplaceLane(Node* node) { | 1984 void InstructionSelector::VisitFloat32x4ReplaceLane(Node* node) { |
| 1985 UNIMPLEMENTED(); | 1985 UNIMPLEMENTED(); |
| (...skipping 625 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2611 return new (instruction_zone()) FrameStateDescriptor( | 2611 return new (instruction_zone()) FrameStateDescriptor( |
| 2612 instruction_zone(), state_info.type(), state_info.bailout_id(), | 2612 instruction_zone(), state_info.type(), state_info.bailout_id(), |
| 2613 state_info.state_combine(), parameters, locals, stack, | 2613 state_info.state_combine(), parameters, locals, stack, |
| 2614 state_info.shared_info(), outer_state); | 2614 state_info.shared_info(), outer_state); |
| 2615 } | 2615 } |
| 2616 | 2616 |
| 2617 | 2617 |
| 2618 } // namespace compiler | 2618 } // namespace compiler |
| 2619 } // namespace internal | 2619 } // namespace internal |
| 2620 } // namespace v8 | 2620 } // namespace v8 |
| OLD | NEW |