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

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

Issue 983623002: Made the entries of the various *_FUNCTION_LISTs disjoint. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 9 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/arm/full-codegen-arm.cc ('k') | src/ia32/full-codegen-ia32.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 #include "src/v8.h" 5 #include "src/v8.h"
6 6
7 #if V8_TARGET_ARCH_ARM64 7 #if V8_TARGET_ARCH_ARM64
8 8
9 #include "src/code-factory.h" 9 #include "src/code-factory.h"
10 #include "src/code-stubs.h" 10 #include "src/code-stubs.h"
(...skipping 3988 matching lines...) Expand 10 before | Expand all | Expand 10 after
3999 3999
4000 // Load the key and data from the cache. 4000 // Load the key and data from the cache.
4001 __ Ldp(x2, x3, MemOperand(x3)); 4001 __ Ldp(x2, x3, MemOperand(x3));
4002 4002
4003 __ Cmp(key, x2); 4003 __ Cmp(key, x2);
4004 __ CmovX(x0, x3, eq); 4004 __ CmovX(x0, x3, eq);
4005 __ B(eq, &done); 4005 __ B(eq, &done);
4006 4006
4007 // Call runtime to perform the lookup. 4007 // Call runtime to perform the lookup.
4008 __ Push(cache, key); 4008 __ Push(cache, key);
4009 __ CallRuntime(Runtime::kGetFromCache, 2); 4009 __ CallRuntime(Runtime::kGetFromCacheRT, 2);
4010 4010
4011 __ Bind(&done); 4011 __ Bind(&done);
4012 context()->Plug(x0); 4012 context()->Plug(x0);
4013 } 4013 }
4014 4014
4015 4015
4016 void FullCodeGenerator::EmitHasCachedArrayIndex(CallRuntime* expr) { 4016 void FullCodeGenerator::EmitHasCachedArrayIndex(CallRuntime* expr) {
4017 ZoneList<Expression*>* args = expr->arguments(); 4017 ZoneList<Expression*>* args = expr->arguments();
4018 VisitForAccumulatorValue(args->at(0)); 4018 VisitForAccumulatorValue(args->at(0));
4019 4019
(...skipping 1465 matching lines...) Expand 10 before | Expand all | Expand 10 after
5485 return previous_; 5485 return previous_;
5486 } 5486 }
5487 5487
5488 5488
5489 #undef __ 5489 #undef __
5490 5490
5491 5491
5492 } } // namespace v8::internal 5492 } } // namespace v8::internal
5493 5493
5494 #endif // V8_TARGET_ARCH_ARM64 5494 #endif // V8_TARGET_ARCH_ARM64
OLDNEW
« no previous file with comments | « src/arm/full-codegen-arm.cc ('k') | src/ia32/full-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698