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

Side by Side Diff: src/full-codegen/ppc/full-codegen-ppc.cc

Issue 2060213002: Revert of Replace all remaining Oddball checks with new function (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 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
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_PPC 5 #if V8_TARGET_ARCH_PPC
6 6
7 #include "src/ast/scopes.h" 7 #include "src/ast/scopes.h"
8 #include "src/code-factory.h" 8 #include "src/code-factory.h"
9 #include "src/code-stubs.h" 9 #include "src/code-stubs.h"
10 #include "src/codegen.h" 10 #include "src/codegen.h"
(...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after
509 void FullCodeGenerator::StackValueContext::Plug(Handle<Object> lit) const { 509 void FullCodeGenerator::StackValueContext::Plug(Handle<Object> lit) const {
510 // Immediates cannot be pushed directly. 510 // Immediates cannot be pushed directly.
511 __ mov(result_register(), Operand(lit)); 511 __ mov(result_register(), Operand(lit));
512 codegen()->PushOperand(result_register()); 512 codegen()->PushOperand(result_register());
513 } 513 }
514 514
515 515
516 void FullCodeGenerator::TestContext::Plug(Handle<Object> lit) const { 516 void FullCodeGenerator::TestContext::Plug(Handle<Object> lit) const {
517 codegen()->PrepareForBailoutBeforeSplit(condition(), true, true_label_, 517 codegen()->PrepareForBailoutBeforeSplit(condition(), true, true_label_,
518 false_label_); 518 false_label_);
519 DCHECK(lit->IsNull(isolate()) || lit->IsUndefined(isolate()) || 519 DCHECK(lit->IsNull() || lit->IsUndefined(isolate()) ||
520 !lit->IsUndetectable()); 520 !lit->IsUndetectable());
521 if (lit->IsUndefined(isolate()) || lit->IsNull(isolate()) || 521 if (lit->IsUndefined(isolate()) || lit->IsNull() || lit->IsFalse()) {
522 lit->IsFalse(isolate())) {
523 if (false_label_ != fall_through_) __ b(false_label_); 522 if (false_label_ != fall_through_) __ b(false_label_);
524 } else if (lit->IsTrue(isolate()) || lit->IsJSObject()) { 523 } else if (lit->IsTrue() || lit->IsJSObject()) {
525 if (true_label_ != fall_through_) __ b(true_label_); 524 if (true_label_ != fall_through_) __ b(true_label_);
526 } else if (lit->IsString()) { 525 } else if (lit->IsString()) {
527 if (String::cast(*lit)->length() == 0) { 526 if (String::cast(*lit)->length() == 0) {
528 if (false_label_ != fall_through_) __ b(false_label_); 527 if (false_label_ != fall_through_) __ b(false_label_);
529 } else { 528 } else {
530 if (true_label_ != fall_through_) __ b(true_label_); 529 if (true_label_ != fall_through_) __ b(true_label_);
531 } 530 }
532 } else if (lit->IsSmi()) { 531 } else if (lit->IsSmi()) {
533 if (Smi::cast(*lit)->value() == 0) { 532 if (Smi::cast(*lit)->value() == 0) {
534 if (false_label_ != fall_through_) __ b(false_label_); 533 if (false_label_ != fall_through_) __ b(false_label_);
(...skipping 3263 matching lines...) Expand 10 before | Expand all | Expand 10 after
3798 3797
3799 DCHECK(Assembler::IsCrSet(Assembler::instr_at(cmp_address))); 3798 DCHECK(Assembler::IsCrSet(Assembler::instr_at(cmp_address)));
3800 3799
3801 DCHECK(interrupt_address == 3800 DCHECK(interrupt_address ==
3802 isolate->builtins()->OnStackReplacement()->entry()); 3801 isolate->builtins()->OnStackReplacement()->entry());
3803 return ON_STACK_REPLACEMENT; 3802 return ON_STACK_REPLACEMENT;
3804 } 3803 }
3805 } // namespace internal 3804 } // namespace internal
3806 } // namespace v8 3805 } // namespace v8
3807 #endif // V8_TARGET_ARCH_PPC 3806 #endif // V8_TARGET_ARCH_PPC
OLDNEW
« no previous file with comments | « src/full-codegen/mips64/full-codegen-mips64.cc ('k') | src/full-codegen/s390/full-codegen-s390.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698