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

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

Issue 2028983002: Introduce IsUndefined(Isolate*) and IsTheHole(Isolate*) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebase master 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
« no previous file with comments | « src/full-codegen/arm/full-codegen-arm.cc ('k') | src/full-codegen/full-codegen.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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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_ARM64 5 #if V8_TARGET_ARCH_ARM64
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 513 matching lines...) Expand 10 before | Expand all | Expand 10 after
524 __ Mov(result_register(), Operand(lit)); 524 __ Mov(result_register(), Operand(lit));
525 codegen()->PushOperand(result_register()); 525 codegen()->PushOperand(result_register());
526 } 526 }
527 527
528 528
529 void FullCodeGenerator::TestContext::Plug(Handle<Object> lit) const { 529 void FullCodeGenerator::TestContext::Plug(Handle<Object> lit) const {
530 codegen()->PrepareForBailoutBeforeSplit(condition(), 530 codegen()->PrepareForBailoutBeforeSplit(condition(),
531 true, 531 true,
532 true_label_, 532 true_label_,
533 false_label_); 533 false_label_);
534 DCHECK(lit->IsNull() || lit->IsUndefined() || !lit->IsUndetectable()); 534 DCHECK(lit->IsNull() || lit->IsUndefined(isolate()) ||
535 if (lit->IsUndefined() || lit->IsNull() || lit->IsFalse()) { 535 !lit->IsUndetectable());
536 if (lit->IsUndefined(isolate()) || lit->IsNull() || lit->IsFalse()) {
536 if (false_label_ != fall_through_) __ B(false_label_); 537 if (false_label_ != fall_through_) __ B(false_label_);
537 } else if (lit->IsTrue() || lit->IsJSObject()) { 538 } else if (lit->IsTrue() || lit->IsJSObject()) {
538 if (true_label_ != fall_through_) __ B(true_label_); 539 if (true_label_ != fall_through_) __ B(true_label_);
539 } else if (lit->IsString()) { 540 } else if (lit->IsString()) {
540 if (String::cast(*lit)->length() == 0) { 541 if (String::cast(*lit)->length() == 0) {
541 if (false_label_ != fall_through_) __ B(false_label_); 542 if (false_label_ != fall_through_) __ B(false_label_);
542 } else { 543 } else {
543 if (true_label_ != fall_through_) __ B(true_label_); 544 if (true_label_ != fall_through_) __ B(true_label_);
544 } 545 }
545 } else if (lit->IsSmi()) { 546 } else if (lit->IsSmi()) {
(...skipping 3345 matching lines...) Expand 10 before | Expand all | Expand 10 after
3891 } 3892 }
3892 3893
3893 return INTERRUPT; 3894 return INTERRUPT;
3894 } 3895 }
3895 3896
3896 3897
3897 } // namespace internal 3898 } // namespace internal
3898 } // namespace v8 3899 } // namespace v8
3899 3900
3900 #endif // V8_TARGET_ARCH_ARM64 3901 #endif // V8_TARGET_ARCH_ARM64
OLDNEW
« no previous file with comments | « src/full-codegen/arm/full-codegen-arm.cc ('k') | src/full-codegen/full-codegen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698