Searched refs:new_pc (Results 1 – 6 of 6) sorted by relevance
/external/vixl/test/ |
D | test-pool-manager.cc | 615 int32_t new_pc = pool_manager.Emit(&masm, in TEST() local 621 USE(new_pc); in TEST() 622 VIXL_ASSERT(new_pc == min_location + object_size); in TEST() 646 int32_t new_pc = pool_manager.Emit(&masm, in TEST() local 653 USE(new_pc); in TEST() 654 VIXL_ASSERT(new_pc == AlignUp(pc, object_alignment) + object_size); in TEST() 753 int32_t new_pc = in TEST() local 756 VIXL_ASSERT(new_pc == pc + kPoolSize); in TEST() 757 pc = new_pc; in TEST() 767 new_pc = pool_manager.Emit(&masm, pc); in TEST() [all …]
|
/external/v8/src/arm64/ |
D | simulator-arm64.h | 294 void set_pc(T new_pc) { 296 memcpy(&pc_, &new_pc, sizeof(T));
|
/external/vixl/src/aarch64/ |
D | simulator-aarch64.h | 867 void WritePc(const Instruction* new_pc, 869 if (log_mode == LogBranches) LogTakenBranch(new_pc); 870 pc_ = Memory::AddressUntag(new_pc); 873 VIXL_DEPRECATED("WritePc", void set_pc(const Instruction* new_pc)) { 874 return WritePc(new_pc);
|
/external/vixl/src/aarch32/ |
D | macro-assembler-aarch32.cc | 216 int32_t new_pc = pool_manager_.Emit(this, GetCursorOffset(), size); in EnsureEmitPoolsFor() local 217 VIXL_ASSERT(new_pc == GetCursorOffset()); in EnsureEmitPoolsFor() 218 USE(new_pc); in EnsureEmitPoolsFor()
|
D | macro-assembler-aarch32.h | 406 int32_t new_pc = pool_manager_.Emit(this, pc, kPaddingBytes); in BindHelper() local 407 USE(new_pc); in BindHelper() 408 VIXL_ASSERT(new_pc == GetCursorOffset()); in BindHelper() 447 int32_t new_pc = pool_manager_.Emit(this, variable 452 USE(new_pc); 453 VIXL_ASSERT(new_pc == GetCursorOffset()); 468 int32_t new_pc = pool_manager_.Emit(this, pc, total_size); in Place() local 469 USE(new_pc); in Place() 470 VIXL_ASSERT(new_pc == GetCursorOffset()); in Place() 482 int32_t new_pc = variable [all …]
|
/external/v8/src/debug/ |
D | debug.cc | 1217 Address new_pc = ComputeNewPcForRedirect(new_code, frame_code, old_pc); in VisitThread() local 1223 reinterpret_cast<intptr_t>(new_pc)); in VisitThread() 1233 frame->set_pc(new_pc); in VisitThread()
|