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 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
523 __ li(result_register(), Operand(lit)); | 523 __ li(result_register(), Operand(lit)); |
524 codegen()->PushOperand(result_register()); | 524 codegen()->PushOperand(result_register()); |
525 } | 525 } |
526 | 526 |
527 | 527 |
528 void FullCodeGenerator::TestContext::Plug(Handle<Object> lit) const { | 528 void FullCodeGenerator::TestContext::Plug(Handle<Object> lit) const { |
529 codegen()->PrepareForBailoutBeforeSplit(condition(), | 529 codegen()->PrepareForBailoutBeforeSplit(condition(), |
530 true, | 530 true, |
531 true_label_, | 531 true_label_, |
532 false_label_); | 532 false_label_); |
533 DCHECK(lit->IsNull(isolate()) || lit->IsUndefined(isolate()) || | 533 DCHECK(lit->IsNull() || lit->IsUndefined(isolate()) || |
534 !lit->IsUndetectable()); | 534 !lit->IsUndetectable()); |
535 if (lit->IsUndefined(isolate()) || lit->IsNull(isolate()) || | 535 if (lit->IsUndefined(isolate()) || lit->IsNull() || lit->IsFalse()) { |
536 lit->IsFalse(isolate())) { | |
537 if (false_label_ != fall_through_) __ Branch(false_label_); | 536 if (false_label_ != fall_through_) __ Branch(false_label_); |
538 } else if (lit->IsTrue(isolate()) || lit->IsJSObject()) { | 537 } else if (lit->IsTrue() || lit->IsJSObject()) { |
539 if (true_label_ != fall_through_) __ Branch(true_label_); | 538 if (true_label_ != fall_through_) __ Branch(true_label_); |
540 } else if (lit->IsString()) { | 539 } else if (lit->IsString()) { |
541 if (String::cast(*lit)->length() == 0) { | 540 if (String::cast(*lit)->length() == 0) { |
542 if (false_label_ != fall_through_) __ Branch(false_label_); | 541 if (false_label_ != fall_through_) __ Branch(false_label_); |
543 } else { | 542 } else { |
544 if (true_label_ != fall_through_) __ Branch(true_label_); | 543 if (true_label_ != fall_through_) __ Branch(true_label_); |
545 } | 544 } |
546 } else if (lit->IsSmi()) { | 545 } else if (lit->IsSmi()) { |
547 if (Smi::cast(*lit)->value() == 0) { | 546 if (Smi::cast(*lit)->value() == 0) { |
548 if (false_label_ != fall_through_) __ Branch(false_label_); | 547 if (false_label_ != fall_through_) __ Branch(false_label_); |
(...skipping 3279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3828 reinterpret_cast<uint64_t>( | 3827 reinterpret_cast<uint64_t>( |
3829 isolate->builtins()->OnStackReplacement()->entry())); | 3828 isolate->builtins()->OnStackReplacement()->entry())); |
3830 return ON_STACK_REPLACEMENT; | 3829 return ON_STACK_REPLACEMENT; |
3831 } | 3830 } |
3832 | 3831 |
3833 | 3832 |
3834 } // namespace internal | 3833 } // namespace internal |
3835 } // namespace v8 | 3834 } // namespace v8 |
3836 | 3835 |
3837 #endif // V8_TARGET_ARCH_MIPS64 | 3836 #endif // V8_TARGET_ARCH_MIPS64 |
OLD | NEW |