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

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

Issue 754863002: Optimize testing for an index's existence in packed Arrays (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: All fixed Created 6 years 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
« src/runtime/runtime.h ('K') | « src/runtime/runtime-object.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_X64 7 #if V8_TARGET_ARCH_X64
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 4322 matching lines...) Expand 10 before | Expand all | Expand 10 after
4333 DCHECK(expr->arguments()->length() == 0); 4333 DCHECK(expr->arguments()->length() == 0);
4334 ExternalReference debug_is_active = 4334 ExternalReference debug_is_active =
4335 ExternalReference::debug_is_active_address(isolate()); 4335 ExternalReference::debug_is_active_address(isolate());
4336 __ Move(kScratchRegister, debug_is_active); 4336 __ Move(kScratchRegister, debug_is_active);
4337 __ movzxbp(rax, Operand(kScratchRegister, 0)); 4337 __ movzxbp(rax, Operand(kScratchRegister, 0));
4338 __ Integer32ToSmi(rax, rax); 4338 __ Integer32ToSmi(rax, rax);
4339 context()->Plug(rax); 4339 context()->Plug(rax);
4340 } 4340 }
4341 4341
4342 4342
4343 void FullCodeGenerator::EmitHasFastPackedElements(CallRuntime* expr) {
4344 ZoneList<Expression*>* args = expr->arguments();
4345 DCHECK(args->length() == 1);
4346
4347 VisitForAccumulatorValue(args->at(0));
4348
4349 Label materialize_true, materialize_false;
4350 Label* if_true = NULL;
4351 Label* if_false = NULL;
4352 Label* fall_through = NULL;
4353 context()->PrepareTest(&materialize_true, &materialize_false, &if_true,
4354 &if_false, &fall_through);
4355
4356 __ JumpIfSmi(rax, if_false);
4357 __ movp(rax, FieldOperand(rax, HeapObject::kMapOffset));
4358 __ movzxbl(rax, FieldOperand(rax, Map::kBitField2Offset));
4359 __ shrp(rax, Immediate(Map::ElementsKindBits::kShift));
4360 __ cmpb(rax, Immediate(FAST_SMI_ELEMENTS));
4361 __ j(equal, if_true);
4362 __ cmpb(rax, Immediate(FAST_ELEMENTS));
4363 __ j(equal, if_true);
4364 __ cmpb(rax, Immediate(FAST_DOUBLE_ELEMENTS));
4365 PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
4366 Split(equal, if_true, if_false, fall_through);
4367
4368 context()->Plug(if_true, if_false);
4369 }
4370
4371
4343 void FullCodeGenerator::VisitCallRuntime(CallRuntime* expr) { 4372 void FullCodeGenerator::VisitCallRuntime(CallRuntime* expr) {
4344 if (expr->function() != NULL && 4373 if (expr->function() != NULL &&
4345 expr->function()->intrinsic_type == Runtime::INLINE) { 4374 expr->function()->intrinsic_type == Runtime::INLINE) {
4346 Comment cmnt(masm_, "[ InlineRuntimeCall"); 4375 Comment cmnt(masm_, "[ InlineRuntimeCall");
4347 EmitInlineRuntimeCall(expr); 4376 EmitInlineRuntimeCall(expr);
4348 return; 4377 return;
4349 } 4378 }
4350 4379
4351 Comment cmnt(masm_, "[ CallRuntime"); 4380 Comment cmnt(masm_, "[ CallRuntime");
4352 ZoneList<Expression*>* args = expr->arguments(); 4381 ZoneList<Expression*>* args = expr->arguments();
(...skipping 839 matching lines...) Expand 10 before | Expand all | Expand 10 after
5192 DCHECK_EQ(isolate->builtins()->OsrAfterStackCheck()->entry(), 5221 DCHECK_EQ(isolate->builtins()->OsrAfterStackCheck()->entry(),
5193 Assembler::target_address_at(call_target_address, 5222 Assembler::target_address_at(call_target_address,
5194 unoptimized_code)); 5223 unoptimized_code));
5195 return OSR_AFTER_STACK_CHECK; 5224 return OSR_AFTER_STACK_CHECK;
5196 } 5225 }
5197 5226
5198 5227
5199 } } // namespace v8::internal 5228 } } // namespace v8::internal
5200 5229
5201 #endif // V8_TARGET_ARCH_X64 5230 #endif // V8_TARGET_ARCH_X64
OLDNEW
« src/runtime/runtime.h ('K') | « src/runtime/runtime-object.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698