OLD | NEW |
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 // Note on Mips implementation: | 7 // Note on Mips implementation: |
8 // | 8 // |
9 // The result_register() for mips is the 'v0' register, which is defined | 9 // The result_register() for mips is the 'v0' register, which is defined |
10 // by the ABI to contain function return values. However, the first | 10 // by the ABI to contain function return values. However, the first |
(...skipping 619 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
630 if (false_label_ != fall_through_) __ Branch(false_label_); | 630 if (false_label_ != fall_through_) __ Branch(false_label_); |
631 } | 631 } |
632 } | 632 } |
633 | 633 |
634 | 634 |
635 void FullCodeGenerator::DoTest(Expression* condition, | 635 void FullCodeGenerator::DoTest(Expression* condition, |
636 Label* if_true, | 636 Label* if_true, |
637 Label* if_false, | 637 Label* if_false, |
638 Label* fall_through) { | 638 Label* fall_through) { |
639 __ mov(a0, result_register()); | 639 __ mov(a0, result_register()); |
640 Handle<Code> ic = ToBooleanStub::GetUninitialized(isolate()); | 640 Handle<Code> ic = ToBooleanICStub::GetUninitialized(isolate()); |
641 CallIC(ic, condition->test_id()); | 641 CallIC(ic, condition->test_id()); |
642 __ LoadRoot(at, Heap::kTrueValueRootIndex); | 642 __ LoadRoot(at, Heap::kTrueValueRootIndex); |
643 Split(eq, result_register(), Operand(at), if_true, if_false, fall_through); | 643 Split(eq, result_register(), Operand(at), if_true, if_false, fall_through); |
644 } | 644 } |
645 | 645 |
646 | 646 |
647 void FullCodeGenerator::Split(Condition cc, | 647 void FullCodeGenerator::Split(Condition cc, |
648 Register lhs, | 648 Register lhs, |
649 const Operand& rhs, | 649 const Operand& rhs, |
650 Label* if_true, | 650 Label* if_true, |
(...skipping 3577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4228 reinterpret_cast<uint64_t>( | 4228 reinterpret_cast<uint64_t>( |
4229 isolate->builtins()->OsrAfterStackCheck()->entry())); | 4229 isolate->builtins()->OsrAfterStackCheck()->entry())); |
4230 return OSR_AFTER_STACK_CHECK; | 4230 return OSR_AFTER_STACK_CHECK; |
4231 } | 4231 } |
4232 | 4232 |
4233 | 4233 |
4234 } // namespace internal | 4234 } // namespace internal |
4235 } // namespace v8 | 4235 } // namespace v8 |
4236 | 4236 |
4237 #endif // V8_TARGET_ARCH_MIPS64 | 4237 #endif // V8_TARGET_ARCH_MIPS64 |
OLD | NEW |