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

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

Issue 963393002: X87: Disallow subclassing Arrays. (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/x87/code-stubs-x87.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 4090 matching lines...) Expand 10 before | Expand all | Expand 10 after
4101 __ bind(&loop); 4101 __ bind(&loop);
4102 __ push(Operand(edx, -1 * kPointerSize)); 4102 __ push(Operand(edx, -1 * kPointerSize));
4103 __ sub(edx, Immediate(kPointerSize)); 4103 __ sub(edx, Immediate(kPointerSize));
4104 __ dec(ecx); 4104 __ dec(ecx);
4105 __ j(not_zero, &loop); 4105 __ j(not_zero, &loop);
4106 } 4106 }
4107 4107
4108 __ bind(&args_set_up); 4108 __ bind(&args_set_up);
4109 4109
4110 __ mov(edi, Operand(esp, eax, times_pointer_size, 0)); 4110 __ mov(edi, Operand(esp, eax, times_pointer_size, 0));
4111 4111 __ mov(ebx, Immediate(isolate()->factory()->undefined_value()));
4112 CallConstructStub stub(isolate(), SUPER_CONSTRUCTOR_CALL); 4112 CallConstructStub stub(isolate(), SUPER_CONSTRUCTOR_CALL);
4113 __ call(stub.GetCode(), RelocInfo::CONSTRUCT_CALL); 4113 __ call(stub.GetCode(), RelocInfo::CONSTRUCT_CALL);
4114 4114
4115 __ Drop(1); 4115 __ Drop(1);
4116 4116
4117 context()->Plug(eax); 4117 context()->Plug(eax);
4118 } 4118 }
4119 4119
4120 4120
4121 void FullCodeGenerator::EmitRegExpConstructResult(CallRuntime* expr) { 4121 void FullCodeGenerator::EmitRegExpConstructResult(CallRuntime* expr) {
(...skipping 1228 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/x87/code-stubs-x87.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698