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 <assert.h> // For assert | 5 #include <assert.h> // For assert |
6 #include <limits.h> // For LONG_MIN, LONG_MAX. | 6 #include <limits.h> // For LONG_MIN, LONG_MAX. |
7 | 7 |
8 #if V8_TARGET_ARCH_S390 | 8 #if V8_TARGET_ARCH_S390 |
9 | 9 |
10 #include "src/base/bits.h" | 10 #include "src/base/bits.h" |
(...skipping 4197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4208 void MacroAssembler::Load(Register dst, const Operand& opnd) { | 4208 void MacroAssembler::Load(Register dst, const Operand& opnd) { |
4209 intptr_t value = opnd.immediate(); | 4209 intptr_t value = opnd.immediate(); |
4210 if (is_int16(value)) { | 4210 if (is_int16(value)) { |
4211 #if V8_TARGET_ARCH_S390X | 4211 #if V8_TARGET_ARCH_S390X |
4212 lghi(dst, opnd); | 4212 lghi(dst, opnd); |
4213 #else | 4213 #else |
4214 lhi(dst, opnd); | 4214 lhi(dst, opnd); |
4215 #endif | 4215 #endif |
4216 } else { | 4216 } else { |
4217 #if V8_TARGET_ARCH_S390X | 4217 #if V8_TARGET_ARCH_S390X |
4218 llilf(dst, opnd); | 4218 lgfi(dst, opnd); |
4219 #else | 4219 #else |
4220 iilf(dst, opnd); | 4220 iilf(dst, opnd); |
4221 #endif | 4221 #endif |
4222 } | 4222 } |
4223 } | 4223 } |
4224 | 4224 |
4225 void MacroAssembler::Load(Register dst, const MemOperand& opnd) { | 4225 void MacroAssembler::Load(Register dst, const MemOperand& opnd) { |
4226 DCHECK(is_int20(opnd.offset())); | 4226 DCHECK(is_int20(opnd.offset())); |
4227 #if V8_TARGET_ARCH_S390X | 4227 #if V8_TARGET_ARCH_S390X |
4228 lgf(dst, opnd); // 64<-32 | 4228 lgf(dst, opnd); // 64<-32 |
(...skipping 954 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5183 } | 5183 } |
5184 if (mag.shift > 0) ShiftRightArith(result, result, Operand(mag.shift)); | 5184 if (mag.shift > 0) ShiftRightArith(result, result, Operand(mag.shift)); |
5185 ExtractBit(r0, dividend, 31); | 5185 ExtractBit(r0, dividend, 31); |
5186 AddP(result, r0); | 5186 AddP(result, r0); |
5187 } | 5187 } |
5188 | 5188 |
5189 } // namespace internal | 5189 } // namespace internal |
5190 } // namespace v8 | 5190 } // namespace v8 |
5191 | 5191 |
5192 #endif // V8_TARGET_ARCH_S390 | 5192 #endif // V8_TARGET_ARCH_S390 |
OLD | NEW |