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

Side by Side Diff: src/arm/full-codegen-arm.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 | « no previous file | src/arm64/full-codegen-arm64.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 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 #include "src/v8.h" 5 #include "src/v8.h"
6 6
7 #if V8_TARGET_ARCH_ARM 7 #if V8_TARGET_ARCH_ARM
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 4280 matching lines...) Expand 10 before | Expand all | Expand 10 after
4291 // Note side effect of PreIndex: r3 now points to the key of the pair. 4291 // Note side effect of PreIndex: r3 now points to the key of the pair.
4292 __ cmp(key, r2); 4292 __ cmp(key, r2);
4293 __ b(ne, &not_found); 4293 __ b(ne, &not_found);
4294 4294
4295 __ ldr(r0, MemOperand(r3, kPointerSize)); 4295 __ ldr(r0, MemOperand(r3, kPointerSize));
4296 __ b(&done); 4296 __ b(&done);
4297 4297
4298 __ bind(&not_found); 4298 __ bind(&not_found);
4299 // Call runtime to perform the lookup. 4299 // Call runtime to perform the lookup.
4300 __ Push(cache, key); 4300 __ Push(cache, key);
4301 __ CallRuntime(Runtime::kGetFromCache, 2); 4301 __ CallRuntime(Runtime::kGetFromCacheRT, 2);
4302 4302
4303 __ bind(&done); 4303 __ bind(&done);
4304 context()->Plug(r0); 4304 context()->Plug(r0);
4305 } 4305 }
4306 4306
4307 4307
4308 void FullCodeGenerator::EmitHasCachedArrayIndex(CallRuntime* expr) { 4308 void FullCodeGenerator::EmitHasCachedArrayIndex(CallRuntime* expr) {
4309 ZoneList<Expression*>* args = expr->arguments(); 4309 ZoneList<Expression*>* args = expr->arguments();
4310 VisitForAccumulatorValue(args->at(0)); 4310 VisitForAccumulatorValue(args->at(0));
4311 4311
(...skipping 1191 matching lines...) Expand 10 before | Expand all | Expand 10 after
5503 5503
5504 DCHECK(interrupt_address == 5504 DCHECK(interrupt_address ==
5505 isolate->builtins()->OsrAfterStackCheck()->entry()); 5505 isolate->builtins()->OsrAfterStackCheck()->entry());
5506 return OSR_AFTER_STACK_CHECK; 5506 return OSR_AFTER_STACK_CHECK;
5507 } 5507 }
5508 5508
5509 5509
5510 } } // namespace v8::internal 5510 } } // namespace v8::internal
5511 5511
5512 #endif // V8_TARGET_ARCH_ARM 5512 #endif // V8_TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « no previous file | src/arm64/full-codegen-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698