/illumos-gate/usr/src/test/bhyve-tests/tests/inst_emul/ |
H A D | exit_consistent.c | 64 if (vexit->rip != expected_rip) { in repeat_consistent_exit() 99 uint64_t rcx = 0, rip = 0; in main() local 103 if (vm_get_register(vcpu, VM_REG_GUEST_RIP, &rip) != 0) { in main() 107 if (rip != vexit.rip) { in main() 110 rip, vexit.rip); in main() 133 if (vexit.rip != (rip + 2)) { in main() 135 vexit.rip, rip + 2); in main() 142 repeat_consistent_exit(vcpu, &ventry, &vexit, vexit.rip); in main() 153 rip = vexit.rip; in main() 163 if (vexit.rip != rip || in main() [all …]
|
/illumos-gate/usr/src/cmd/svc/startd/ |
H A D | restarter.c | 715 restarter_inst_t *rip; in restarter_delete_inst() local 730 rip = uu_list_find(instance_list.ril_instance_list, &id, NULL, NULL); in restarter_delete_inst() 731 if (rip == NULL) { in restarter_delete_inst() 736 assert(ri == rip); in restarter_delete_inst() 1250 restarter_inst_t *rip; in stop_instance_fmri() local 1253 rip = inst_lookup_by_name(fmri); in stop_instance_fmri() 1254 if (rip == NULL) in stop_instance_fmri() 1257 r = stop_instance(h, rip, flags); in stop_instance_fmri() 1259 MUTEX_UNLOCK(&rip->ri_lock); in stop_instance_fmri() 1265 unmaintain_instance(scf_handle_t *h, restarter_inst_t *rip, in unmaintain_instance() argument [all …]
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/ |
H A D | snoop_rip.c | 44 interpret_rip(int flags, struct rip *rip, int fraglen) in interpret_rip() argument 67 switch (rip->rip_cmd) { in interpret_rip() 79 if (rip->rip_vers == RIPv1) in interpret_rip() 83 rip->rip_vers); in interpret_rip() 85 switch (rip->rip_cmd) { in interpret_rip() 89 nip = rip->rip_nets; in interpret_rip() 112 rip->rip_tracefile); in interpret_rip() 118 if (len < sizeof (rip->rip_tsol.rip_generation)) in interpret_rip() 120 len -= sizeof (rip->rip_tsol.rip_generation); in interpret_rip() 122 rsep = rip->rip_tsol.rip_sec_entry; in interpret_rip() [all …]
|
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/ |
H A D | newterm.c | 167 t_rip rip = { 0 }; variable 178 i = rip.top - rip.bottom; in ripoffline() 181 rip.line[i].init = init; in ripoffline() 183 rip.line[i].dy = --rip.bottom; in ripoffline() 185 rip.line[i].dy = rip.top++; in ripoffline() 367 n = rip.top - rip.bottom; in newterm() 369 stdscr = newwin(lines - n, 0, rip.top, 0); in newterm() 379 if (rip.line[i].created) in newterm() 381 y = rip.line[i].dy; in newterm() 386 if (rip.line[i].init != (int (*)(WINDOW *, int)) 0) in newterm() [all …]
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/in.routed/ |
H A D | input.c | 48 static void input(struct sockaddr_in *, struct interface *, struct rip *, int); 49 static boolean_t ck_passwd(struct interface *, struct rip *, uint8_t *, 147 input(&from, ifp, &inbuf.rip, cc); in read_rip() 156 struct rip *rip, in input() argument 181 trace_rip("Recv", "from", from, ifp, rip, cc); in input() 196 if (rip->rip_vers == 0) { in input() 199 rip->rip_cmd, naddr_ntoa(FROM_NADDR)); in input() 203 if (rip->rip_vers > RIPv2) { in input() 206 "version %d", rip->rip_vers, naddr_ntoa(FROM_NADDR), in input() 208 rip->rip_vers = RIPv2; in input() [all …]
|
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/ |
H A D | newterm.c | 161 static t_rip rip = { 0 }; variable 176 i = rip.top - rip.bottom; in ripoffline() 179 rip.line[i].init = init; in ripoffline() 181 rip.line[i].dy = --rip.bottom; in ripoffline() 183 rip.line[i].dy = ++rip.top; in ripoffline() 355 n = rip.top - rip.bottom; 356 stdscr = newwin(lines - n, 0, rip.top, 0); 365 y = rip.line[i].dy; 370 if (rip.line[i].init != (int (*)(WINDOW *, int)) 0) 371 (void) (*rip.line[i].init)(w, columns);
|
/illumos-gate/usr/src/lib/libc/amd64/gen/ |
H A D | proc64_support.S | 90 mov %edi,.memops_method(%rip) 102 mov %rdi,.amd64cache1(%rip) 104 mov %rdi,.amd64cache1half(%rip) 106 mov %rsi,.amd64cache2(%rip) 108 mov %rsi,.amd64cache2half(%rip) 110 mov %rdx,.largest_level_cache_size(%rip)
|
/illumos-gate/usr/src/ucblib/libucb/port/sys/ |
H A D | getdtblsize.c | 54 struct rlimit rip; in getdtablesize() local 56 if (getrlimit(RLIMIT_NOFILE, &rip) == -1) in getdtablesize() 58 if (rip.rlim_cur == RLIM_INFINITY) in getdtablesize() 60 return ((int)rip.rlim_cur); in getdtablesize()
|
/illumos-gate/usr/src/lib/libc/port/gen/ |
H A D | getdtblsize.c | 49 struct rlimit rip; in getdtablesize() local 51 if (getrlimit(RLIMIT_NOFILE, &rip) == -1) in getdtablesize() 53 if (rip.rlim_cur == RLIM_INFINITY) in getdtablesize() 55 return ((int)rip.rlim_cur); in getdtablesize()
|
/illumos-gate/usr/src/uts/intel/ml/ |
H A D | copy.S | 152 cmpq postbootkernelbase(%rip), %rdi /* %rdi = from */ 154 cmpq postbootkernelbase(%rip), %rsi /* %rsi = to */ 156 0: leaq .kcopy_panic_msg(%rip), %rdi 164 leaq _kcopy_copyerr(%rip), %rcx 207 cmpq postbootkernelbase(%rip), %rdi /* %rdi = from */ 209 cmpq postbootkernelbase(%rip), %rsi /* %rsi = to */ 211 0: leaq .kcopy_panic_msg(%rip), %rdi 222 leaq _kcopy_nta_copyerr(%rip), %rcx /* doesn't set rflags */ 268 cmpq postbootkernelbase(%rip), %rdi /* %rdi = from */ 270 cmpq postbootkernelbase(%rip), %rsi /* %rsi = to */ [all …]
|
H A D | i86_subr.S | 75 leaq catch_fault(%rip), %rdx 121 leaq on_trap_trampoline(%rip), %rdx /* rdx = &on_trap_trampoline */ 433 movq postbootkernelbase(%rip), %rax 438 leaq .str_panic_msg(%rip), %rdi 567 testl $RESET_METHOD_KBC, pc_reset_methods(%rip) 587 testl $RESET_METHOD_PORT92, pc_reset_methods(%rip) 915 movq postbootkernelbase(%rip), %rax 920 leaq .ip_ocsum_panic_msg(%rip), %rdi 1015 leaq .ip_ocsum_jmptbl(%rip), %rdi 1272 leaq panic_quiesce(%rip), %rdi /* %rdi = &panic_quiesce */ [all …]
|
H A D | float.S | 137 fildl .fpzero_const(%rip) 156 fildl .fpzero_const(%rip) /* dummy load changes all excp. pointers */ 173 fildl .fpzero_const(%rip) /* dummy load changes all excp. pointers */ 280 leaq sse_initial(%rip), %rax 285 leaq avx_initial(%rip), %rcx
|
/illumos-gate/usr/src/boot/efi/loader/arch/amd64/ |
H A D | multiboot_tramp.S | 61 lea gdt(%rip), %rax 62 lea gdtaddr(%rip), %rdx 64 lea gdtdesc(%rip), %rax 68 lea multiboot_tramp_2(%rip), %rcx 74 lea multiboot_tramp_1(%rip), %rax
|
H A D | start.S | 49 lea ImageBase(%rip), %rdi 50 lea _DYNAMIC(%rip), %rsi
|
/illumos-gate/usr/src/cmd/bhyve/amd64/ |
H A D | spinup_ap.c | 57 spinup_ap_realmode(struct vcpu *newcpu, uint64_t rip) in spinup_ap_realmode() argument 64 vector = rip >> PAGE_SHIFT; in spinup_ap_realmode() 89 spinup_ap(struct vcpu *newcpu, uint64_t rip) in spinup_ap() argument 97 spinup_ap_realmode(newcpu, rip); in spinup_ap()
|
/illumos-gate/usr/src/uts/i86pc/ml/ |
H A D | locore.S | 138 leaq edata(%rip), %rbp /* reference edata for ksyms */ 148 leaq t0stack(%rip), %rsp 156 movq %rdi, sysp(%rip) 158 movq %rdx, bootops(%rip) /* save bootops */ 159 movq $bootops, bootopsp(%rip) 196 leaq __return_from_main(%rip), %rdi 247 leaq cpu_core(%rip), %r8 314 leaq dtrace_badflags(%rip), %rdi 318 leaq dtrace_badtrap(%rip), %rdi 444 leaq _no_pending_updates(%rip), %rdi
|
/illumos-gate/usr/src/test/bhyve-tests/tests/common/ |
H A D | in_guest.c | 196 (void) fprintf(stderr, hdr_fmt, "IN/OUT", vexit->rip); in test_fail_vmexit() 208 (void) fprintf(stderr, hdr_fmt, "RDMSR", vexit->rip); in test_fail_vmexit() 212 (void) fprintf(stderr, hdr_fmt, "WRMSR", vexit->rip); in test_fail_vmexit() 219 (void) fprintf(stderr, hdr_fmt, "MMIO", vexit->rip); in test_fail_vmexit() 231 (void) fprintf(stderr, hdr_fmt, "VMX", vexit->rip); in test_fail_vmexit() 245 (void) fprintf(stderr, hdr_fmt, "SVM", vexit->rip); in test_fail_vmexit() 249 vexit->rip); in test_fail_vmexit() 261 (void) fprintf(stderr, hdr_fmt, "suspend", vexit->rip); in test_fail_vmexit() 283 "\t%%rip: %lx\n", vexit->exitcode, vexit->rip); in test_fail_vmexit() 457 test_setup_vcpu(struct vcpu *vcpu, uint64_t rip, uint64_t rsp) in test_setup_vcpu() argument [all …]
|
/illumos-gate/usr/src/cmd/sgs/rtld/amd64/ |
H A D | boot_elf.S | 152 movq org_scapset@GOTPCREL(%rip),%r11 196 movq org_scapset@GOTPCREL(%rip),%r11 372 movq _plt_save_size@GOTPCREL(%rip),%r9 373 movq _plt_fp_save@GOTPCREL(%rip),%r10 433 movl audit_flags(%rip), %eax 454 movq _plt_fp_restore@GOTPCREL(%rip),%r10 505 movl audit_argcnt(%rip),%eax / %eax = audit_argcnt 540 movq _plt_fp_restore@GOTPCREL(%rip),%r10 580 movq _plt_fp_restore@GOTPCREL(%rip),%r10 705 movq _plt_save_size@GOTPCREL(%rip),%r9 [all …]
|
/illumos-gate/usr/src/uts/i86xpv/sys/ |
H A D | machprivregs.h | 94 cmpl $0, stistipanic(%rip); \ 96 movl $-1, stistipanic(%rip); \ 97 movq stistimsg(%rip), %rdi; \ 103 leaq .+0(%rip), %r11; \ 104 leaq laststi(%rip), %rbx; \ 115 leaq .+0(%rip), %rcx; \
|
/illumos-gate/usr/src/test/util-tests/tests/dis/i386/ |
H A D | 64.prefetch.s | 31 prefetchit0 (%rip) 32 prefetchit1 0x18(%rip)
|
H A D | 64.prefetch.out | 7 libdis_test+0x16: 0f 18 3d 00 00 00 prefetchit0 +0x0(%rip) <libdis_test+0x1d> 9 libdis_test+0x1d: 0f 18 35 18 00 00 prefetchit1 +0x18(%rip) <0x3c>
|
/illumos-gate/usr/src/test/elf-tests/tests/resolution/mixed-hidden-comdat/ |
H A D | access.S | 6 movq data_symbol(%rip), %rax 14 movq bss_symbol(%rip), %rax
|
/illumos-gate/usr/src/test/elf-tests/tests/tls/amd64/ie/ |
H A D | style1-func.s | 30 addq bar@GOTTPOFF(%rip), %rdx 31 addq foo@GOTTPOFF(%rip), %rsi
|
H A D | style1-func-with-r12.s | 30 addq bar@GOTTPOFF(%rip), %rdx 31 addq foo@GOTTPOFF(%rip), %r12
|
H A D | style1-func-with-r13.s | 29 addq bar@GOTTPOFF(%rip), %rdx 30 addq foo@GOTTPOFF(%rip), %r13
|