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

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

Issue 764003003: Reland parts of 'Use weak cells in map checks in polymorphic ICs' (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 years 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
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_X87 7 #if V8_TARGET_ARCH_X87
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 2526 matching lines...) Expand 10 before | Expand all | Expand 10 after
2537 AllowDeferredHandleDereference using_raw_address; 2537 AllowDeferredHandleDereference using_raw_address;
2538 if (isolate()->heap()->InNewSpace(*object)) { 2538 if (isolate()->heap()->InNewSpace(*object)) {
2539 Handle<Cell> cell = isolate()->factory()->NewCell(object); 2539 Handle<Cell> cell = isolate()->factory()->NewCell(object);
2540 push(Operand::ForCell(cell)); 2540 push(Operand::ForCell(cell));
2541 } else { 2541 } else {
2542 Push(object); 2542 Push(object);
2543 } 2543 }
2544 } 2544 }
2545 2545
2546 2546
2547 void MacroAssembler::CmpWeakValue(Register value, Handle<WeakCell> cell,
2548 Register scratch) {
2549 mov(scratch, cell);
2550 cmp(value, FieldOperand(scratch, WeakCell::kValueOffset));
2551 }
2552
2553
2554 void MacroAssembler::LoadWeakValue(Register value, Handle<WeakCell> cell,
2555 Label* miss) {
2556 mov(value, cell);
2557 mov(value, FieldOperand(value, WeakCell::kValueOffset));
2558 JumpIfSmi(value, miss);
2559 }
2560
2561
2547 void MacroAssembler::Ret() { 2562 void MacroAssembler::Ret() {
2548 ret(0); 2563 ret(0);
2549 } 2564 }
2550 2565
2551 2566
2552 void MacroAssembler::Ret(int bytes_dropped, Register scratch) { 2567 void MacroAssembler::Ret(int bytes_dropped, Register scratch) {
2553 if (is_uint16(bytes_dropped)) { 2568 if (is_uint16(bytes_dropped)) {
2554 ret(bytes_dropped); 2569 ret(bytes_dropped);
2555 } else { 2570 } else {
2556 pop(scratch); 2571 pop(scratch);
(...skipping 805 matching lines...) Expand 10 before | Expand all | Expand 10 after
3362 if (mag.shift > 0) sar(edx, mag.shift); 3377 if (mag.shift > 0) sar(edx, mag.shift);
3363 mov(eax, dividend); 3378 mov(eax, dividend);
3364 shr(eax, 31); 3379 shr(eax, 31);
3365 add(edx, eax); 3380 add(edx, eax);
3366 } 3381 }
3367 3382
3368 3383
3369 } } // namespace v8::internal 3384 } } // namespace v8::internal
3370 3385
3371 #endif // V8_TARGET_ARCH_X87 3386 #endif // V8_TARGET_ARCH_X87
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698