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" |
11 | 11 |
12 namespace v8 { | 12 namespace v8 { |
13 namespace internal { | 13 namespace internal { |
14 namespace compiler { | 14 namespace compiler { |
15 | 15 |
16 // Adds X64-specific methods for generating operands. | 16 // Adds X64-specific methods for generating operands. |
17 class X64OperandGenerator final : public OperandGenerator { | 17 class X64OperandGenerator final : public OperandGenerator { |
18 public: | 18 public: |
19 explicit X64OperandGenerator(InstructionSelector* selector) | 19 explicit X64OperandGenerator(InstructionSelector* selector) |
20 : OperandGenerator(selector) {} | 20 : OperandGenerator(selector) {} |
21 | 21 |
22 bool CanBeImmediate(Node* node) { | 22 bool CanBeImmediate(Node* node) { |
23 switch (node->opcode()) { | 23 switch (node->opcode()) { |
24 case IrOpcode::kInt32Constant: | 24 case IrOpcode::kInt32Constant: |
| 25 case IrOpcode::kRelocatableInt32Constant: |
25 return true; | 26 return true; |
| 27 case IrOpcode::kRelocatableInt64Constant: |
26 case IrOpcode::kInt64Constant: { | 28 case IrOpcode::kInt64Constant: { |
27 const int64_t value = OpParameter<int64_t>(node); | 29 const int64_t value = OpParameter<int64_t>(node); |
28 return value == static_cast<int64_t>(static_cast<int32_t>(value)); | 30 return value == static_cast<int64_t>(static_cast<int32_t>(value)); |
29 } | 31 } |
30 case IrOpcode::kNumberConstant: { | 32 case IrOpcode::kNumberConstant: { |
31 const double value = OpParameter<double>(node); | 33 const double value = OpParameter<double>(node); |
32 return bit_cast<int64_t>(value) == 0; | 34 return bit_cast<int64_t>(value) == 0; |
33 } | 35 } |
34 default: | 36 default: |
35 return false; | 37 return false; |
(...skipping 1892 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1928 MachineOperatorBuilder::kFloat64RoundTruncate | | 1930 MachineOperatorBuilder::kFloat64RoundTruncate | |
1929 MachineOperatorBuilder::kFloat32RoundTiesEven | | 1931 MachineOperatorBuilder::kFloat32RoundTiesEven | |
1930 MachineOperatorBuilder::kFloat64RoundTiesEven; | 1932 MachineOperatorBuilder::kFloat64RoundTiesEven; |
1931 } | 1933 } |
1932 return flags; | 1934 return flags; |
1933 } | 1935 } |
1934 | 1936 |
1935 } // namespace compiler | 1937 } // namespace compiler |
1936 } // namespace internal | 1938 } // namespace internal |
1937 } // namespace v8 | 1939 } // namespace v8 |
OLD | NEW |