HomeSort by: relevance | last modified time | path
    Searched refs:mach (Results 1 - 25 of 36) sorted by relevancy

1 2

  /src/sys/dev/nvmm/
nvmm.c 131 struct nvmm_machine *mach; local
135 mach = &machines[i];
137 rw_enter(&mach->lock, RW_WRITER);
138 if (mach->present) {
139 rw_exit(&mach->lock);
143 mach->present = true;
144 mach->time = time_second;
145 *ret = mach;
154 nvmm_machine_free(struct nvmm_machine *mach)
156 KASSERT(rw_write_held(&mach->lock))
166 struct nvmm_machine *mach; local
262 struct nvmm_machine *mach; local
322 struct nvmm_machine *mach; local
355 struct nvmm_machine *mach; local
397 struct nvmm_machine *mach; local
433 struct nvmm_machine *mach; local
483 struct nvmm_machine *mach; local
509 struct nvmm_machine *mach; local
554 struct nvmm_machine *mach; local
578 struct nvmm_machine *mach; local
601 struct nvmm_machine *mach; local
658 struct nvmm_machine *mach; local
799 struct nvmm_machine *mach; local
842 struct nvmm_machine *mach; local
860 struct nvmm_machine *mach; local
938 struct nvmm_machine *mach; local
985 struct nvmm_machine *mach; local
1180 struct nvmm_machine *mach; local
    [all...]
  /src/lib/libnvmm/
libnvmm.c 67 __area_isvalid(struct nvmm_machine *mach, uintptr_t hva, gpaddr_t gpa,
70 area_list_t *areas = mach->areas;
91 __area_add(struct nvmm_machine *mach, uintptr_t hva, gpaddr_t gpa, size_t size,
94 area_list_t *areas = mach->areas;
106 if (!__area_isvalid(mach, hva, gpa, size)) {
125 __area_delete(struct nvmm_machine *mach, uintptr_t hva, gpaddr_t gpa,
128 area_list_t *areas = mach->areas;
143 __area_remove_all(struct nvmm_machine *mach)
145 area_list_t *areas = mach->areas;
220 nvmm_machine_create(struct nvmm_machine *mach)
    [all...]
nvmm.h 71 struct nvmm_machine *mach; member in struct:nvmm_io
80 struct nvmm_machine *mach; member in struct:nvmm_mem
libnvmm_x86.c 56 nvmm_vcpu_dump(struct nvmm_machine *mach, struct nvmm_vcpu *vcpu)
67 ret = nvmm_vcpu_getstate(mach, vcpu, NVMM_X64_STATE_ALL);
123 x86_gva_to_gpa_32bit(struct nvmm_machine *mach, uint64_t cr3,
136 if (nvmm_gpa_to_hva(mach, L2gpa, &L2hva, &pageprot) == -1)
156 if (nvmm_gpa_to_hva(mach, L1gpa, &L1hva, &pageprot) == -1)
196 x86_gva_to_gpa_32bit_pae(struct nvmm_machine *mach, uint64_t cr3,
209 if (nvmm_gpa_to_hva(mach, L3gpa, &L3hva, &pageprot) == -1)
222 if (nvmm_gpa_to_hva(mach, L2gpa, &L2hva, &pageprot) == -1)
242 if (nvmm_gpa_to_hva(mach, L1gpa, &L1hva, &pageprot) == -1)
296 x86_gva_to_gpa_64bit(struct nvmm_machine *mach, uint64_t cr3
    [all...]
  /src/tests/lib/libnvmm/
h_mem_assist.c 77 handle_memory(struct nvmm_machine *mach, struct nvmm_vcpu *vcpu)
81 ret = nvmm_assist_mem(mach, vcpu);
90 run_machine(struct nvmm_machine *mach, struct nvmm_vcpu *vcpu)
95 if (nvmm_vcpu_run(mach, vcpu) == -1)
107 handle_memory(mach, vcpu);
137 run_test(struct nvmm_machine *mach, struct nvmm_vcpu *vcpu,
148 run_machine(mach, vcpu);
218 reset_machine64(struct nvmm_machine *mach, struct nvmm_vcpu *vcpu)
222 if (nvmm_vcpu_getstate(mach, vcpu, NVMM_X64_STATE_ALL) == -1)
268 if (nvmm_vcpu_setstate(mach, vcpu, NVMM_X64_STATE_ALL) == -1
356 struct nvmm_machine mach; local
444 struct nvmm_machine mach; local
    [all...]
h_io_assist.c 73 reset_machine(struct nvmm_machine *mach, struct nvmm_vcpu *vcpu)
120 if (nvmm_vcpu_setstate(mach, vcpu, NVMM_X64_STATE_ALL) == -1)
125 map_pages(struct nvmm_machine *mach)
139 if (nvmm_hva_map(mach, (uintptr_t)instbuf, PAGE_SIZE) == -1)
141 if (nvmm_hva_map(mach, (uintptr_t)databuf, PAGE_SIZE) == -1)
143 ret = nvmm_gpa_map(mach, (uintptr_t)instbuf, 0x2000, PAGE_SIZE,
147 ret = nvmm_gpa_map(mach, (uintptr_t)databuf, 0x1000, PAGE_SIZE,
169 if (nvmm_hva_map(mach, (uintptr_t)L4, PAGE_SIZE) == -1)
171 if (nvmm_hva_map(mach, (uintptr_t)L3, PAGE_SIZE) == -1)
173 if (nvmm_hva_map(mach, (uintptr_t)L2, PAGE_SIZE) == -1
371 struct nvmm_machine mach; local
    [all...]
  /src/sys/lib/libkern/arch/sh3/
sdivsi3_i4i.S 48 * ordinary function call - it can clobber only R1, MACL and MACH.
80 !! this version cannot clobber r2 and r3, but can clobber macl/mach
82 lds r3, mach
100 sts mach, r3
  /src/games/boggle/boggle/
Makefile 7 SRCS= bog.c help.c mach.c prtable.c timer.c word.c
  /src/sys/external/bsd/compiler_rt/dist/test/builtins/timing/
timing.h 1 #include <mach/mach_time.h>
  /src/sys/external/bsd/compiler_rt/dist/test/timing/
timing.h 1 #include <mach/mach_time.h>
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_stoptheworld_mac.cc 19 #include <mach/mach.h>
20 #include <mach/thread_info.h>
sanitizer_procmaps_mac.cc 19 #include <mach-o/dyld.h>
20 #include <mach-o/loader.h>
21 #include <mach/mach.h>
91 // More information about Mach-O headers can be found in mach-o/loader.h
92 // Each Mach-O image has a header (mach_header or mach_header_64) starting with
138 // until we hit a Mach header matching dyld instead. These recurse
  /src/libexec/ld.elf_so/arch/sh3/
rtld_start.S 94 sts.l mach,@-r15
105 lds.l @r15+,mach
  /src/sys/arch/next68k/next68k/
nextrom.c 234 char mach; local
276 mach = MONRELOC(char, MG_machine_type);
277 RELOC(rom_machine_type, char) = mach;
278 if (mach == NeXT_TURBO_MONO ||
279 mach == NeXT_TURBO_COLOR ||
280 mach == NeXT_CUBE_TURBO)
287 if (mach == NeXT_WARP9C || mach == NeXT_TURBO_COLOR)
  /src/usr.bin/rump_dhcpclient/
common.c 36 # include <mach/mach_time.h>
37 # include <mach/kern_return.h>
106 /* We can use mach kernel functions here.
  /src/sys/arch/atari/atari/
machdep.c 225 const char *mach, *mmu, *fpu, *cpu; local
231 mach = "Atari TT";
234 mach = "Atari Falcon";
237 mach = "Atari Hades";
240 mach = "Atari Milan";
243 mach = "Atari UNKNOWN";
272 cpu_setmodel("%s (%s CPU%s%sFPU)", mach, cpu, mmu, fpu);
  /src/sys/dev/nvmm/x86/
nvmm_x86_svm.c 1102 svm_exit_cpuid(struct nvmm_machine *mach, struct nvmm_cpu *vcpu,
1150 svm_exit_hlt(struct nvmm_machine *mach, struct nvmm_cpu *vcpu,
1177 svm_exit_io(struct nvmm_machine *mach, struct nvmm_cpu *vcpu,
1229 svm_inkernel_handle_msr(struct nvmm_machine *mach, struct nvmm_cpu *vcpu,
1295 svm_exit_rdmsr(struct nvmm_machine *mach, struct nvmm_cpu *vcpu,
1304 if (svm_inkernel_handle_msr(mach, vcpu, exit)) {
1313 svm_exit_wrmsr(struct nvmm_machine *mach, struct nvmm_cpu *vcpu,
1327 if (svm_inkernel_handle_msr(mach, vcpu, exit)) {
1336 svm_exit_msr(struct nvmm_machine *mach, struct nvmm_cpu *vcpu,
1343 svm_exit_rdmsr(mach, vcpu, exit)
2455 struct nvmm_machine *mach = pm->pm_data; local
    [all...]
nvmm_x86_vmx.c 1203 vmx_exit_exc_nmi(struct nvmm_machine *mach, struct nvmm_cpu *vcpu,
1243 vmx_inkernel_handle_cpuid(struct nvmm_machine *mach, struct nvmm_cpu *vcpu,
1372 ncpus = atomic_load_relaxed(&mach->ncpus);
1517 vmx_exit_cpuid(struct nvmm_machine *mach, struct nvmm_cpu *vcpu,
1528 vmx_inkernel_handle_cpuid(mach, vcpu, eax, ecx);
1565 vmx_exit_hlt(struct nvmm_machine *mach, struct nvmm_cpu *vcpu,
1607 vmx_inkernel_handle_cr0(struct nvmm_machine *mach, struct nvmm_cpu *vcpu,
1676 vmx_inkernel_handle_cr4(struct nvmm_machine *mach, struct nvmm_cpu *vcpu,
1715 vmx_inkernel_handle_cr8(struct nvmm_machine *mach, struct nvmm_cpu *vcpu,
1756 vmx_exit_cr(struct nvmm_machine *mach, struct nvmm_cpu *vcpu
3215 struct nvmm_machine *mach = pm->pm_data; local
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan_common_mac.cc 26 #include <mach/mach.h>
  /src/tests/kernel/arch/sh3/
h_execregs.S 55 sts.l mach, @-sp
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_mac.cc 30 #include <mach-o/dyld.h>
31 #include <mach-o/getsect.h>
32 #include <mach-o/loader.h>
108 // Find the Mach-O header for the image containing the needle
  /src/sys/arch/amigappc/amigappc/
machdep.c 258 const char *cpuname, *mach, *p5type_p, *pup; local
273 mach = "Amiga 4000";
275 mach = "Amiga 3000";
277 mach = "Amiga 1200";
337 mach, pup, cpuname, (pvr>>8) & 0xf, (pvr >> 0) & 0xf,
  /src/sys/arch/sgimips/sgimips/
arcemu.c 136 int mach; local
146 mach = MACH_SGI_IP12;
148 mach = MACH_SGI_IP6;
152 return (mach);
  /src/sys/arch/amiga/amiga/
machdep.c 296 const char *mach, *mmu, *fpu; local
308 mach = machbuf;
312 mach = "Amiga 4000";
314 mach = "Amiga 3000";
316 mach = "Amiga 1200";
318 mach = "Amiga 600";
320 mach = "Amiga 500/2000";
366 cpu_setmodel("%s (%s CPU%s%s)", mach, cpu_type, mmu, fpu);
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_platform_mac.cc 28 #include <mach/mach.h>

Completed in 41 milliseconds

1 2