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

Side by Side Diff: src/mips/code-stubs-mips.cc

Issue 1043493003: MIPS: Merge cellspace into old pointer space. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@toon
Patch Set: Created 5 years, 9 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 | « no previous file | src/mips64/code-stubs-mips64.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_MIPS 7 #if V8_TARGET_ARCH_MIPS
8 8
9 #include "src/base/bits.h" 9 #include "src/base/bits.h"
10 #include "src/bootstrapper.h" 10 #include "src/bootstrapper.h"
(...skipping 1450 matching lines...) Expand 10 before | Expand all | Expand 10 after
1461 DCHECK(HasArgsInRegisters()); 1461 DCHECK(HasArgsInRegisters());
1462 // Patch the (relocated) inlined map check. 1462 // Patch the (relocated) inlined map check.
1463 1463
1464 // The offset was stored in t0 safepoint slot. 1464 // The offset was stored in t0 safepoint slot.
1465 // (See LCodeGen::DoDeferredLInstanceOfKnownGlobal). 1465 // (See LCodeGen::DoDeferredLInstanceOfKnownGlobal).
1466 __ LoadFromSafepointRegisterSlot(scratch, t0); 1466 __ LoadFromSafepointRegisterSlot(scratch, t0);
1467 __ Subu(inline_site, ra, scratch); 1467 __ Subu(inline_site, ra, scratch);
1468 // Get the map location in scratch and patch it. 1468 // Get the map location in scratch and patch it.
1469 __ GetRelocatedValue(inline_site, scratch, v1); // v1 used as scratch. 1469 __ GetRelocatedValue(inline_site, scratch, v1); // v1 used as scratch.
1470 __ sw(map, FieldMemOperand(scratch, Cell::kValueOffset)); 1470 __ sw(map, FieldMemOperand(scratch, Cell::kValueOffset));
1471
1472 __ mov(t4, map);
1473 // Scratch points at the cell payload. Calculate the start of the object.
1474 __ Subu(scratch, scratch, Operand(Cell::kValueOffset - 1));
1475 __ RecordWriteField(scratch, Cell::kValueOffset, t4, function,
1476 kRAHasNotBeenSaved, kDontSaveFPRegs,
1477 OMIT_REMEMBERED_SET, OMIT_SMI_CHECK);
1471 } 1478 }
1472 1479
1473 // Register mapping: a3 is object map and t0 is function prototype. 1480 // Register mapping: a3 is object map and t0 is function prototype.
1474 // Get prototype of object into a2. 1481 // Get prototype of object into a2.
1475 __ lw(scratch, FieldMemOperand(map, Map::kPrototypeOffset)); 1482 __ lw(scratch, FieldMemOperand(map, Map::kPrototypeOffset));
1476 1483
1477 // We don't need map any more. Use it as a scratch register. 1484 // We don't need map any more. Use it as a scratch register.
1478 Register scratch2 = map; 1485 Register scratch2 = map;
1479 map = no_reg; 1486 map = no_reg;
1480 1487
(...skipping 4017 matching lines...) Expand 10 before | Expand all | Expand 10 after
5498 kStackUnwindSpace, kInvalidStackOffset, 5505 kStackUnwindSpace, kInvalidStackOffset,
5499 MemOperand(fp, 6 * kPointerSize), NULL); 5506 MemOperand(fp, 6 * kPointerSize), NULL);
5500 } 5507 }
5501 5508
5502 5509
5503 #undef __ 5510 #undef __
5504 5511
5505 } } // namespace v8::internal 5512 } } // namespace v8::internal
5506 5513
5507 #endif // V8_TARGET_ARCH_MIPS 5514 #endif // V8_TARGET_ARCH_MIPS
OLDNEW
« no previous file with comments | « no previous file | src/mips64/code-stubs-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698