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

Side by Side Diff: src/x64/builtins-x64.cc

Issue 962263002: Disallow subclassing Arrays. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fixes for debug-code issues 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/runtime/runtime-classes.cc ('k') | src/x64/code-stubs-x64.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_X64 7 #if V8_TARGET_ARCH_X64
8 8
9 #include "src/code-factory.h" 9 #include "src/code-factory.h"
10 #include "src/codegen.h" 10 #include "src/codegen.h"
(...skipping 1254 matching lines...) Expand 10 before | Expand all | Expand 10 after
1265 // Initial map for the builtin Array functions should be maps. 1265 // Initial map for the builtin Array functions should be maps.
1266 __ movp(rbx, FieldOperand(rdi, JSFunction::kPrototypeOrInitialMapOffset)); 1266 __ movp(rbx, FieldOperand(rdi, JSFunction::kPrototypeOrInitialMapOffset));
1267 // Will both indicate a NULL and a Smi. 1267 // Will both indicate a NULL and a Smi.
1268 STATIC_ASSERT(kSmiTag == 0); 1268 STATIC_ASSERT(kSmiTag == 0);
1269 Condition not_smi = NegateCondition(masm->CheckSmi(rbx)); 1269 Condition not_smi = NegateCondition(masm->CheckSmi(rbx));
1270 __ Check(not_smi, kUnexpectedInitialMapForArrayFunction); 1270 __ Check(not_smi, kUnexpectedInitialMapForArrayFunction);
1271 __ CmpObjectType(rbx, MAP_TYPE, rcx); 1271 __ CmpObjectType(rbx, MAP_TYPE, rcx);
1272 __ Check(equal, kUnexpectedInitialMapForArrayFunction); 1272 __ Check(equal, kUnexpectedInitialMapForArrayFunction);
1273 } 1273 }
1274 1274
1275 __ movp(rdx, rdi);
1275 // Run the native code for the Array function called as a normal function. 1276 // Run the native code for the Array function called as a normal function.
1276 // tail call a stub 1277 // tail call a stub
1277 __ LoadRoot(rbx, Heap::kUndefinedValueRootIndex); 1278 __ LoadRoot(rbx, Heap::kUndefinedValueRootIndex);
1278 ArrayConstructorStub stub(masm->isolate()); 1279 ArrayConstructorStub stub(masm->isolate());
1279 __ TailCallStub(&stub); 1280 __ TailCallStub(&stub);
1280 } 1281 }
1281 1282
1282 1283
1283 void Builtins::Generate_StringConstructCode(MacroAssembler* masm) { 1284 void Builtins::Generate_StringConstructCode(MacroAssembler* masm) {
1284 // ----------- S t a t e ------------- 1285 // ----------- S t a t e -------------
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
1614 __ bind(&ok); 1615 __ bind(&ok);
1615 __ ret(0); 1616 __ ret(0);
1616 } 1617 }
1617 1618
1618 1619
1619 #undef __ 1620 #undef __
1620 1621
1621 } } // namespace v8::internal 1622 } } // namespace v8::internal
1622 1623
1623 #endif // V8_TARGET_ARCH_X64 1624 #endif // V8_TARGET_ARCH_X64
OLDNEW
« no previous file with comments | « src/runtime/runtime-classes.cc ('k') | src/x64/code-stubs-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698