OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 #ifndef V8_ARM64_ASSEMBLER_ARM64_INL_H_ | 5 #ifndef V8_ARM64_ASSEMBLER_ARM64_INL_H_ |
6 #define V8_ARM64_ASSEMBLER_ARM64_INL_H_ | 6 #define V8_ARM64_ASSEMBLER_ARM64_INL_H_ |
7 | 7 |
8 #include "src/arm64/assembler-arm64.h" | 8 #include "src/arm64/assembler-arm64.h" |
9 #include "src/assembler.h" | 9 #include "src/assembler.h" |
10 #include "src/debug/debug.h" | 10 #include "src/debug/debug.h" |
(...skipping 713 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
724 ICacheFlushMode icache_flush_mode) { | 724 ICacheFlushMode icache_flush_mode) { |
725 DCHECK(IsCodeTarget(rmode_) || rmode_ == EMBEDDED_OBJECT); | 725 DCHECK(IsCodeTarget(rmode_) || rmode_ == EMBEDDED_OBJECT); |
726 Assembler::set_target_address_at(isolate_, pc_, host_, | 726 Assembler::set_target_address_at(isolate_, pc_, host_, |
727 reinterpret_cast<Address>(target), | 727 reinterpret_cast<Address>(target), |
728 icache_flush_mode); | 728 icache_flush_mode); |
729 if (write_barrier_mode == UPDATE_WRITE_BARRIER && | 729 if (write_barrier_mode == UPDATE_WRITE_BARRIER && |
730 host() != NULL && | 730 host() != NULL && |
731 target->IsHeapObject()) { | 731 target->IsHeapObject()) { |
732 host()->GetHeap()->incremental_marking()->RecordWriteIntoCode( | 732 host()->GetHeap()->incremental_marking()->RecordWriteIntoCode( |
733 host(), this, HeapObject::cast(target)); | 733 host(), this, HeapObject::cast(target)); |
734 host()->GetHeap()->RecordWriteIntoCode(host(), this, target); | |
735 } | 734 } |
736 } | 735 } |
737 | 736 |
738 | 737 |
739 Address RelocInfo::target_external_reference() { | 738 Address RelocInfo::target_external_reference() { |
740 DCHECK(rmode_ == EXTERNAL_REFERENCE); | 739 DCHECK(rmode_ == EXTERNAL_REFERENCE); |
741 return Assembler::target_address_at(pc_, host_); | 740 return Assembler::target_address_at(pc_, host_); |
742 } | 741 } |
743 | 742 |
744 | 743 |
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1237 | 1236 |
1238 void Assembler::ClearRecordedAstId() { | 1237 void Assembler::ClearRecordedAstId() { |
1239 recorded_ast_id_ = TypeFeedbackId::None(); | 1238 recorded_ast_id_ = TypeFeedbackId::None(); |
1240 } | 1239 } |
1241 | 1240 |
1242 | 1241 |
1243 } // namespace internal | 1242 } // namespace internal |
1244 } // namespace v8 | 1243 } // namespace v8 |
1245 | 1244 |
1246 #endif // V8_ARM64_ASSEMBLER_ARM64_INL_H_ | 1245 #endif // V8_ARM64_ASSEMBLER_ARM64_INL_H_ |
OLD | NEW |