Searched refs:mov (Results 1 – 4 of 4) sorted by relevance
/DragonOS/kernel/src/arch/x86_64/asm/ |
H A D | head.S | 169 mov %ebx, mb_entry_info 170 mov $BOOT_ENTRY_TYPE_LINUX_32_PVH, %ebx 171 mov %ebx, boot_entry_type 188 mov %ebx, mb_entry_info 191 mov %eax, mb_entry_magic 193 mov $MULTIBOOT_BOOTLOADER_MAGIC, %ebx 196 mov $MULTIBOOT2_BOOTLOADER_MAGIC, %ebx 202 mov $BOOT_ENTRY_TYPE_MULTIBOOT, %ebx 203 mov %ebx, boot_entry_type 206 mov $BOOT_ENTRY_TYPE_MULTIBOOT2, %ebx [all …]
|
H A D | apu_boot.S | 15 mov %cs, %ax 16 mov %ax, %ds 17 mov %ax, %es 18 mov %ax, %ss 19 mov %ax, %fs 20 mov %ax, %gs 26 mov %cs, %ax 61 mov $0x10, %ax 62 mov %ax, %ds 63 mov %ax, %es [all …]
|
/DragonOS/kernel/crates/rbpf/src/ |
H A D | insn_builder.rs | 168 pub fn mov(&mut self, source: Source, arch: Arch) -> Move { in mov() method 1573 .mov(Source::Imm, Arch::X64) in move_const_to_register() 1756 program.mov(Source::Reg, Arch::X64).set_src(0x01).push(); in move_from_register_to_another_register() 1942 .mov(Source::Imm, Arch::X32) in move_const_to_register() 2126 .mov(Source::Reg, Arch::X32) in move_from_register_to_another_register() 2167 .mov(Source::Imm, Arch::X64) in example_from_assembler() 2171 .mov(Source::Reg, Arch::X64) in example_from_assembler()
|
/DragonOS/kernel/crates/rbpf/ |
H A D | README.md | 549 .mov(Source::Imm, Arch::X64).set_dst(2).set_imm(0x32).push() 550 .mov(Source::Reg, Arch::X64).set_src(0).set_dst(1).push() 722 such as in `mov r0, 0x1337`), by Rich Lane for Big Switch Networks (2015)
|