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

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

Issue 2045263002: [heap] Avoid the use of cells to point from code to new-space objects. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add comments. Created 4 years, 6 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
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 <limits.h> // For LONG_MIN, LONG_MAX. 5 #include <limits.h> // For LONG_MIN, LONG_MAX.
6 6
7 #if V8_TARGET_ARCH_MIPS 7 #if V8_TARGET_ARCH_MIPS
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 1371 matching lines...) Expand 10 before | Expand all | Expand 10 after
1382 IsMipsArchVariant(kLoongson)); 1382 IsMipsArchVariant(kLoongson));
1383 mfc1(scratch, fd); 1383 mfc1(scratch, fd);
1384 Usw(scratch, MemOperand(rs.rm(), rs.offset() + Register::kMantissaOffset)); 1384 Usw(scratch, MemOperand(rs.rm(), rs.offset() + Register::kMantissaOffset));
1385 Mfhc1(scratch, fd); 1385 Mfhc1(scratch, fd);
1386 Usw(scratch, MemOperand(rs.rm(), rs.offset() + Register::kExponentOffset)); 1386 Usw(scratch, MemOperand(rs.rm(), rs.offset() + Register::kExponentOffset));
1387 } 1387 }
1388 } 1388 }
1389 1389
1390 1390
1391 void MacroAssembler::li(Register dst, Handle<Object> value, LiFlags mode) { 1391 void MacroAssembler::li(Register dst, Handle<Object> value, LiFlags mode) {
1392 AllowDeferredHandleDereference smi_check;
1393 if (value->IsSmi()) { 1392 if (value->IsSmi()) {
1394 li(dst, Operand(value), mode); 1393 li(dst, Operand(value), mode);
1395 } else { 1394 } else {
1396 DCHECK(value->IsHeapObject()); 1395 DCHECK(value->IsHeapObject());
1397 if (isolate()->heap()->InNewSpace(*value)) { 1396 li(dst, Operand(value));
1398 Handle<Cell> cell = isolate()->factory()->NewCell(value);
1399 li(dst, Operand(cell));
1400 lw(dst, FieldMemOperand(dst, Cell::kValueOffset));
1401 } else {
1402 li(dst, Operand(value));
1403 }
1404 } 1397 }
1405 } 1398 }
1406 1399
1407 1400
1408 void MacroAssembler::li(Register rd, Operand j, LiFlags mode) { 1401 void MacroAssembler::li(Register rd, Operand j, LiFlags mode) {
1409 DCHECK(!j.is_reg()); 1402 DCHECK(!j.is_reg());
1410 BlockTrampolinePoolScope block_trampoline_pool(this); 1403 BlockTrampolinePoolScope block_trampoline_pool(this);
1411 if (!MustUseReg(j.rmode_) && mode == OPTIMIZE_SIZE) { 1404 if (!MustUseReg(j.rmode_) && mode == OPTIMIZE_SIZE) {
1412 // Normal load of an immediate value which does not need Relocation Info. 1405 // Normal load of an immediate value which does not need Relocation Info.
1413 if (is_int16(j.imm32_)) { 1406 if (is_int16(j.imm32_)) {
(...skipping 5378 matching lines...) Expand 10 before | Expand all | Expand 10 after
6792 if (mag.shift > 0) sra(result, result, mag.shift); 6785 if (mag.shift > 0) sra(result, result, mag.shift);
6793 srl(at, dividend, 31); 6786 srl(at, dividend, 31);
6794 Addu(result, result, Operand(at)); 6787 Addu(result, result, Operand(at));
6795 } 6788 }
6796 6789
6797 6790
6798 } // namespace internal 6791 } // namespace internal
6799 } // namespace v8 6792 } // namespace v8
6800 6793
6801 #endif // V8_TARGET_ARCH_MIPS 6794 #endif // V8_TARGET_ARCH_MIPS
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698