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

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

Issue 1215143008: Version 4.3.61.34 (cherry-pick) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@4.3
Patch Set: Created 5 years, 5 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/assembler-mips.cc ('k') | src/mips64/assembler-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 3994 matching lines...) Expand 10 before | Expand all | Expand 10 after
4005 } 4005 }
4006 __ Jump(t9); 4006 __ Jump(t9);
4007 } 4007 }
4008 4008
4009 4009
4010 void DirectCEntryStub::GenerateCall(MacroAssembler* masm, 4010 void DirectCEntryStub::GenerateCall(MacroAssembler* masm,
4011 Register target) { 4011 Register target) {
4012 intptr_t loc = 4012 intptr_t loc =
4013 reinterpret_cast<intptr_t>(GetCode().location()); 4013 reinterpret_cast<intptr_t>(GetCode().location());
4014 __ Move(t9, target); 4014 __ Move(t9, target);
4015 __ li(ra, Operand(loc, RelocInfo::CODE_TARGET), CONSTANT_SIZE); 4015 __ li(at, Operand(loc, RelocInfo::CODE_TARGET), CONSTANT_SIZE);
4016 __ Call(ra); 4016 __ Call(at);
4017 } 4017 }
4018 4018
4019 4019
4020 void NameDictionaryLookupStub::GenerateNegativeLookup(MacroAssembler* masm, 4020 void NameDictionaryLookupStub::GenerateNegativeLookup(MacroAssembler* masm,
4021 Label* miss, 4021 Label* miss,
4022 Label* done, 4022 Label* done,
4023 Register receiver, 4023 Register receiver,
4024 Register properties, 4024 Register properties,
4025 Handle<Name> name, 4025 Handle<Name> name,
4026 Register scratch0) { 4026 Register scratch0) {
(...skipping 1474 matching lines...) Expand 10 before | Expand all | Expand 10 after
5501 kStackUnwindSpace, kInvalidStackOffset, 5501 kStackUnwindSpace, kInvalidStackOffset,
5502 MemOperand(fp, 6 * kPointerSize), NULL); 5502 MemOperand(fp, 6 * kPointerSize), NULL);
5503 } 5503 }
5504 5504
5505 5505
5506 #undef __ 5506 #undef __
5507 5507
5508 } } // namespace v8::internal 5508 } } // namespace v8::internal
5509 5509
5510 #endif // V8_TARGET_ARCH_MIPS 5510 #endif // V8_TARGET_ARCH_MIPS
OLDNEW
« no previous file with comments | « src/mips/assembler-mips.cc ('k') | src/mips64/assembler-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698