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

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

Issue 146213004: A64: Synchronize with r16849. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 10 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/arm/deoptimizer-arm.cc ('k') | src/arm/lithium-arm.h » ('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 1633 matching lines...) Expand 10 before | Expand all | Expand 10 after
1644 __ mov(r1, Operand(constant_properties)); 1644 __ mov(r1, Operand(constant_properties));
1645 int flags = expr->fast_elements() 1645 int flags = expr->fast_elements()
1646 ? ObjectLiteral::kFastElements 1646 ? ObjectLiteral::kFastElements
1647 : ObjectLiteral::kNoFlags; 1647 : ObjectLiteral::kNoFlags;
1648 flags |= expr->has_function() 1648 flags |= expr->has_function()
1649 ? ObjectLiteral::kHasFunction 1649 ? ObjectLiteral::kHasFunction
1650 : ObjectLiteral::kNoFlags; 1650 : ObjectLiteral::kNoFlags;
1651 __ mov(r0, Operand(Smi::FromInt(flags))); 1651 __ mov(r0, Operand(Smi::FromInt(flags)));
1652 int properties_count = constant_properties->length() / 2; 1652 int properties_count = constant_properties->length() / 2;
1653 if ((FLAG_track_double_fields && expr->may_store_doubles()) || 1653 if ((FLAG_track_double_fields && expr->may_store_doubles()) ||
1654 expr->depth() > 1) { 1654 expr->depth() > 1 || Serializer::enabled() ||
1655 flags != ObjectLiteral::kFastElements ||
1656 properties_count > FastCloneShallowObjectStub::kMaximumClonedProperties) {
1655 __ Push(r3, r2, r1, r0); 1657 __ Push(r3, r2, r1, r0);
1656 __ CallRuntime(Runtime::kCreateObjectLiteral, 4); 1658 __ CallRuntime(Runtime::kCreateObjectLiteral, 4);
1657 } else if (Serializer::enabled() || flags != ObjectLiteral::kFastElements ||
1658 properties_count > FastCloneShallowObjectStub::kMaximumClonedProperties) {
1659 __ Push(r3, r2, r1, r0);
1660 __ CallRuntime(Runtime::kCreateObjectLiteralShallow, 4);
1661 } else { 1659 } else {
1662 FastCloneShallowObjectStub stub(properties_count); 1660 FastCloneShallowObjectStub stub(properties_count);
1663 __ CallStub(&stub); 1661 __ CallStub(&stub);
1664 } 1662 }
1665 1663
1666 // If result_saved is true the result is on top of the stack. If 1664 // If result_saved is true the result is on top of the stack. If
1667 // result_saved is false the result is in r0. 1665 // result_saved is false the result is in r0.
1668 bool result_saved = false; 1666 bool result_saved = false;
1669 1667
1670 // Mark all computed expressions that are bound to a key that 1668 // Mark all computed expressions that are bound to a key that
(...skipping 3216 matching lines...) Expand 10 before | Expand all | Expand 10 after
4887 __ bl(finally_entry_); 4885 __ bl(finally_entry_);
4888 4886
4889 *stack_depth = 0; 4887 *stack_depth = 0;
4890 *context_length = 0; 4888 *context_length = 0;
4891 return previous_; 4889 return previous_;
4892 } 4890 }
4893 4891
4894 4892
4895 #undef __ 4893 #undef __
4896 4894
4895
4896 static const int32_t kBranchBeforeInterrupt = 0x5a000004;
4897
4898 // The back edge bookkeeping code matches the pattern:
4899 //
4900 // <decrement profiling counter>
4901 // 2a 00 00 01 bpl ok
4902 // e5 9f c? ?? ldr ip, [pc, <interrupt stub address>]
4903 // e1 2f ff 3c blx ip
4904 // ok-label
4905 //
4906 // We patch the code to the following form:
4907 //
4908 // <decrement profiling counter>
4909 // e1 a0 00 00 mov r0, r0 (NOP)
4910 // e5 9f c? ?? ldr ip, [pc, <on-stack replacement address>]
4911 // e1 2f ff 3c blx ip
4912 // ok-label
4913
4914 void BackEdgeTable::PatchAt(Code* unoptimized_code,
4915 Address pc_after,
4916 Code* replacement_code) {
4917 static const int kInstrSize = Assembler::kInstrSize;
4918 // Turn the jump into nops.
4919 CodePatcher patcher(pc_after - 3 * kInstrSize, 1);
4920 patcher.masm()->nop();
4921 // Replace the call address.
4922 uint32_t interrupt_address_offset = Memory::uint16_at(pc_after -
4923 2 * kInstrSize) & 0xfff;
4924 Address interrupt_address_pointer = pc_after + interrupt_address_offset;
4925 Memory::uint32_at(interrupt_address_pointer) =
4926 reinterpret_cast<uint32_t>(replacement_code->entry());
4927
4928 unoptimized_code->GetHeap()->incremental_marking()->RecordCodeTargetPatch(
4929 unoptimized_code, pc_after - 2 * kInstrSize, replacement_code);
4930 }
4931
4932
4933 void BackEdgeTable::RevertAt(Code* unoptimized_code,
4934 Address pc_after,
4935 Code* interrupt_code) {
4936 static const int kInstrSize = Assembler::kInstrSize;
4937 // Restore the original jump.
4938 CodePatcher patcher(pc_after - 3 * kInstrSize, 1);
4939 patcher.masm()->b(4 * kInstrSize, pl); // ok-label is 4 instructions later.
4940 ASSERT_EQ(kBranchBeforeInterrupt,
4941 Memory::int32_at(pc_after - 3 * kInstrSize));
4942 // Restore the original call address.
4943 uint32_t interrupt_address_offset = Memory::uint16_at(pc_after -
4944 2 * kInstrSize) & 0xfff;
4945 Address interrupt_address_pointer = pc_after + interrupt_address_offset;
4946 Memory::uint32_at(interrupt_address_pointer) =
4947 reinterpret_cast<uint32_t>(interrupt_code->entry());
4948
4949 interrupt_code->GetHeap()->incremental_marking()->RecordCodeTargetPatch(
4950 unoptimized_code, pc_after - 2 * kInstrSize, interrupt_code);
4951 }
4952
4953
4954 #ifdef DEBUG
4955 BackEdgeTable::BackEdgeState BackEdgeTable::GetBackEdgeState(
4956 Isolate* isolate,
4957 Code* unoptimized_code,
4958 Address pc_after) {
4959 static const int kInstrSize = Assembler::kInstrSize;
4960 ASSERT(Memory::int32_at(pc_after - kInstrSize) == kBlxIp);
4961
4962 uint32_t interrupt_address_offset =
4963 Memory::uint16_at(pc_after - 2 * kInstrSize) & 0xfff;
4964 Address interrupt_address_pointer = pc_after + interrupt_address_offset;
4965
4966 if (Assembler::IsNop(Assembler::instr_at(pc_after - 3 * kInstrSize))) {
4967 ASSERT(Assembler::IsLdrPcImmediateOffset(
4968 Assembler::instr_at(pc_after - 2 * kInstrSize)));
4969 Code* osr_builtin =
4970 isolate->builtins()->builtin(Builtins::kOnStackReplacement);
4971 ASSERT(reinterpret_cast<uint32_t>(osr_builtin->entry()) ==
4972 Memory::uint32_at(interrupt_address_pointer));
4973 return ON_STACK_REPLACEMENT;
4974 } else {
4975 // Get the interrupt stub code object to match against from cache.
4976 Code* interrupt_builtin =
4977 isolate->builtins()->builtin(Builtins::kInterruptCheck);
4978 ASSERT(Assembler::IsLdrPcImmediateOffset(
4979 Assembler::instr_at(pc_after - 2 * kInstrSize)));
4980 ASSERT_EQ(kBranchBeforeInterrupt,
4981 Memory::int32_at(pc_after - 3 * kInstrSize));
4982 ASSERT(reinterpret_cast<uint32_t>(interrupt_builtin->entry()) ==
4983 Memory::uint32_at(interrupt_address_pointer));
4984 return INTERRUPT;
4985 }
4986 }
4987 #endif // DEBUG
4988
4989
4897 } } // namespace v8::internal 4990 } } // namespace v8::internal
4898 4991
4899 #endif // V8_TARGET_ARCH_ARM 4992 #endif // V8_TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « src/arm/deoptimizer-arm.cc ('k') | src/arm/lithium-arm.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698