| 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/v8.h" | 5 #include "src/v8.h" |
| 6 | 6 |
| 7 #if V8_TARGET_ARCH_IA32 | 7 #if V8_TARGET_ARCH_IA32 |
| 8 | 8 |
| 9 #include "src/base/bits.h" | 9 #include "src/base/bits.h" |
| 10 #include "src/base/division-by-constant.h" | 10 #include "src/base/division-by-constant.h" |
| (...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 565 // turned on to provoke errors. | 565 // turned on to provoke errors. |
| 566 if (emit_debug_code()) { | 566 if (emit_debug_code()) { |
| 567 mov(address, Immediate(bit_cast<int32_t>(kZapValue))); | 567 mov(address, Immediate(bit_cast<int32_t>(kZapValue))); |
| 568 mov(value, Immediate(bit_cast<int32_t>(kZapValue))); | 568 mov(value, Immediate(bit_cast<int32_t>(kZapValue))); |
| 569 } | 569 } |
| 570 } | 570 } |
| 571 | 571 |
| 572 | 572 |
| 573 void MacroAssembler::DebugBreak() { | 573 void MacroAssembler::DebugBreak() { |
| 574 Move(eax, Immediate(0)); | 574 Move(eax, Immediate(0)); |
| 575 mov(ebx, Immediate(ExternalReference(Runtime::kDebugBreak, isolate()))); | 575 mov(ebx, Immediate(ExternalReference(Runtime::kHandleDebuggerStatement, |
| 576 isolate()))); |
| 576 CEntryStub ces(isolate(), 1); | 577 CEntryStub ces(isolate(), 1); |
| 577 call(ces.GetCode(), RelocInfo::DEBUGGER_STATEMENT); | 578 call(ces.GetCode(), RelocInfo::DEBUGGER_STATEMENT); |
| 578 } | 579 } |
| 579 | 580 |
| 580 | 581 |
| 581 void MacroAssembler::Cvtsi2sd(XMMRegister dst, const Operand& src) { | 582 void MacroAssembler::Cvtsi2sd(XMMRegister dst, const Operand& src) { |
| 582 xorps(dst, dst); | 583 xorps(dst, dst); |
| 583 cvtsi2sd(dst, src); | 584 cvtsi2sd(dst, src); |
| 584 } | 585 } |
| 585 | 586 |
| (...skipping 2634 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3220 mov(eax, dividend); | 3221 mov(eax, dividend); |
| 3221 shr(eax, 31); | 3222 shr(eax, 31); |
| 3222 add(edx, eax); | 3223 add(edx, eax); |
| 3223 } | 3224 } |
| 3224 | 3225 |
| 3225 | 3226 |
| 3226 } // namespace internal | 3227 } // namespace internal |
| 3227 } // namespace v8 | 3228 } // namespace v8 |
| 3228 | 3229 |
| 3229 #endif // V8_TARGET_ARCH_IA32 | 3230 #endif // V8_TARGET_ARCH_IA32 |
| OLD | NEW |