Searched refs:rip_page (Results 1 – 1 of 1) sorted by relevance
1369 vm_map_offset_t rip_page = rip & pagemask; in copy_instruction_stream() local1399 if (start_addr < rip_page) { in copy_instruction_stream()1400 insn_offset = (insn_copyin_count / 2) - (rip_page - start_addr); in copy_instruction_stream()1401 end_addr += (rip_page - start_addr); in copy_instruction_stream()1402 start_addr = rip_page; in copy_instruction_stream()1403 } else if (end_addr >= (rip_page + (~pagemask + 1))) { in copy_instruction_stream()1404 start_addr -= (end_addr - (rip_page + (~pagemask + 1))); /* Adjust start address backward */ in copy_instruction_stream()1406 insn_offset = (insn_copyin_count / 2) + (end_addr - (rip_page + (~pagemask + 1))); in copy_instruction_stream()1407 end_addr = rip_page + (~pagemask + 1); /* clip to the start of the next page (non-inclusive */ in copy_instruction_stream()