| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 the V8 project authors. All rights reserved. |
| 2 // | 2 // |
| 3 // Redistribution and use in source and binary forms, with or without | 3 // Redistribution and use in source and binary forms, with or without |
| 4 // modification, are permitted provided that the following conditions are | 4 // modification, are permitted provided that the following conditions are |
| 5 // met: | 5 // met: |
| 6 // | 6 // |
| 7 // * Redistributions of source code must retain the above copyright | 7 // * Redistributions of source code must retain the above copyright |
| 8 // notice, this list of conditions and the following disclaimer. | 8 // notice, this list of conditions and the following disclaimer. |
| 9 // * Redistributions in binary form must reproduce the above | 9 // * Redistributions in binary form must reproduce the above |
| 10 // copyright notice, this list of conditions and the following | 10 // copyright notice, this list of conditions and the following |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 | 186 |
| 187 uint32_t RelocInfo::wasm_memory_size_reference() { | 187 uint32_t RelocInfo::wasm_memory_size_reference() { |
| 188 DCHECK(IsWasmMemorySizeReference(rmode_)); | 188 DCHECK(IsWasmMemorySizeReference(rmode_)); |
| 189 return Memory::uint32_at(Assembler::target_pointer_address_at(pc_)); | 189 return Memory::uint32_at(Assembler::target_pointer_address_at(pc_)); |
| 190 } | 190 } |
| 191 | 191 |
| 192 void RelocInfo::update_wasm_memory_reference( | 192 void RelocInfo::update_wasm_memory_reference( |
| 193 Address old_base, Address new_base, uint32_t old_size, uint32_t new_size, | 193 Address old_base, Address new_base, uint32_t old_size, uint32_t new_size, |
| 194 ICacheFlushMode icache_flush_mode) { | 194 ICacheFlushMode icache_flush_mode) { |
| 195 DCHECK(IsWasmMemoryReference(rmode_) || IsWasmMemorySizeReference(rmode_)); | 195 DCHECK(IsWasmMemoryReference(rmode_) || IsWasmMemorySizeReference(rmode_)); |
| 196 if (IsWasmMemoryReference(rmode_) && old_base != new_base) { | 196 if (IsWasmMemoryReference(rmode_)) { |
| 197 Address updated_memory_reference; | 197 Address updated_memory_reference; |
| 198 DCHECK(old_base <= wasm_memory_reference() && | 198 DCHECK(old_base <= wasm_memory_reference() && |
| 199 wasm_memory_reference() < old_base + old_size); | 199 wasm_memory_reference() <= old_base + old_size); |
| 200 updated_memory_reference = new_base + (wasm_memory_reference() - old_base); | 200 updated_memory_reference = new_base + (wasm_memory_reference() - old_base); |
| 201 DCHECK(new_base <= updated_memory_reference && | 201 DCHECK(new_base <= updated_memory_reference && |
| 202 updated_memory_reference < new_base + new_size); | 202 updated_memory_reference < new_base + new_size); |
| 203 Assembler::set_target_address_at( | 203 Assembler::set_target_address_at( |
| 204 isolate_, pc_, host_, updated_memory_reference, icache_flush_mode); | 204 isolate_, pc_, host_, updated_memory_reference, icache_flush_mode); |
| 205 } else if (IsWasmMemorySizeReference(rmode_)) { | 205 } else if (IsWasmMemorySizeReference(rmode_)) { |
| 206 uint32_t updated_size_reference; | 206 uint32_t updated_size_reference; |
| 207 DCHECK(wasm_memory_size_reference() <= old_size); | 207 DCHECK(wasm_memory_size_reference() <= old_size); |
| 208 updated_size_reference = | 208 updated_size_reference = |
| 209 new_size + (wasm_memory_size_reference() - old_size); | 209 new_size + (wasm_memory_size_reference() - old_size); |
| (...skipping 3029 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3239 movk(scratch, (target_offset >> 32) & 0xFFFF, 32); | 3239 movk(scratch, (target_offset >> 32) & 0xFFFF, 32); |
| 3240 DCHECK((target_offset >> 48) == 0); | 3240 DCHECK((target_offset >> 48) == 0); |
| 3241 add(rd, rd, scratch); | 3241 add(rd, rd, scratch); |
| 3242 } | 3242 } |
| 3243 | 3243 |
| 3244 | 3244 |
| 3245 } // namespace internal | 3245 } // namespace internal |
| 3246 } // namespace v8 | 3246 } // namespace v8 |
| 3247 | 3247 |
| 3248 #endif // V8_TARGET_ARCH_ARM64 | 3248 #endif // V8_TARGET_ARCH_ARM64 |
| OLD | NEW |