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

Side by Side Diff: src/x87/code-stubs-x87.cc

Issue 1587073003: Array length reduction should throw in strict mode if it can't delete an element. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebasing for relanding Created 4 years, 11 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/code-stubs-x64.cc ('k') | test/cctest/test-api.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 #if V8_TARGET_ARCH_X87 5 #if V8_TARGET_ARCH_X87
6 6
7 #include "src/base/bits.h" 7 #include "src/base/bits.h"
8 #include "src/bootstrapper.h" 8 #include "src/bootstrapper.h"
9 #include "src/code-stubs.h" 9 #include "src/code-stubs.h"
10 #include "src/codegen.h" 10 #include "src/codegen.h"
(...skipping 5326 matching lines...) Expand 10 before | Expand all | Expand 10 after
5337 bool is_store = this->is_store(); 5337 bool is_store = this->is_store();
5338 int argc = this->argc(); 5338 int argc = this->argc();
5339 bool call_data_undefined = this->call_data_undefined(); 5339 bool call_data_undefined = this->call_data_undefined();
5340 CallApiFunctionStubHelper(masm, ParameterCount(argc), is_store, 5340 CallApiFunctionStubHelper(masm, ParameterCount(argc), is_store,
5341 call_data_undefined); 5341 call_data_undefined);
5342 } 5342 }
5343 5343
5344 5344
5345 void CallApiGetterStub::Generate(MacroAssembler* masm) { 5345 void CallApiGetterStub::Generate(MacroAssembler* masm) {
5346 // ----------- S t a t e ------------- 5346 // ----------- S t a t e -------------
5347 // -- esp[0] : return address 5347 // -- esp[0] : return address
5348 // -- esp[4] : name 5348 // -- esp[4] : name
5349 // -- esp[8 - kArgsLength*4] : PropertyCallbackArguments object 5349 // -- esp[8 .. (8 + kArgsLength*4)] : v8::PropertyCallbackInfo::args_
5350 // -- ... 5350 // -- ...
5351 // -- edx : api_function_address 5351 // -- edx : api_function_address
5352 // ----------------------------------- 5352 // -----------------------------------
5353 DCHECK(edx.is(ApiGetterDescriptor::function_address())); 5353 DCHECK(edx.is(ApiGetterDescriptor::function_address()));
5354 5354
5355 // array for v8::Arguments::values_, handler for name and pointer 5355 // v8::PropertyCallbackInfo::args_ array and name handle.
5356 // to the values (it considered as smi in GC). 5356 const int kStackUnwindSpace = PropertyCallbackArguments::kArgsLength + 1;
5357 const int kStackSpace = PropertyCallbackArguments::kArgsLength + 2; 5357
5358 // Allocate space for opional callback address parameter in case 5358 // Allocate v8::PropertyCallbackInfo object, arguments for callback and
5359 // CPU profiler is active. 5359 // space for optional callback address parameter (in case CPU profiler is
5360 const int kApiArgc = 2 + 1; 5360 // active) in non-GCed stack space.
5361 const int kApiArgc = 3 + 1;
5361 5362
5362 Register api_function_address = edx; 5363 Register api_function_address = edx;
5363 Register scratch = ebx; 5364 Register scratch = ebx;
5364 5365
5365 // load address of name 5366 // Load address of v8::PropertyAccessorInfo::args_ array.
5366 __ lea(scratch, Operand(esp, 1 * kPointerSize)); 5367 __ lea(scratch, Operand(esp, 2 * kPointerSize));
5367 5368
5368 PrepareCallApiFunction(masm, kApiArgc); 5369 PrepareCallApiFunction(masm, kApiArgc);
5370 // Create v8::PropertyCallbackInfo object on the stack and initialize
5371 // it's args_ field.
5372 Operand info_object = ApiParameterOperand(3);
5373 __ mov(info_object, scratch);
5374
5375 __ sub(scratch, Immediate(kPointerSize));
5369 __ mov(ApiParameterOperand(0), scratch); // name. 5376 __ mov(ApiParameterOperand(0), scratch); // name.
5370 __ add(scratch, Immediate(kPointerSize)); 5377 __ lea(scratch, info_object);
5371 __ mov(ApiParameterOperand(1), scratch); // arguments pointer. 5378 __ mov(ApiParameterOperand(1), scratch); // arguments pointer.
5379 // Reserve space for optional callback address parameter.
5380 Operand thunk_last_arg = ApiParameterOperand(2);
5372 5381
5373 ExternalReference thunk_ref = 5382 ExternalReference thunk_ref =
5374 ExternalReference::invoke_accessor_getter_callback(isolate()); 5383 ExternalReference::invoke_accessor_getter_callback(isolate());
5375 5384
5385 // +3 is to skip prolog, return address and name handle.
5386 Operand return_value_operand(
5387 ebp, (PropertyCallbackArguments::kReturnValueOffset + 3) * kPointerSize);
5376 CallApiFunctionAndReturn(masm, api_function_address, thunk_ref, 5388 CallApiFunctionAndReturn(masm, api_function_address, thunk_ref,
5377 ApiParameterOperand(2), kStackSpace, nullptr, 5389 thunk_last_arg, kStackUnwindSpace, nullptr,
5378 Operand(ebp, 7 * kPointerSize), NULL); 5390 return_value_operand, NULL);
5379 } 5391 }
5380 5392
5381 5393
5382 #undef __ 5394 #undef __
5383 5395
5384 } // namespace internal 5396 } // namespace internal
5385 } // namespace v8 5397 } // namespace v8
5386 5398
5387 #endif // V8_TARGET_ARCH_X87 5399 #endif // V8_TARGET_ARCH_X87
OLDNEW
« no previous file with comments | « src/x64/code-stubs-x64.cc ('k') | test/cctest/test-api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698