Searched refs:rax (Results 1 - 25 of 138) sorted by last modified time

123456

/freebsd-11-stable/usr.sbin/bhyvectl/
H A Dbhyvectl.c134 " [--get-rax]\n"
135 " [--set-rax=<RAX>]\n"
656 uint64_t rax, rbx, rcx, rdx, rsi, rdi, rbp; local
739 error = vm_get_register(ctx, vcpu, VM_REG_GUEST_RAX, &rax);
741 printf("rax[%d]\t\t0x%016lx\n", vcpu, rax);
1331 { "set-rax", REQ_ARG, 0, SET_RAX },
1392 { "get-rax", NO_ARG, &get_rax, 1 },
1665 uint64_t rax, cr0, cr2, cr3, cr4, dr0, dr1, dr2, dr3, dr6, dr7; local
1750 rax
[all...]
/freebsd-11-stable/sys/amd64/vmm/amd/
H A Dvmcb.h310 uint64_t rax; member in struct:vmcb_state
H A Dsvm.c784 vmexit->u.inout.eax = (uint32_t)(state->rax);
1222 state->rax = result & 0xffffffff;
1440 eax = state->rax;
1481 (uint32_t *)&state->rax,
/freebsd-11-stable/sys/amd64/amd64/
H A Dsupport.S109 movq %rdi,%rax
110 subq %rsi,%rax
111 cmpq %rcx,%rax /* overlapping && src < dst? */
150 movq %rdi,%rax
168 movq $-PAGE_SIZE,%rax
169 movq %rax,%rdx
170 subq %rax,%rdi
171 subq %rax,%rsi
173 prefetchnta (%rdi,%rax)
174 addq $64,%rax
[all...]
H A Dcpu_switch.S91 movq (%rsp),%rax /* Hardware registers */
99 movq %rax,PCB_RIP(%r8)
111 rdfsbase %rax
112 movq %rax,PCB_FSBASE(%r8)
120 orq %rdx,%rax
121 movq %rax,PCB_GSBASE(%r8)
203 movq PCPU(TSSP),%rax
207 cmpq %rax,%rdx
215 movq PCPU(PTI_RSP0),%rax
216 movq %rax,TSS_RSP
[all...]
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/
H A Dz_Linux_asm.S39 // mov $100, %rax
40 // delay %rax
650 // return: %rax
654 movq %rsi, %rax // "d"
656 xaddq %rax,(%rdi)
739 // return: %rax
743 movq %rsi, %rax // "d"
746 xchgq %rax,(%rdi)
771 andq $1, %rax // sign extend previous instruction for return value
796 andq $1, %rax // sig
[all...]
H A Dz_Windows_NT-586_asm.asm700 ; return: rax
706 mov rax, rdx
707 lock xadd QWORD PTR [rcx], rax
735 and rax, 1 ; sign extend previous instruction
763 and rax, 1 ; sign extend previous instruction
791 and rax, 1 ; sign extend previous instruction
815 mov rax, rdx ; "cv"
818 sete al ; if rax == [rcx] set al = 1 else set al = 0
819 and rax, 1 ; sign extend previous instruction
910 ; return: rax
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp9379 outs() << " rax " << format("0x%016" PRIx64, cpu64.rax);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMachO.h1541 uint64_t rax; member in struct:llvm::MachO::x86_thread_state64_t
1667 sys::swapByteOrder(x.rax);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DCompactUnwindInfo.cpp693 rax = 0, enumerator in enum:x86_64_eh_regnum
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterInfos_x86_64.h202 DEFINE_GPR(rax, nullptr, dwarf_rax_x86_64, dwarf_rax_x86_64, LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM),
227 DEFINE_GPR_PSEUDO_32(eax, rax), DEFINE_GPR_PSEUDO_32(ebx, rbx),
235 DEFINE_GPR_PSEUDO_16(ax, rax), DEFINE_GPR_PSEUDO_16(bx, rbx),
243 DEFINE_GPR_PSEUDO_8H(ah, rax), DEFINE_GPR_PSEUDO_8H(bh, rbx),
245 DEFINE_GPR_PSEUDO_8L(al, rax), DEFINE_GPR_PSEUDO_8L(bl, rbx),
368 UPDATE_GPR_INFO(eax, rax);
385 UPDATE_GPR_INFO(ax, rax);
393 UPDATE_GPR_INFO_8H(ah, rax);
397 UPDATE_GPR_INFO(al, rax);
H A DRegisterContextWindows_x86_64.cpp20 uint64_t rax; member in struct:__anon1267::_GPR
90 DEFINE_GPR(rax, nullptr, dwarf_rax_x86_64, dwarf_rax_x86_64, LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM),
H A DRegisterContextDarwin_x86_64.cpp192 {DEFINE_GPR(rax, nullptr),
669 value = (&gpr.rax)[reg - gpr_rax];
795 (&gpr.rax)[reg - gpr_rax] = value.GetAsUInt64();
H A DRegisterContextOpenBSD_x86_64.cpp32 uint64_t rax; member in struct:_GPR
H A DRegisterContextNetBSD_x86_64.cpp35 uint64_t rax; /* 14 */ member in struct:_GPR
H A DRegisterContextLinux_x86_64.cpp28 uint64_t rax; member in struct:_GPR
H A DRegisterContextFreeBSD_x86_64.cpp33 uint64_t rax; member in struct:_GPR
H A DRegisterContextDarwin_x86_64.h48 uint64_t rax; member in struct:RegisterContextDarwin_x86_64::GPR
/freebsd-11-stable/contrib/llvm-project/libunwind/src/
H A DUnwindRegistersSave.S73 movq %rax, (PTR)
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_mac.cpp1134 DUMPREG(rax); DUMPREG(rbx); DUMPREG(rcx); DUMPREG(rdx); Printf("\n");
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerUtilFuchsia.cpp111 OP_REG(rax) \
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DRegisterContextMinidump_x86_64.h104 llvm::support::ulittle64_t rax; member in struct:lldb_private::minidump::MinidumpContext_x86_64
H A DRegisterContextMinidump_x86_64.cpp90 writeRegister(&context->rax, result_base, reg_info[lldb_rax_x86_64]);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_trampoline_x86_64.S34 movq %rax, 88(%rsp)
59 movq 88(%rsp), %rax
86 callq *%rax
110 movq ASM_SYMBOL(_ZN6__xray19XRayPatchedFunctionE)(%rip), %rax
111 testq %rax, %rax
142 movq %rax, 8(%rsp)
144 movq ASM_SYMBOL(_ZN6__xray19XRayPatchedFunctionE)(%rip), %rax
145 testq %rax,%rax
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl_amd64.S17 push %rax
19 CFI_REL_OFFSET(%rax, 0)
77 pop %rax
79 CFI_RESTORE(%rax)
97 push %rax
99 CFI_REL_OFFSET(%rax, 0)
157 pop %rax
159 CFI_RESTORE(%rax)

Completed in 311 milliseconds

123456