Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(932)

Side by Side Diff: src/ia32/macro-assembler-ia32.cc

Issue 1248303002: Unify runtime-style IC functions with Runtime intrinsics (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Make mips work Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/ia32/debug-ia32.cc ('k') | src/ic/arm/handler-compiler-arm.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/ia32/debug-ia32.cc ('k') | src/ic/arm/handler-compiler-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698