Searched refs:pc (Results 1 – 7 of 7) sorted by relevance
/DragonOS/kernel/src/exception/ |
H A D | debug.rs | 17 let pc = frame.debug_address(); in post_kprobe_handler() localVariable 18 if let Some(kprobe_list) = KPROBE_MANAGER.lock().get_debug_list(pc) { in post_kprobe_handler() 29 debug!("There is no kprobe on pc {:#x}", pc); in post_kprobe_handler()
|
/DragonOS/kernel/crates/rbpf/mk/ |
H A D | appveyor.bat | 39 set RUST_URL=https://static.rust-lang.org/dist/rust-%RUST%-%TARGET_ARCH%-pc-windows-msvc.msi 42 …t Net.WebClient).DownloadFile('%RUST_URL%', 'build\rust-%RUST%-%TARGET_ARCH%-pc-windows-msvc.msi')" 48 start /wait msiexec /i build\rust-%RUST%-%TARGET_ARCH%-pc-windows-msvc.msi INSTALLDIR="%TARGET_PROG…
|
/DragonOS/kernel/src/arch/riscv64/ |
H A D | kprobe.rs | 14 pub pc: usize, field 51 pc: trap_frame.epc, in from()
|
/DragonOS/tools/ |
H A D | write_disk_image.sh | 157 …${GRUB_PATH_I386_LEGACY_INSTALL} --target=i386-pc --boot-directory=${boot_folder} /dev/$LOOP_DEVICE 168 …${GRUB_PATH_I386_LEGACY_INSTALL} --target=i386-pc --boot-directory=${boot_folder} /dev/$LOOP_DEVICE
|
/DragonOS/kernel/src/arch/riscv64/interrupt/ |
H A D | mod.rs | 167 pub fn set_pc(&mut self, pc: usize) { in set_pc() 168 self.epc = pc; in set_pc()
|
/DragonOS/kernel/src/arch/x86_64/interrupt/ |
H A D | mod.rs | 182 pub fn set_pc(&mut self, pc: usize) { in set_pc() 183 self.rip = pc as u64; in set_pc()
|
/DragonOS/kernel/crates/rbpf/src/ |
H A D | jit.rs | 382 pc: u16, in emit_muldivmod() 405 self.emit_load_imm(mem, RCX, pc as i64); in emit_muldivmod() 425 self.emit_jmp(mem, (pc + 1) as isize); in emit_muldivmod() 429 self.emit_jcc(mem, 0x84, (pc + 1) as isize); in emit_muldivmod()
|