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

Side by Side Diff: src/x64/macro-assembler-x64.cc

Issue 10877028: Rollback of r12341, r12342, r12343, r12344, r12345, r12347 in trunk branch. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 8 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « src/version.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 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 3438 matching lines...) Expand 10 before | Expand all | Expand 10 after
3449 movq(scratch, FieldOperand(scratch, GlobalObject::kNativeContextOffset)); 3449 movq(scratch, FieldOperand(scratch, GlobalObject::kNativeContextOffset));
3450 3450
3451 // Check the context is a native context. 3451 // Check the context is a native context.
3452 if (emit_debug_code()) { 3452 if (emit_debug_code()) {
3453 Cmp(FieldOperand(scratch, HeapObject::kMapOffset), 3453 Cmp(FieldOperand(scratch, HeapObject::kMapOffset),
3454 isolate()->factory()->native_context_map()); 3454 isolate()->factory()->native_context_map());
3455 Check(equal, "JSGlobalObject::native_context should be a native context."); 3455 Check(equal, "JSGlobalObject::native_context should be a native context.");
3456 } 3456 }
3457 3457
3458 // Check if both contexts are the same. 3458 // Check if both contexts are the same.
3459 cmpq(scratch, FieldOperand(holder_reg, JSGlobalProxy::kNativeContextOffset)); 3459 cmpq(scratch, FieldOperand(holder_reg, JSGlobalProxy::kContextOffset));
3460 j(equal, &same_contexts); 3460 j(equal, &same_contexts);
3461 3461
3462 // Compare security tokens. 3462 // Compare security tokens.
3463 // Check that the security token in the calling global object is 3463 // Check that the security token in the calling global object is
3464 // compatible with the security token in the receiving global 3464 // compatible with the security token in the receiving global
3465 // object. 3465 // object.
3466 3466
3467 // Check the context is a native context. 3467 // Check the context is a native context.
3468 if (emit_debug_code()) { 3468 if (emit_debug_code()) {
3469 // Preserve original value of holder_reg. 3469 // Preserve original value of holder_reg.
3470 push(holder_reg); 3470 push(holder_reg);
3471 movq(holder_reg, 3471 movq(holder_reg, FieldOperand(holder_reg, JSGlobalProxy::kContextOffset));
3472 FieldOperand(holder_reg, JSGlobalProxy::kNativeContextOffset));
3473 CompareRoot(holder_reg, Heap::kNullValueRootIndex); 3472 CompareRoot(holder_reg, Heap::kNullValueRootIndex);
3474 Check(not_equal, "JSGlobalProxy::context() should not be null."); 3473 Check(not_equal, "JSGlobalProxy::context() should not be null.");
3475 3474
3476 // Read the first word and compare to native_context_map(), 3475 // Read the first word and compare to native_context_map(),
3477 movq(holder_reg, FieldOperand(holder_reg, HeapObject::kMapOffset)); 3476 movq(holder_reg, FieldOperand(holder_reg, HeapObject::kMapOffset));
3478 CompareRoot(holder_reg, Heap::kNativeContextMapRootIndex); 3477 CompareRoot(holder_reg, Heap::kNativeContextMapRootIndex);
3479 Check(equal, "JSGlobalObject::native_context should be a native context."); 3478 Check(equal, "JSGlobalObject::native_context should be a native context.");
3480 pop(holder_reg); 3479 pop(holder_reg);
3481 } 3480 }
3482 3481
3483 movq(kScratchRegister, 3482 movq(kScratchRegister,
3484 FieldOperand(holder_reg, JSGlobalProxy::kNativeContextOffset)); 3483 FieldOperand(holder_reg, JSGlobalProxy::kContextOffset));
3485 int token_offset = 3484 int token_offset =
3486 Context::kHeaderSize + Context::SECURITY_TOKEN_INDEX * kPointerSize; 3485 Context::kHeaderSize + Context::SECURITY_TOKEN_INDEX * kPointerSize;
3487 movq(scratch, FieldOperand(scratch, token_offset)); 3486 movq(scratch, FieldOperand(scratch, token_offset));
3488 cmpq(scratch, FieldOperand(kScratchRegister, token_offset)); 3487 cmpq(scratch, FieldOperand(kScratchRegister, token_offset));
3489 j(not_equal, miss); 3488 j(not_equal, miss);
3490 3489
3491 bind(&same_contexts); 3490 bind(&same_contexts);
3492 } 3491 }
3493 3492
3494 3493
(...skipping 1010 matching lines...) Expand 10 before | Expand all | Expand 10 after
4505 bind(&check_prototype); 4504 bind(&check_prototype);
4506 movq(rcx, FieldOperand(rbx, Map::kPrototypeOffset)); 4505 movq(rcx, FieldOperand(rbx, Map::kPrototypeOffset));
4507 cmpq(rcx, null_value); 4506 cmpq(rcx, null_value);
4508 j(not_equal, &next); 4507 j(not_equal, &next);
4509 } 4508 }
4510 4509
4511 4510
4512 } } // namespace v8::internal 4511 } } // namespace v8::internal
4513 4512
4514 #endif // V8_TARGET_ARCH_X64 4513 #endif // V8_TARGET_ARCH_X64
OLDNEW
« no previous file with comments | « src/version.cc ('k') | test/cctest/test-api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698