Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for RSB (0.07 sec)

  1. src/internal/runtime/syscall/asm_linux_arm.s

    	MOVW	a3+12(FP), R2
    	MOVW	a4+16(FP), R3
    	MOVW	a5+20(FP), R4
    	MOVW	a6+24(FP), R5
    	SWI	$0
    	MOVW	$0xfffff001, R6
    	CMP	R6, R0
    	BLS	ok
    	MOVW	$-1, R1
    	MOVW	R1, r1+28(FP)
    	MOVW	$0, R2
    	MOVW	R2, r2+32(FP)
    	RSB	$0, R0, R0
    	MOVW	R0, errno+36(FP)
    	RET
    ok:
    	MOVW	R0, r1+28(FP)
    	MOVW	R1, r2+32(FP)
    	MOVW	$0, R0
    	MOVW	R0, errno+36(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 21:28:32 UTC 2024
    - 696 bytes
    - Viewed (0)
  2. src/syscall/asm_linux_arm.s

    	MOVW	$newoffset_lo+16(FP), R3
    	MOVW	whence+12(FP), R4
    	SWI	$0
    	MOVW	$0xfffff001, R6
    	CMP	R6, R0
    	BLS	okseek
    	MOVW	$0, R1
    	MOVW	R1, newoffset_lo+16(FP)
    	MOVW	R1, newoffset_hi+20(FP)
    	RSB	$0, R0, R0
    	MOVW	R0, err+24(FP)
    	BL	runtime·exitsyscall(SB)
    	RET
    okseek:
    	// system call filled in newoffset already
    	MOVW	$0, R0
    	MOVW	R0, err+24(FP)
    	BL	runtime·exitsyscall(SB)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:11:15 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (SUBS (SRA y z) x) => (RSBSshiftRAreg x y z)
    (RSB x (SLLconst [c] y)) => (RSBshiftLL x y [c])
    (RSB (SLLconst [c] y) x) => (SUBshiftLL x y [c])
    (RSB x (SRLconst [c] y)) => (RSBshiftRL x y [c])
    (RSB (SRLconst [c] y) x) => (SUBshiftRL x y [c])
    (RSB x (SRAconst [c] y)) => (RSBshiftRA x y [c])
    (RSB (SRAconst [c] y) x) => (SUBshiftRA x y [c])
    (RSB x (SLL y z)) => (RSBshiftLLreg x y z)
    (RSB (SLL y z) x) => (SUBshiftLLreg x y z)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm/anames.go

    // Code generated by stringer -i a.out.go -o anames.go -p arm; DO NOT EDIT.
    
    package arm
    
    import "cmd/internal/obj"
    
    var Anames = []string{
    	obj.A_ARCHSPECIFIC: "AND",
    	"EOR",
    	"SUB",
    	"RSB",
    	"ADD",
    	"ADC",
    	"SBC",
    	"RSC",
    	"TST",
    	"TEQ",
    	"CMP",
    	"CMN",
    	"ORR",
    	"BIC",
    	"MVN",
    	"BEQ",
    	"BNE",
    	"BCS",
    	"BHS",
    	"BCC",
    	"BLO",
    	"BMI",
    	"BPL",
    	"BVS",
    	"BVC",
    	"BHI",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 16 15:58:33 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  5. src/runtime/sys_netbsd_arm.s

    	MOVW fd+0(FP), R0
    	SWI $SYS_close
    	MOVW.CS	$-1, R0
    	MOVW	R0, ret+4(FP)
    	RET
    
    TEXT runtime·read(SB),NOSPLIT|NOFRAME,$0
    	MOVW fd+0(FP), R0
    	MOVW p+4(FP), R1
    	MOVW n+8(FP), R2
    	SWI $SYS_read
    	RSB.CS	$0, R0		// caller expects negative errno
    	MOVW	R0, ret+12(FP)
    	RET
    
    // func pipe2(flags int32) (r, w int32, errno int32)
    TEXT runtime·pipe2(SB),NOSPLIT,$0-16
    	MOVW $r+4(FP), R0
    	MOVW flags+0(FP), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. src/runtime/sys_openbsd_arm.s

    	MOVW	4(R0), R1		// arg 2 - buf
    	MOVW	8(R0), R2		// arg 3 - count
    	MOVW	0(R0), R0		// arg 1 - fd
    	BL	libc_read(SB)
    	CMP	$-1, R0
    	BNE	noerr
    	BL	libc_errno(SB)
    	MOVW	(R0), R0		// errno
    	RSB.CS	$0, R0			// caller expects negative errno
    noerr:
    	MOVW	R9, R13
    	RET
    
    TEXT runtime·write_trampoline(SB),NOSPLIT,$0
    	MOVW	R13, R9
    	BIC     $0x7, R13		// align for ELF ABI
    	MOVW	4(R0), R1		// arg 2 buf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  7. src/runtime/signal_mips64x.go

    		c.set_link(uint64(pc))
    	}
    
    	// In case we are panicking from external C code
    	sigpanicPC := uint64(abi.FuncPCABIInternal(sigpanic))
    	c.set_r28(sigpanicPC >> 32 << 32) // RSB register
    	c.set_r30(uint64(uintptr(unsafe.Pointer(gp))))
    	c.set_pc(sigpanicPC)
    }
    
    func (c *sigctxt) pushCall(targetPC, resumePC uintptr) {
    	// Push the LR to stack, as we'll clobber it in order to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/arm/armasm/tables.go

    	RSB:               "RSB",
    	RSB_ZZ:            "RSB.ZZ",
    	RSB_S_EQ:          "RSB.S.EQ",
    	RSB_S_NE:          "RSB.S.NE",
    	RSB_S_CS:          "RSB.S.CS",
    	RSB_S_CC:          "RSB.S.CC",
    	RSB_S_MI:          "RSB.S.MI",
    	RSB_S_PL:          "RSB.S.PL",
    	RSB_S_VS:          "RSB.S.VS",
    	RSB_S_VC:          "RSB.S.VC",
    	RSB_S_HI:          "RSB.S.HI",
    	RSB_S_LS:          "RSB.S.LS",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 267.4K bytes
    - Viewed (0)
  9. src/runtime/sys_openbsd_mips64.s

    	CALL	(R25)
    	RET
    
    TEXT runtime·sigtramp(SB),NOSPLIT|TOPFRAME,$192
    	// initialize REGSB = PC&0xffffffff00000000
    	BGEZAL	R0, 1(PC)
    	SRLV	$32, R31, RSB
    	SLLV	$32, RSB
    
    	// this might be called in external code context,
    	// where g is not set.
    	MOVB	runtime·iscgo(SB), R1
    	BEQ	R1, 2(PC)
    	JAL	runtime·load_g(SB)
    
    	MOVW	R4, 8(R29)
    	MOVV	R5, 16(R29)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  10. src/runtime/sys_linux_mips64x.s

    	MOVV	ctx+24(FP), R6
    	MOVV	fn+0(FP), R25
    	JAL	(R25)
    	RET
    
    TEXT runtime·sigtramp(SB),NOSPLIT|TOPFRAME,$64
    	// initialize REGSB = PC&0xffffffff00000000
    	BGEZAL	R0, 1(PC)
    	SRLV	$32, R31, RSB
    	SLLV	$32, RSB
    
    	// this might be called in external code context,
    	// where g is not set.
    	MOVB	runtime·iscgo(SB), R1
    	BEQ	R1, 2(PC)
    	JAL	runtime·load_g(SB)
    
    	MOVW	R4, 8(R29)
    	MOVV	R5, 16(R29)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:57:24 UTC 2022
    - 12K bytes
    - Viewed (0)
Back to top