Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 302 for r8 (0.09 sec)

  1. src/cmd/asm/internal/lex/lex_test.go

    			"\tMOVBLZX	(BP)(DX*4),	R8 \\",
    			"\tload((off+1), r2) \\",
    			"\tMOVB	R8,		(off*4)(R12) \\",
    			"\tPINSRW	$index, (BP)(R8*4), xmm",
    			"#define LOAD(off, reg) \\",
    			"\tMOVBLZX	(off*4)(R12),	reg \\",
    			"\tADDB	reg,		DX",
    			"KEYROUND(X0, LOAD, 8, AX, BX, 0)",
    		),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. src/runtime/sys_netbsd_amd64.s

    	SYSCALL
    	JCC	2(PC)
    	NEGQ	AX
    	MOVL	AX, ret+24(FP)
    	RET
    
    TEXT runtime·lwp_tramp(SB),NOSPLIT,$0
    
    	// Set FS to point at m->tls.
    	LEAQ	m_tls(R8), DI
    	CALL	runtime·settls(SB)
    
    	// Set up new stack.
    	get_tls(CX)
    	MOVQ	R8, g_m(R9)
    	MOVQ	R9, g(CX)
    	CALL	runtime·stackcheck(SB)
    
    	// Call fn. This is an ABI0 PC.
    	CALL	R12
    
    	// It shouldn't return. If it does, exit.
    	MOVL	$SYS__lwp_exit, AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s

    TEXT ·Syscall6(SB),NOSPLIT,$0-80
    	JMP	syscall·Syscall6(SB)
    
    TEXT ·SyscallNoError(SB),NOSPLIT,$0-48
    	JAL	runtime·entersyscall(SB)
    	MOVV	a1+8(FP), R4
    	MOVV	a2+16(FP), R5
    	MOVV	a3+24(FP), R6
    	MOVV	R0, R7
    	MOVV	R0, R8
    	MOVV	R0, R9
    	MOVV	trap+0(FP), R2	// syscall entry
    	SYSCALL
    	MOVV	R2, r1+32(FP)
    	MOVV	R3, r2+40(FP)
    	JAL	runtime·exitsyscall(SB)
    	RET
    
    TEXT ·RawSyscall(SB),NOSPLIT,$0-56
    	JMP	syscall·RawSyscall(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. test/codegen/logic.go

    // of the args of the ANDQ needs to be saved so it can be used as the arg to TESTQ.
    func andWithUse(x, y int) int {
    	z := x & y
    	// amd64:`TESTQ\s(AX, AX|BX, BX|CX, CX|DX, DX|SI, SI|DI, DI|R8, R8|R9, R9|R10, R10|R11, R11|R12, R12|R13, R13|R15, R15)`
    	if z == 0 {
    		return 77
    	}
    	// use z by returning it
    	return z
    }
    
    // Verify (OR x (NOT y)) rewrites to (ORN x y) where supported
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 16:32:25 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. src/syscall/asm_darwin_amd64.s

    TEXT	·Syscall6(SB),NOSPLIT,$0-80
    	CALL	runtime·entersyscall<ABIInternal>(SB)
    	MOVQ	a1+8(FP), DI
    	MOVQ	a2+16(FP), SI
    	MOVQ	a3+24(FP), DX
    	MOVQ	a4+32(FP), R10
    	MOVQ	a5+40(FP), R8
    	MOVQ	a6+48(FP), R9
    	MOVQ	trap+0(FP), AX	// syscall entry
    	ADDQ	$0x2000000, AX
    	SYSCALL
    	JCC	ok6
    	MOVQ	$-1, r1+56(FP)
    	MOVQ	$0, r2+64(FP)
    	MOVQ	AX, err+72(FP)
    	CALL	runtime·exitsyscall<ABIInternal>(SB)
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 16 15:40:39 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/arm64.s

    	CASALW	R5, (RSP), R7                        // e7ffe588
    	CASALH	ZR, (R5), R8                         // a8fcff48
    	CASALB	R8, (R9), ZR                         // 3ffde808
    	CASPD	(R30, ZR), (RSP), (R8, R9)           // e87f3e48
    	CASPW	(R6, R7), (R8), (R4, R5)             // 047d2608
    	CASPD	(R2, R3), (R2), (R8, R9)             // 487c2248
    
    // RET
    	RET
    	RET	foo(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 94.9K bytes
    - Viewed (0)
  7. src/runtime/sys_linux_s390x.s

    	// Initialize m->procid to Linux tid
    	SYSCALL $SYS_gettid
    
    	MOVD	-24(R15), R9        // fn
    	MOVD	-16(R15), R8        // g
    	MOVD	-8(R15), R7         // m
    
    	CMPBEQ	R7, $0, nog
    	CMP	R8, $0
    	BEQ	nog
    
    	MOVD	R2, m_procid(R7)
    
    	// In child, set up new stack
    	MOVD	R7, g_m(R8)
    	MOVD	R8, g
    	//CALL	runtime·stackcheck(SB)
    
    nog:
    	// Call fn
    	BL	R9
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/asm_linux_amd64.s

    TEXT ·Syscall6(SB),NOSPLIT,$0-80
    	JMP	syscall·Syscall6(SB)
    
    TEXT ·SyscallNoError(SB),NOSPLIT,$0-48
    	CALL	runtime·entersyscall(SB)
    	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
    	SYSCALL
    	MOVQ	AX, r1+32(FP)
    	MOVQ	DX, r2+40(FP)
    	CALL	runtime·exitsyscall(SB)
    	RET
    
    TEXT ·RawSyscall(SB),NOSPLIT,$0-56
    	JMP	syscall·RawSyscall(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/asm_linux_arm64.s

    	B	syscall·Syscall6(SB)
    
    TEXT ·SyscallNoError(SB),NOSPLIT,$0-48
    	BL	runtime·entersyscall(SB)
    	MOVD	a1+8(FP), R0
    	MOVD	a2+16(FP), R1
    	MOVD	a3+24(FP), R2
    	MOVD	$0, R3
    	MOVD	$0, R4
    	MOVD	$0, R5
    	MOVD	trap+0(FP), R8	// syscall entry
    	SVC
    	MOVD	R0, r1+32(FP)	// r1
    	MOVD	R1, r2+40(FP)	// r2
    	BL	runtime·exitsyscall(SB)
    	RET
    
    TEXT ·RawSyscall(SB),NOSPLIT,$0-56
    	B	syscall·RawSyscall(SB)
    
    TEXT ·RawSyscall6(SB),NOSPLIT,$0-80
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. docs/changelogs/upgrading_to_okhttp_4.md

    fixed you must disable advanced profiling in Android Studio.
    
    ![Disable Advanced Profiling](../assets/images/******@****.***)
    
    
    R8 / ProGuard
    -------------
    
    R8 and ProGuard are both code optimizers for `.class` files.
    
    R8 is the [default optimizer][r8] in Android Studio 3.4 and newer. It works well with all
    releases of OkHttp.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:58:16 UTC 2022
    - 10.9K bytes
    - Viewed (0)
Back to top