Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for RSB (0.06 sec)

  1. src/cmd/asm/internal/asm/testdata/arm.s

    	RSB	R0->28, R1           // 401e61e0
    	RSB	R0@>28, R1           // 601e61e0
    	RSB.S	R0<<28, R1           // 001e71e0
    	RSB.S	R0>>28, R1           // 201e71e0
    	RSB.S	R0->28, R1           // 401e71e0
    	RSB.S	R0@>28, R1           // 601e71e0
    	RSB	R0<<R1, R2, R3       // 103162e0
    	RSB	R0>>R1, R2, R3       // 303162e0
    	RSB	R0->R1, R2, R3       // 503162e0
    	RSB	R0@>R1, R2, R3       // 703162e0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 69K bytes
    - Viewed (0)
  2. src/runtime/sys_freebsd_arm.s

    	MOVW uaddr1+12(FP), R3
    	ADD $20, R13 // arg 5 is passed on stack
    	MOVW $SYS__umtx_op, R7
    	SWI $0
    	RSB.CS $0, R0
    	SUB $20, R13
    	// BCS error
    	MOVW	R0, ret+20(FP)
    	RET
    
    TEXT runtime·thr_new(SB),NOSPLIT,$0
    	MOVW param+0(FP), R0
    	MOVW size+4(FP), R1
    	MOVW $SYS_thr_new, R7
    	SWI $0
    	RSB.CS $0, R0
    	MOVW	R0, ret+8(FP)
    	RET
    
    TEXT runtime·thr_start(SB),NOSPLIT,$0
    	// set up g
    	MOVW m_g0(R0), g
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. src/runtime/rt0_linux_mips64x.s

    TEXT main(SB),NOSPLIT|NOFRAME,$0
    	// in external linking, glibc jumps to main with argc in R4
    	// and argv in R5
    
    	// initialize REGSB = PC&0xffffffff00000000
    	BGEZAL	R0, 1(PC)
    	SRLV	$32, R31, RSB
    	SLLV	$32, RSB
    
    	MOVV	$runtime·rt0_go(SB), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 1014 bytes
    - Viewed (0)
  4. src/runtime/vlop_arm.s

    	MOVW	g_m(g), Rq
    	MOVW	m_divmod(Rq), Rq	/* denominator */
    	CMP 	$0, Rr
    	BGE 	d1
    	RSB 	$0, Rr, Rr
    	CMP 	$0, Rq
    	BGE 	d2
    	RSB 	$0, Rq, Rq
    d0:
    	BL  	runtime·udiv(SB)  	/* none/both neg */
    	MOVW	Rq, RTMP
    	B	out1
    d1:
    	CMP 	$0, Rq
    	BGE 	d0
    	RSB 	$0, Rq, Rq
    d2:
    	BL  	runtime·udiv(SB)  	/* one neg */
    	RSB	$0, Rq, RTMP
    out1:
    	MOVW	4(R13), Rq
    	MOVW	8(R13), Rr
    	MOVW	12(R13), Rs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 7.1K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/util/ipvs_test.go

    		}
    	}
    }
    
    func TestRealServerEqual(t *testing.T) {
    	Tests := []struct {
    		rsA    *RealServer
    		rsB    *RealServer
    		equal  bool
    		reason string
    	}{
    		{
    			rsA: &RealServer{
    				Address: netutils.ParseIPSloppy("10.20.30.40"),
    				Port:    80,
    			},
    			rsB: &RealServer{
    				Address: netutils.ParseIPSloppy("10.20.30.41"),
    				Port:    80,
    			},
    			equal:  false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. src/runtime/cgo/asm_mips64x.s

    	BGEZAL	R0, 1(PC)
    	SRLV	$32, R31, RSB
    	SLLV	$32, RSB
    	JAL	runtime·load_g(SB)
    
    	JAL	runtime·cgocallback(SB)
    
    	MOVV	(8*4)(R29), R16
    	MOVV	(8*5)(R29), R17
    	MOVV	(8*6)(R29), R18
    	MOVV	(8*7)(R29), R19
    	MOVV	(8*8)(R29), R20
    	MOVV	(8*9)(R29), R21
    	MOVV	(8*10)(R29), R22
    	MOVV	(8*11)(R29), R23
    	MOVV	(8*12)(R29), RSB
    	MOVV	(8*13)(R29), g
    	MOVV	(8*14)(R29), R31
    #ifndef GOMIPS64_softfloat
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/arch/arch.go

    	register["LO"] = mips.REG_LO
    	// Pseudo-registers.
    	register["SB"] = RSB
    	register["FP"] = RFP
    	register["PC"] = RPC
    	// Avoid unintentionally clobbering g using R30.
    	delete(register, "R30")
    	register["g"] = mips.REG_R30
    	// Avoid unintentionally clobbering RSB using R28.
    	delete(register, "R28")
    	register["RSB"] = mips.REG_R28
    	registerPrefix := map[string]bool{
    		"F":   true,
    		"FCR": true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 06:51:28 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  8. src/runtime/preempt_mips64x.s

    	MOVV R15, 120(R29)
    	MOVV R16, 128(R29)
    	MOVV R17, 136(R29)
    	MOVV R18, 144(R29)
    	MOVV R19, 152(R29)
    	MOVV R20, 160(R29)
    	MOVV R21, 168(R29)
    	MOVV R22, 176(R29)
    	MOVV R24, 184(R29)
    	MOVV R25, 192(R29)
    	MOVV RSB, 200(R29)
    	MOVV HI, R1
    	MOVV R1, 208(R29)
    	MOVV LO, R1
    	MOVV R1, 216(R29)
    	#ifndef GOMIPS64_softfloat
    	MOVV FCR31, R1
    	MOVV R1, 224(R29)
    	MOVD F0, 232(R29)
    	MOVD F1, 240(R29)
    	MOVD F2, 248(R29)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  9. src/runtime/rt0_openbsd_mips64.s

    TEXT main(SB),NOSPLIT|NOFRAME,$0
    	// in external linking, glibc jumps to main with argc in R4
    	// and argv in R5
    
    	// initialize REGSB = PC&0xffffffff00000000
    	BGEZAL	R0, 1(PC)
    	SRLV	$32, R31, RSB
    	SLLV	$32, RSB
    
    	MOVV	$runtime·rt0_go(SB), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 08:07:46 UTC 2020
    - 976 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARMOps.go

    		{name: "SUBconst", argLength: 1, reg: gp11, asm: "SUB", aux: "Int32"},     // arg0 - auxInt
    		{name: "RSB", argLength: 2, reg: gp21, asm: "RSB"},                        // arg1 - arg0
    		{name: "RSBconst", argLength: 1, reg: gp11, asm: "RSB", aux: "Int32"},     // auxInt - arg0
    		{name: "MUL", argLength: 2, reg: gp21, asm: "MUL", commutative: true},     // arg0 * arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 41K bytes
    - Viewed (0)
Back to top