Searched refs:rip_page (Results 1 – 1 of 1) sorted by relevance
1362 vm_map_offset_t rip_page = rip & pagemask; in copy_instruction_stream() local1392 if (start_addr < rip_page) { in copy_instruction_stream()1393 insn_offset = (insn_copyin_count / 2) - (rip_page - start_addr); in copy_instruction_stream()1394 end_addr += (rip_page - start_addr); in copy_instruction_stream()1395 start_addr = rip_page; in copy_instruction_stream()1396 } else if (end_addr >= (rip_page + (~pagemask + 1))) { in copy_instruction_stream()1397 start_addr -= (end_addr - (rip_page + (~pagemask + 1))); /* Adjust start address backward */ in copy_instruction_stream()1399 insn_offset = (insn_copyin_count / 2) + (end_addr - (rip_page + (~pagemask + 1))); in copy_instruction_stream()1400 end_addr = rip_page + (~pagemask + 1); /* clip to the start of the next page (non-inclusive */ in copy_instruction_stream()