Lines Matching defs:target

55     Address target = Memory<Address>(pc_);
56 Memory<Address>(pc_) = target + delta;
70 Address target = Assembler::target_address_at(pc_, constant_pool_);
71 Assembler::set_target_address_at(pc_, constant_pool_, target + delta,
105 // output before the next target.
106 // For an instruction like LIS/ORI where the target bits are mixed into the
107 // instruction bits, the size of the target will be zero, indicating that the
108 // serializer should not step forward in memory after a target is resolved
116 Address pc, Address constant_pool, Tagged_t target,
119 pc, constant_pool, static_cast<Address>(target), icache_flush_mode);
177 void RelocInfo::set_target_object(Heap* heap, HeapObject target,
182 WriteUnalignedValue(pc_, target.ptr());
186 pc_, constant_pool_, CompressTagged(target.ptr()), icache_flush_mode);
189 Assembler::set_target_address_at(pc_, constant_pool_, target.ptr(),
194 WriteBarrierForCode(host(), this, target);
204 Address target, ICacheFlushMode icache_flush_mode) {
206 Assembler::set_target_address_at(pc_, constant_pool_, target,
220 void RelocInfo::set_target_runtime_entry(Address target,
224 if (target_address() != target)
225 set_target_address(target, write_barrier_mode, icache_flush_mode);
293 Address instruction_payload, Code code, Address target) {
296 target);
305 Address pc, Address target, RelocInfo::Mode mode) {
307 set_target_address_at(pc, kNullAddress, target, SKIP_ICACHE_FLUSH);
309 Memory<Address>(pc) = target;
315 Address target,
326 int32_t halfwords = (target - pc) / 2; // number of halfwords
347 instr_1 |= reinterpret_cast<uint64_t>(target) >> 32;
355 instr_2 |= reinterpret_cast<uint64_t>(target) & 0xFFFFFFFF;
369 instr_1 |= reinterpret_cast<uint32_t>(target);