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 <algorithm> | 5 #include <algorithm> |
6 | 6 |
7 #include "src/base/adapters.h" | 7 #include "src/base/adapters.h" |
8 #include "src/compiler/instruction-selector-impl.h" | 8 #include "src/compiler/instruction-selector-impl.h" |
9 #include "src/compiler/node-matchers.h" | 9 #include "src/compiler/node-matchers.h" |
10 #include "src/compiler/node-properties.h" | 10 #include "src/compiler/node-properties.h" |
(...skipping 2188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2199 addressing_mode = kMode_MRI; | 2199 addressing_mode = kMode_MRI; |
2200 } else { | 2200 } else { |
2201 inputs[input_count++] = g.UseUniqueRegister(index); | 2201 inputs[input_count++] = g.UseUniqueRegister(index); |
2202 addressing_mode = kMode_MR1; | 2202 addressing_mode = kMode_MR1; |
2203 } | 2203 } |
2204 inputs[input_count++] = g.UseUniqueRegister(value); | 2204 inputs[input_count++] = g.UseUniqueRegister(value); |
2205 InstructionCode code = opcode | AddressingModeField::encode(addressing_mode); | 2205 InstructionCode code = opcode | AddressingModeField::encode(addressing_mode); |
2206 Emit(code, 0, static_cast<InstructionOperand*>(nullptr), input_count, inputs); | 2206 Emit(code, 0, static_cast<InstructionOperand*>(nullptr), input_count, inputs); |
2207 } | 2207 } |
2208 | 2208 |
| 2209 void InstructionSelector::VisitCreateInt32x4(Node* node) { |
| 2210 X64OperandGenerator g(this); |
| 2211 Emit(kSSECreateInt32x4, g.DefineAsRegister(node), g.Use(node->InputAt(0))); |
| 2212 } |
| 2213 |
| 2214 void InstructionSelector::VisitInt32x4ExtractLane(Node* node) { |
| 2215 X64OperandGenerator g(this); |
| 2216 Emit(kSSEInt32x4ExtractLane, g.DefineAsRegister(node), |
| 2217 g.UseRegister(node->InputAt(0)), g.UseImmediate(node->InputAt(1))); |
| 2218 } |
| 2219 |
2209 // static | 2220 // static |
2210 MachineOperatorBuilder::Flags | 2221 MachineOperatorBuilder::Flags |
2211 InstructionSelector::SupportedMachineOperatorFlags() { | 2222 InstructionSelector::SupportedMachineOperatorFlags() { |
2212 MachineOperatorBuilder::Flags flags = | 2223 MachineOperatorBuilder::Flags flags = |
2213 MachineOperatorBuilder::kWord32ShiftIsSafe | | 2224 MachineOperatorBuilder::kWord32ShiftIsSafe | |
2214 MachineOperatorBuilder::kWord32Ctz | MachineOperatorBuilder::kWord64Ctz; | 2225 MachineOperatorBuilder::kWord32Ctz | MachineOperatorBuilder::kWord64Ctz; |
2215 if (CpuFeatures::IsSupported(POPCNT)) { | 2226 if (CpuFeatures::IsSupported(POPCNT)) { |
2216 flags |= MachineOperatorBuilder::kWord32Popcnt | | 2227 flags |= MachineOperatorBuilder::kWord32Popcnt | |
2217 MachineOperatorBuilder::kWord64Popcnt; | 2228 MachineOperatorBuilder::kWord64Popcnt; |
2218 } | 2229 } |
(...skipping 13 matching lines...) Expand all Loading... |
2232 // static | 2243 // static |
2233 MachineOperatorBuilder::AlignmentRequirements | 2244 MachineOperatorBuilder::AlignmentRequirements |
2234 InstructionSelector::AlignmentRequirements() { | 2245 InstructionSelector::AlignmentRequirements() { |
2235 return MachineOperatorBuilder::AlignmentRequirements:: | 2246 return MachineOperatorBuilder::AlignmentRequirements:: |
2236 FullUnalignedAccessSupport(); | 2247 FullUnalignedAccessSupport(); |
2237 } | 2248 } |
2238 | 2249 |
2239 } // namespace compiler | 2250 } // namespace compiler |
2240 } // namespace internal | 2251 } // namespace internal |
2241 } // namespace v8 | 2252 } // namespace v8 |
OLD | NEW |