Lines Matching refs:pc_
57 Address target = Memory::Address_at(pc_); in apply()
58 Memory::Address_at(pc_) = target + delta; in apply()
61 Instruction::InstructionBits(reinterpret_cast<const byte*>(pc_)); in apply()
67 Instruction::SetInstructionBits<SixByteInstr>(reinterpret_cast<byte*>(pc_), in apply()
72 Address target = Assembler::target_address_at(pc_, host_); in apply()
73 Assembler::set_target_address_at(isolate_, pc_, host_, target + delta, in apply()
81 return Memory::Address_at(pc_); in target_internal_reference()
85 return Assembler::target_address_at(pc_, host_); in target_internal_reference()
91 return reinterpret_cast<Address>(pc_); in target_internal_reference_address()
96 return Assembler::target_address_at(pc_, host_); in target_address()
112 return reinterpret_cast<Address>(pc_); in target_address_address()
157 return reinterpret_cast<Object*>(Assembler::target_address_at(pc_, host_)); in target_object()
164 reinterpret_cast<Object**>(Assembler::target_address_at(pc_, host_))); in target_object_handle()
166 return origin->code_target_object_handle_at(pc_); in target_object_handle()
174 Assembler::set_target_address_at(isolate_, pc_, host_, in set_target_object()
187 return Assembler::target_address_at(pc_, host_); in target_external_reference()
205 Address address = Memory::Address_at(pc_); in target_cell_handle()
211 return Cell::FromValueAddress(Memory::Address_at(pc_)); in target_cell()
218 Memory::Address_at(pc_) = address; in set_target_cell()
256 Assembler::target_address_at(pc_ + kCodeAgingTargetDelta, host_)); in code_age_stub()
262 Assembler::set_target_address_at(isolate_, pc_ + kCodeAgingTargetDelta, host_, in set_code_age_stub()
269 return Assembler::target_address_at(pc_, host_); in debug_call_address()
274 Assembler::set_target_address_at(isolate_, pc_, host_, target); in set_debug_call_address()
288 Memory::Address_at(pc_) = NULL; in WipeOut()
292 Assembler::set_target_address_at(isolate_, pc_, host_, NULL, in WipeOut()
295 Assembler::set_target_address_at(isolate_, pc_, host_, NULL); in WipeOut()
404 *reinterpret_cast<uint16_t*>(pc_) = x; in emit2bytes()
405 pc_ += 2; in emit2bytes()
418 *reinterpret_cast<uint32_t*>(pc_) = x; in emit4bytes()
419 pc_ += 4; in emit4bytes()
435 x |= (*reinterpret_cast<uint64_t*>(pc_) >> 48) << 48; in emit6bytes()
440 x |= *reinterpret_cast<uint64_t*>(pc_) & 0xFFFF; in emit6bytes()
444 *reinterpret_cast<uint64_t*>(pc_) = x; in emit6bytes()
445 pc_ += 6; in emit6bytes()