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

Side by Side Diff: src/x87/full-codegen-x87.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/x64/full-codegen-x64.cc ('k') | no next file » | 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_X87 7 #if V8_TARGET_ARCH_X87
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 4157 matching lines...) Expand 10 before | Expand all | Expand 10 after
4168 __ cmp(key, FixedArrayElementOperand(cache, tmp)); 4168 __ cmp(key, FixedArrayElementOperand(cache, tmp));
4169 __ j(not_equal, &not_found); 4169 __ j(not_equal, &not_found);
4170 4170
4171 __ mov(eax, FixedArrayElementOperand(cache, tmp, 1)); 4171 __ mov(eax, FixedArrayElementOperand(cache, tmp, 1));
4172 __ jmp(&done); 4172 __ jmp(&done);
4173 4173
4174 __ bind(&not_found); 4174 __ bind(&not_found);
4175 // Call runtime to perform the lookup. 4175 // Call runtime to perform the lookup.
4176 __ push(cache); 4176 __ push(cache);
4177 __ push(key); 4177 __ push(key);
4178 __ CallRuntime(Runtime::kGetFromCache, 2); 4178 __ CallRuntime(Runtime::kGetFromCacheRT, 2);
4179 4179
4180 __ bind(&done); 4180 __ bind(&done);
4181 context()->Plug(eax); 4181 context()->Plug(eax);
4182 } 4182 }
4183 4183
4184 4184
4185 void FullCodeGenerator::EmitHasCachedArrayIndex(CallRuntime* expr) { 4185 void FullCodeGenerator::EmitHasCachedArrayIndex(CallRuntime* expr) {
4186 ZoneList<Expression*>* args = expr->arguments(); 4186 ZoneList<Expression*>* args = expr->arguments();
4187 DCHECK(args->length() == 1); 4187 DCHECK(args->length() == 1);
4188 4188
(...skipping 1161 matching lines...) Expand 10 before | Expand all | Expand 10 after
5350 DCHECK_EQ(isolate->builtins()->OsrAfterStackCheck()->entry(), 5350 DCHECK_EQ(isolate->builtins()->OsrAfterStackCheck()->entry(),
5351 Assembler::target_address_at(call_target_address, 5351 Assembler::target_address_at(call_target_address,
5352 unoptimized_code)); 5352 unoptimized_code));
5353 return OSR_AFTER_STACK_CHECK; 5353 return OSR_AFTER_STACK_CHECK;
5354 } 5354 }
5355 5355
5356 5356
5357 } } // namespace v8::internal 5357 } } // namespace v8::internal
5358 5358
5359 #endif // V8_TARGET_ARCH_X87 5359 #endif // V8_TARGET_ARCH_X87
OLDNEW
« no previous file with comments | « src/x64/full-codegen-x64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698