OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 1470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1481 __ bind(&attempt_to_grow_elements); | 1481 __ bind(&attempt_to_grow_elements); |
1482 if (!FLAG_inline_new) { | 1482 if (!FLAG_inline_new) { |
1483 __ jmp(&call_builtin); | 1483 __ jmp(&call_builtin); |
1484 } | 1484 } |
1485 | 1485 |
1486 __ movq(rdi, Operand(rsp, argc * kPointerSize)); | 1486 __ movq(rdi, Operand(rsp, argc * kPointerSize)); |
1487 // Growing elements that are SMI-only requires special handling in case | 1487 // Growing elements that are SMI-only requires special handling in case |
1488 // the new element is non-Smi. For now, delegate to the builtin. | 1488 // the new element is non-Smi. For now, delegate to the builtin. |
1489 Label no_fast_elements_check; | 1489 Label no_fast_elements_check; |
1490 __ JumpIfSmi(rdi, &no_fast_elements_check); | 1490 __ JumpIfSmi(rdi, &no_fast_elements_check); |
1491 __ movq(rsi, FieldOperand(rdx, HeapObject::kMapOffset)); | 1491 __ movq(rcx, FieldOperand(rdx, HeapObject::kMapOffset)); |
1492 __ CheckFastObjectElements(rsi, &call_builtin, Label::kFar); | 1492 __ CheckFastObjectElements(rcx, &call_builtin, Label::kFar); |
1493 __ bind(&no_fast_elements_check); | 1493 __ bind(&no_fast_elements_check); |
1494 | 1494 |
1495 ExternalReference new_space_allocation_top = | 1495 ExternalReference new_space_allocation_top = |
1496 ExternalReference::new_space_allocation_top_address(isolate()); | 1496 ExternalReference::new_space_allocation_top_address(isolate()); |
1497 ExternalReference new_space_allocation_limit = | 1497 ExternalReference new_space_allocation_limit = |
1498 ExternalReference::new_space_allocation_limit_address(isolate()); | 1498 ExternalReference::new_space_allocation_limit_address(isolate()); |
1499 | 1499 |
1500 const int kAllocationDelta = 4; | 1500 const int kAllocationDelta = 4; |
1501 // Load top. | 1501 // Load top. |
1502 __ Load(rcx, new_space_allocation_top); | 1502 __ Load(rcx, new_space_allocation_top); |
(...skipping 2294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3797 Handle<Code> ic_miss = masm->isolate()->builtins()->KeyedStoreIC_Miss(); | 3797 Handle<Code> ic_miss = masm->isolate()->builtins()->KeyedStoreIC_Miss(); |
3798 __ jmp(ic_miss, RelocInfo::CODE_TARGET); | 3798 __ jmp(ic_miss, RelocInfo::CODE_TARGET); |
3799 } | 3799 } |
3800 | 3800 |
3801 | 3801 |
3802 #undef __ | 3802 #undef __ |
3803 | 3803 |
3804 } } // namespace v8::internal | 3804 } } // namespace v8::internal |
3805 | 3805 |
3806 #endif // V8_TARGET_ARCH_X64 | 3806 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |