Searched refs:rip_page (Results 1 – 1 of 1) sorted by relevance
1269 vm_map_offset_t rip_page = rip & pagemask; in copy_instruction_stream() local1299 if (start_addr < rip_page) { in copy_instruction_stream()1300 insn_offset = (insn_copyin_count / 2) - (rip_page - start_addr); in copy_instruction_stream()1301 end_addr += (rip_page - start_addr); in copy_instruction_stream()1302 start_addr = rip_page; in copy_instruction_stream()1303 } else if (end_addr >= (rip_page + (~pagemask + 1))) { in copy_instruction_stream()1304 start_addr -= (end_addr - (rip_page + (~pagemask + 1))); /* Adjust start address backward */ in copy_instruction_stream()1306 insn_offset = (insn_copyin_count / 2) + (end_addr - (rip_page + (~pagemask + 1))); in copy_instruction_stream()1307 end_addr = rip_page + (~pagemask + 1); /* clip to the start of the next page (non-inclusive */ in copy_instruction_stream()