OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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/x64/assembler-x64.h" | 5 #include "src/x64/assembler-x64.h" |
6 | 6 |
7 #include <cstring> | 7 #include <cstring> |
8 | 8 |
9 #if V8_TARGET_ARCH_X64 | 9 #if V8_TARGET_ARCH_X64 |
10 | 10 |
(...skipping 3112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3123 emit_sse_operand(dst, src); | 3123 emit_sse_operand(dst, src); |
3124 } | 3124 } |
3125 | 3125 |
3126 | 3126 |
3127 void Assembler::cvttss2siq(Register dst, const Operand& src) { | 3127 void Assembler::cvttss2siq(Register dst, const Operand& src) { |
3128 DCHECK(!IsEnabled(AVX)); | 3128 DCHECK(!IsEnabled(AVX)); |
3129 EnsureSpace ensure_space(this); | 3129 EnsureSpace ensure_space(this); |
3130 emit(0xF3); | 3130 emit(0xF3); |
3131 emit_rex_64(dst, src); | 3131 emit_rex_64(dst, src); |
3132 emit(0x0F); | 3132 emit(0x0F); |
3133 emit(0x2D); | |
3134 emit_sse_operand(dst, src); | |
3135 } | |
3136 | |
3137 | |
3138 void Assembler::cvtss2siq(Register dst, XMMRegister src) { | |
3139 DCHECK(!IsEnabled(AVX)); | |
3140 EnsureSpace ensure_space(this); | |
3141 emit(0xF3); | |
3142 emit_rex_64(dst, src); | |
3143 emit(0x0F); | |
3144 emit(0x2D); | |
3145 emit_sse_operand(dst, src); | |
3146 } | |
3147 | |
3148 | |
3149 void Assembler::cvtss2siq(Register dst, const Operand& src) { | |
3150 DCHECK(!IsEnabled(AVX)); | |
3151 EnsureSpace ensure_space(this); | |
3152 emit(0xF3); | |
3153 emit_rex_64(dst, src); | |
3154 emit(0x0F); | |
3155 emit(0x2C); | 3133 emit(0x2C); |
3156 emit_sse_operand(dst, src); | 3134 emit_sse_operand(dst, src); |
3157 } | 3135 } |
3158 | 3136 |
3159 | 3137 |
3160 void Assembler::cvttsd2siq(Register dst, XMMRegister src) { | 3138 void Assembler::cvttsd2siq(Register dst, XMMRegister src) { |
3161 DCHECK(!IsEnabled(AVX)); | 3139 DCHECK(!IsEnabled(AVX)); |
3162 EnsureSpace ensure_space(this); | 3140 EnsureSpace ensure_space(this); |
3163 emit(0xF2); | 3141 emit(0xF2); |
3164 emit_rex_64(dst, src); | 3142 emit_rex_64(dst, src); |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3318 emit(0x0F); | 3296 emit(0x0F); |
3319 emit(0x2D); | 3297 emit(0x2D); |
3320 emit_sse_operand(dst, src); | 3298 emit_sse_operand(dst, src); |
3321 } | 3299 } |
3322 | 3300 |
3323 | 3301 |
3324 void Assembler::cvtsd2siq(Register dst, XMMRegister src) { | 3302 void Assembler::cvtsd2siq(Register dst, XMMRegister src) { |
3325 DCHECK(!IsEnabled(AVX)); | 3303 DCHECK(!IsEnabled(AVX)); |
3326 EnsureSpace ensure_space(this); | 3304 EnsureSpace ensure_space(this); |
3327 emit(0xF2); | 3305 emit(0xF2); |
3328 emit_rex_64(dst, src); | |
3329 emit(0x0F); | |
3330 emit(0x2D); | |
3331 emit_sse_operand(dst, src); | |
3332 } | |
3333 | |
3334 | |
3335 void Assembler::cvtsd2siq(Register dst, const Operand& src) { | |
3336 DCHECK(!IsEnabled(AVX)); | |
3337 EnsureSpace ensure_space(this); | |
3338 emit(0xF2); | |
3339 emit_rex_64(dst, src); | 3306 emit_rex_64(dst, src); |
3340 emit(0x0F); | 3307 emit(0x0F); |
3341 emit(0x2D); | 3308 emit(0x2D); |
3342 emit_sse_operand(dst, src); | 3309 emit_sse_operand(dst, src); |
3343 } | 3310 } |
3344 | 3311 |
3345 | 3312 |
3346 void Assembler::addsd(XMMRegister dst, XMMRegister src) { | 3313 void Assembler::addsd(XMMRegister dst, XMMRegister src) { |
3347 EnsureSpace ensure_space(this); | 3314 EnsureSpace ensure_space(this); |
3348 emit(0xF2); | 3315 emit(0xF2); |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3572 emit_optional_rex_32(dst, src); | 3539 emit_optional_rex_32(dst, src); |
3573 emit(0x0f); | 3540 emit(0x0f); |
3574 emit(0x3a); | 3541 emit(0x3a); |
3575 emit(0x0b); | 3542 emit(0x0b); |
3576 emit_sse_operand(dst, src); | 3543 emit_sse_operand(dst, src); |
3577 // Mask precision exception. | 3544 // Mask precision exception. |
3578 emit(static_cast<byte>(mode) | 0x8); | 3545 emit(static_cast<byte>(mode) | 0x8); |
3579 } | 3546 } |
3580 | 3547 |
3581 | 3548 |
3582 void Assembler::ldmxcsr(const Operand& dst) { | |
3583 EnsureSpace ensure_space(this); | |
3584 emit(0x0F); | |
3585 emit(0xAE); | |
3586 emit_operand(2, dst); | |
3587 } | |
3588 | |
3589 | |
3590 void Assembler::stmxcsr(const Operand& dst) { | |
3591 EnsureSpace ensure_space(this); | |
3592 emit(0x0F); | |
3593 emit(0xAE); | |
3594 emit_operand(3, dst); | |
3595 } | |
3596 | |
3597 | |
3598 void Assembler::movmskpd(Register dst, XMMRegister src) { | 3549 void Assembler::movmskpd(Register dst, XMMRegister src) { |
3599 EnsureSpace ensure_space(this); | 3550 EnsureSpace ensure_space(this); |
3600 emit(0x66); | 3551 emit(0x66); |
3601 emit_optional_rex_32(dst, src); | 3552 emit_optional_rex_32(dst, src); |
3602 emit(0x0f); | 3553 emit(0x0f); |
3603 emit(0x50); | 3554 emit(0x50); |
3604 emit_sse_operand(dst, src); | 3555 emit_sse_operand(dst, src); |
3605 } | 3556 } |
3606 | 3557 |
3607 | 3558 |
(...skipping 590 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4198 | 4149 |
4199 bool RelocInfo::IsInConstantPool() { | 4150 bool RelocInfo::IsInConstantPool() { |
4200 return false; | 4151 return false; |
4201 } | 4152 } |
4202 | 4153 |
4203 | 4154 |
4204 } // namespace internal | 4155 } // namespace internal |
4205 } // namespace v8 | 4156 } // namespace v8 |
4206 | 4157 |
4207 #endif // V8_TARGET_ARCH_X64 | 4158 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |