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

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

Issue 1628453002: MIPS: Use PC realitive instructions on r6. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase Created 4 years, 10 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/mips/macro-assembler-mips.h ('k') | src/mips64/macro-assembler-mips64.h » ('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 #if V8_TARGET_ARCH_MIPS64 5 #if V8_TARGET_ARCH_MIPS64
6 6
7 #include "src/bootstrapper.h" 7 #include "src/bootstrapper.h"
8 #include "src/code-stubs.h" 8 #include "src/code-stubs.h"
9 #include "src/codegen.h" 9 #include "src/codegen.h"
10 #include "src/ic/handler-compiler.h" 10 #include "src/ic/handler-compiler.h"
(...skipping 1105 matching lines...) Expand 10 before | Expand all | Expand 10 after
1116 __ mov(a2, s1); 1116 __ mov(a2, s1);
1117 __ mov(a1, a0); 1117 __ mov(a1, a0);
1118 __ mov(a0, sp); 1118 __ mov(a0, sp);
1119 } 1119 }
1120 1120
1121 // To let the GC traverse the return address of the exit frames, we need to 1121 // To let the GC traverse the return address of the exit frames, we need to
1122 // know where the return address is. The CEntryStub is unmovable, so 1122 // know where the return address is. The CEntryStub is unmovable, so
1123 // we can store the address on the stack to be able to find it again and 1123 // we can store the address on the stack to be able to find it again and
1124 // we never have to restore it, because it will not change. 1124 // we never have to restore it, because it will not change.
1125 { Assembler::BlockTrampolinePoolScope block_trampoline_pool(masm); 1125 { Assembler::BlockTrampolinePoolScope block_trampoline_pool(masm);
1126 // This branch-and-link sequence is needed to find the current PC on mips, 1126 int kNumInstructionsToJump = 4;
1127 // saved to the ra register.
1128 // Use masm-> here instead of the double-underscore macro since extra
1129 // coverage code can interfere with the proper calculation of ra.
1130 Label find_ra; 1127 Label find_ra;
1131 __ bal(&find_ra); // bal exposes branch delay slot.
1132 __ nop();
1133 __ bind(&find_ra);
1134
1135 // Adjust the value in ra to point to the correct return location, 2nd 1128 // Adjust the value in ra to point to the correct return location, 2nd
1136 // instruction past the real call into C code (the jalr(t9)), and push it. 1129 // instruction past the real call into C code (the jalr(t9)), and push it.
1137 // This is the return address of the exit frame. 1130 // This is the return address of the exit frame.
1138 const int kNumInstructionsToJump = 5; 1131 if (kArchVariant >= kMips64r6) {
1139 __ Daddu(ra, ra, kNumInstructionsToJump * kInt32Size); 1132 __ addiupc(ra, kNumInstructionsToJump + 1);
1133 } else {
1134 // This branch-and-link sequence is needed to find the current PC on mips
1135 // before r6, saved to the ra register.
1136 __ bal(&find_ra); // bal exposes branch delay slot.
1137 __ Daddu(ra, ra, kNumInstructionsToJump * Instruction::kInstrSize);
1138 }
1139 __ bind(&find_ra);
1140
1140 // This spot was reserved in EnterExitFrame. 1141 // This spot was reserved in EnterExitFrame.
1141 __ sd(ra, MemOperand(sp, result_stack_size)); 1142 __ sd(ra, MemOperand(sp, result_stack_size));
1142 // Stack space reservation moved to the branch delay slot below. 1143 // Stack space reservation moved to the branch delay slot below.
1143 // Stack is still aligned. 1144 // Stack is still aligned.
1144 1145
1145 // Call the C routine. 1146 // Call the C routine.
1146 __ mov(t9, s2); // Function pointer to t9 to conform to ABI for PIC. 1147 __ mov(t9, s2); // Function pointer to t9 to conform to ABI for PIC.
1147 __ jalr(t9); 1148 __ jalr(t9);
1148 // Set up sp in the delay slot. 1149 // Set up sp in the delay slot.
1149 __ daddiu(sp, sp, -kCArgsSlotsSize); 1150 __ daddiu(sp, sp, -kCArgsSlotsSize);
(...skipping 4491 matching lines...) Expand 10 before | Expand all | Expand 10 after
5641 return_value_operand, NULL); 5642 return_value_operand, NULL);
5642 } 5643 }
5643 5644
5644 5645
5645 #undef __ 5646 #undef __
5646 5647
5647 } // namespace internal 5648 } // namespace internal
5648 } // namespace v8 5649 } // namespace v8
5649 5650
5650 #endif // V8_TARGET_ARCH_MIPS64 5651 #endif // V8_TARGET_ARCH_MIPS64
OLDNEW
« no previous file with comments | « src/mips/macro-assembler-mips.h ('k') | src/mips64/macro-assembler-mips64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698