OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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/code-generator.h" | 5 #include "src/compiler/code-generator.h" |
6 | 6 |
7 #include "src/compilation-info.h" | 7 #include "src/compilation-info.h" |
8 #include "src/compiler/code-generator-impl.h" | 8 #include "src/compiler/code-generator-impl.h" |
9 #include "src/compiler/gap-resolver.h" | 9 #include "src/compiler/gap-resolver.h" |
10 #include "src/compiler/node-matchers.h" | 10 #include "src/compiler/node-matchers.h" |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 } | 59 } |
60 | 60 |
61 Operand HighOperand(InstructionOperand* op) { | 61 Operand HighOperand(InstructionOperand* op) { |
62 DCHECK(op->IsFPStackSlot()); | 62 DCHECK(op->IsFPStackSlot()); |
63 return ToOperand(op, kPointerSize); | 63 return ToOperand(op, kPointerSize); |
64 } | 64 } |
65 | 65 |
66 Immediate ToImmediate(InstructionOperand* operand) { | 66 Immediate ToImmediate(InstructionOperand* operand) { |
67 Constant constant = ToConstant(operand); | 67 Constant constant = ToConstant(operand); |
68 if (constant.type() == Constant::kInt32 && | 68 if (constant.type() == Constant::kInt32 && |
69 (constant.rmode() == RelocInfo::WASM_MEMORY_REFERENCE || | 69 RelocInfo::IsWasmReference(constant.rmode())) { |
70 constant.rmode() == RelocInfo::WASM_GLOBAL_REFERENCE || | |
71 constant.rmode() == RelocInfo::WASM_MEMORY_SIZE_REFERENCE)) { | |
72 return Immediate(reinterpret_cast<Address>(constant.ToInt32()), | 70 return Immediate(reinterpret_cast<Address>(constant.ToInt32()), |
73 constant.rmode()); | 71 constant.rmode()); |
74 } | 72 } |
75 switch (constant.type()) { | 73 switch (constant.type()) { |
76 case Constant::kInt32: | 74 case Constant::kInt32: |
77 return Immediate(constant.ToInt32()); | 75 return Immediate(constant.ToInt32()); |
78 case Constant::kFloat32: | 76 case Constant::kFloat32: |
79 return Immediate( | 77 return Immediate( |
80 isolate()->factory()->NewNumber(constant.ToFloat32(), TENURED)); | 78 isolate()->factory()->NewNumber(constant.ToFloat32(), TENURED)); |
81 case Constant::kFloat64: | 79 case Constant::kFloat64: |
(...skipping 2221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2303 int padding_size = last_lazy_deopt_pc_ + space_needed - current_pc; | 2301 int padding_size = last_lazy_deopt_pc_ + space_needed - current_pc; |
2304 __ Nop(padding_size); | 2302 __ Nop(padding_size); |
2305 } | 2303 } |
2306 } | 2304 } |
2307 | 2305 |
2308 #undef __ | 2306 #undef __ |
2309 | 2307 |
2310 } // namespace compiler | 2308 } // namespace compiler |
2311 } // namespace internal | 2309 } // namespace internal |
2312 } // namespace v8 | 2310 } // namespace v8 |
OLD | NEW |