| 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 2562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2573 AllowDeferredHandleDereference using_raw_address; | 2573 AllowDeferredHandleDereference using_raw_address; |
| 2574 if (isolate()->heap()->InNewSpace(*object)) { | 2574 if (isolate()->heap()->InNewSpace(*object)) { |
| 2575 Handle<Cell> cell = isolate()->factory()->NewCell(object); | 2575 Handle<Cell> cell = isolate()->factory()->NewCell(object); |
| 2576 push(Operand::ForCell(cell)); | 2576 push(Operand::ForCell(cell)); |
| 2577 } else { | 2577 } else { |
| 2578 Push(object); | 2578 Push(object); |
| 2579 } | 2579 } |
| 2580 } | 2580 } |
| 2581 | 2581 |
| 2582 | 2582 |
| 2583 void MacroAssembler::CmpWeakValue(Register value, Handle<WeakCell> cell, | |
| 2584 Register scratch) { | |
| 2585 mov(scratch, cell); | |
| 2586 cmp(value, FieldOperand(scratch, WeakCell::kValueOffset)); | |
| 2587 } | |
| 2588 | |
| 2589 | |
| 2590 void MacroAssembler::LoadWeakValue(Register value, Handle<WeakCell> cell, | |
| 2591 Label* miss) { | |
| 2592 mov(value, cell); | |
| 2593 mov(value, FieldOperand(value, WeakCell::kValueOffset)); | |
| 2594 JumpIfSmi(value, miss); | |
| 2595 } | |
| 2596 | |
| 2597 | |
| 2598 void MacroAssembler::Ret() { | 2583 void MacroAssembler::Ret() { |
| 2599 ret(0); | 2584 ret(0); |
| 2600 } | 2585 } |
| 2601 | 2586 |
| 2602 | 2587 |
| 2603 void MacroAssembler::Ret(int bytes_dropped, Register scratch) { | 2588 void MacroAssembler::Ret(int bytes_dropped, Register scratch) { |
| 2604 if (is_uint16(bytes_dropped)) { | 2589 if (is_uint16(bytes_dropped)) { |
| 2605 ret(bytes_dropped); | 2590 ret(bytes_dropped); |
| 2606 } else { | 2591 } else { |
| 2607 pop(scratch); | 2592 pop(scratch); |
| (...skipping 854 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3462 if (mag.shift > 0) sar(edx, mag.shift); | 3447 if (mag.shift > 0) sar(edx, mag.shift); |
| 3463 mov(eax, dividend); | 3448 mov(eax, dividend); |
| 3464 shr(eax, 31); | 3449 shr(eax, 31); |
| 3465 add(edx, eax); | 3450 add(edx, eax); |
| 3466 } | 3451 } |
| 3467 | 3452 |
| 3468 | 3453 |
| 3469 } } // namespace v8::internal | 3454 } } // namespace v8::internal |
| 3470 | 3455 |
| 3471 #endif // V8_TARGET_ARCH_IA32 | 3456 #endif // V8_TARGET_ARCH_IA32 |
| OLD | NEW |