Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 181 for r12d (0.06 sec)

  1. src/math/asinh_s390x.s

    TEXT	·asinhAsm(SB), NOSPLIT, $0-16
    	FMOVD	x+0(FP), F0
    	MOVD	$·asinhrodataL18<>+0(SB), R9
    	LGDR	F0, R12
    	WORD	$0xC0293FDF	//iilf	%r2,1071644671
    	BYTE	$0xFF
    	BYTE	$0xFF
    	SRAD	$32, R12
    	WORD	$0xB917001C	//llgtr	%r1,%r12
    	MOVW	R1, R6
    	MOVW	R2, R7
    	CMPBLE	R6, R7, L2
    	WORD	$0xC0295FEF	//iilf	%r2,1609564159
    	BYTE	$0xFF
    	BYTE	$0xFF
    	MOVW	R2, R7
    	CMPBLE	R6, R7, L14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 5.7K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/operand_test.go

    	{"AL", "AL"},
    	{"AX", "AX"},
    	{"BP", "BP"},
    	{"BX", "BX"},
    	{"CX", "CX"},
    	{"DI", "DI"},
    	{"DX", "DX"},
    	{"R10", "R10"},
    	{"R10", "R10"},
    	{"R11", "R11"},
    	{"R12", "R12"},
    	{"R13", "R13"},
    	{"R14", "R14"},
    	{"R15", "R15"},
    	{"R8", "R8"},
    	{"R9", "R9"},
    	{"g", "R14"},
    	{"SI", "SI"},
    	{"SP", "SP"},
    	{"X0", "X0"},
    	{"X1", "X1"},
    	{"X10", "X10"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  3. src/runtime/cgo/asm_arm.s

    	// The C arguments arrive in R0, R1, R2, and R3. We want to
    	// pass R0, R1, and R3 to Go, so we push those on the stack.
    	// Also, save C callee-save registers R4-R12.
    	MOVM.WP	[R0, R1, R3, R4, R5, R6, R7, R8, R9, g, R11, R12], (R13)
    	// Finally, save the link register R14. This also puts the
    	// arguments we pushed for cgocallback where they need to be,
    	// starting at 4(R13).
    	MOVW.W	R14, -4(R13)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. src/runtime/rt0_linux_ppc64.s

    	// There is no TLS base pointer.
    	//
    	// TODO(austin): Support ABI v1 dynamic linking entry point
    	XOR	R0, R0 // Note, newer kernels may not always set R0 to 0.
    	MOVD	$runtime·rt0_go(SB), R12
    	MOVD	R12, CTR
    	MOVBZ	runtime·iscgo(SB), R5
    	CMP	R5, $0
    	BEQ	nocgo
    	BR	(CTR)
    nocgo:
    	MOVD	0(R1), R3 // argc
    	ADD	$8, R1, R4 // argv
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 22:20:51 UTC 2023
    - 847 bytes
    - Viewed (0)
  5. src/syscall/asm_linux_amd64.s

    TEXT ·rawVforkSyscall(SB),NOSPLIT|NOFRAME,$0-48
    	MOVQ	a1+8(FP), DI
    	MOVQ	a2+16(FP), SI
    	MOVQ	a3+24(FP), DX
    	MOVQ	$0, R10
    	MOVQ	$0, R8
    	MOVQ	$0, R9
    	MOVQ	trap+0(FP), AX	// syscall entry
    	POPQ	R12 // preserve return address
    	SYSCALL
    	PUSHQ	R12
    	CMPQ	AX, $0xfffffffffffff001
    	JLS	ok2
    	MOVQ	$-1, r1+32(FP)
    	NEGQ	AX
    	MOVQ	AX, err+40(FP)
    	RET
    ok2:
    	MOVQ	AX, r1+32(FP)
    	MOVQ	$0, err+40(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:11:15 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. src/runtime/time_linux_amd64.s

    #include "go_asm.h"
    #include "go_tls.h"
    #include "textflag.h"
    
    #define SYS_clock_gettime	228
    
    // func time.now() (sec int64, nsec int32, mono int64)
    TEXT time·now<ABIInternal>(SB),NOSPLIT,$16-24
    	MOVQ	SP, R12 // Save old SP; R12 unchanged by C code.
    
    	MOVQ	g_m(R14), BX // BX unchanged by C code.
    
    	// Set vdsoPC and vdsoSP for SIGPROF traceback.
    	// Save the old values on stack and restore them on exit,
    	// so this function is reentrant.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 2K bytes
    - Viewed (0)
  7. src/runtime/defs_windows_amd64.go

    	print("rsp     ", hex(r.rsp), "\n")
    	print("r8      ", hex(r.r8), "\n")
    	print("r9      ", hex(r.r9), "\n")
    	print("r10     ", hex(r.r10), "\n")
    	print("r11     ", hex(r.r11), "\n")
    	print("r12     ", hex(r.r12), "\n")
    	print("r13     ", hex(r.r13), "\n")
    	print("r14     ", hex(r.r14), "\n")
    	print("r15     ", hex(r.r15), "\n")
    	print("rip     ", hex(r.rip), "\n")
    	print("rflags  ", hex(r.eflags), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. src/internal/runtime/syscall/asm_linux_loong64.s

    	MOVV	R4, R11  // syscall entry
    	MOVV	R5, R4
    	MOVV	R6, R5
    	MOVV	R7, R6
    	MOVV	R8, R7
    	MOVV	R9, R8
    	MOVV	R10, R9
    	SYSCALL
    	MOVV	R0, R5      // r2 is not used. Always set to 0.
    	MOVW	$-4096, R12
    	BGEU	R12, R4, ok
    	SUBVU	R4, R0, R6  // errno
    	MOVV	$-1, R4     // r1
    	RET
    ok:
    	// r1 already in R4
    	MOVV	R0, R6     // errno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 1013 bytes
    - Viewed (0)
  9. src/math/asin_s390x.s

    	BYTE	$0xA0
    	BYTE	$0x9D
    	WORD	$0xB91700C7 //llgtr %r12,%r7
    	MOVW	R12, R8
    	MOVW	R1, R6
    	CMPBGT	R8, R6, L2
    	WORD	$0xC0193BFF //iilf  %r1,1006632959
    	BYTE	$0xFF
    	BYTE	$0xFF
    	MOVW	R1, R6
    	CMPBGT	R8, R6, L13
    L3:
    	FMOVD	216(R9), F0
    	FMADD	F0, F8, F8
    L1:
    	FMOVD	F8, ret+8(FP)
    	RET
    L2:
    	WORD	$0xC0193FEF	//iilf	%r1,1072693247
    	BYTE	$0xFF
    	BYTE	$0xFF
    	CMPW	R12, R1
    	BLE	L14
    L5:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 20 17:42:08 UTC 2018
    - 4.2K bytes
    - Viewed (0)
  10. src/runtime/signal_ppc64x.go

    	print("r7   ", hex(c.r7()), "\n")
    	print("r8   ", hex(c.r8()), "\t")
    	print("r9   ", hex(c.r9()), "\n")
    	print("r10  ", hex(c.r10()), "\t")
    	print("r11  ", hex(c.r11()), "\n")
    	print("r12  ", hex(c.r12()), "\t")
    	print("r13  ", hex(c.r13()), "\n")
    	print("r14  ", hex(c.r14()), "\t")
    	print("r15  ", hex(c.r15()), "\n")
    	print("r16  ", hex(c.r16()), "\t")
    	print("r17  ", hex(c.r17()), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 15:08:04 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top