Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for STLXR (0.52 sec)

  1. src/internal/runtime/atomic/atomic_arm64.s

    	MOVBU	internal∕cpu·ARM64+const_offsetARM64HasATOMICS(SB), R4
    	CBZ 	R4, load_store_loop
    #endif
    	SWPALD	R1, (R0), R2
    	MOVD	R2, ret+16(FP)
    	RET
    #ifndef GOARM64_LSE
    load_store_loop:
    	LDAXR	(R0), R2
    	STLXR	R1, (R0), R3
    	CBNZ	R3, load_store_loop
    	MOVD	R2, ret+16(FP)
    	RET
    #endif
    
    // bool Cas(uint32 *ptr, uint32 old, uint32 new)
    // Atomically:
    //	if(*val == old){
    //		*val = new;
    //		return 1;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/doc.go

    	FCSELD EQ, F15, F18, F16    <=>    fcsel d16, d15, d18, eq
    
    (10) TBNZ, TBZ $<imm>, <Rt>, <label>
    
    (11) STLXR, STLXRW, STXR, STXRW, STLXRB, STLXRH, STXRB, STXRH  <Rf>, (<Rn|RSP>), <Rs>
    
    Examples:
    
    	STLXR ZR, (R15), R16    <=>    stlxr w16, xzr, [x15]
    	STXRB R9, (R21), R19    <=>    stxrb w19, w9, [x21]
    
    (12) STLXP, STLXPW, STXP, STXPW (<Rf1>, <Rf2>), (<Rn|RSP>), <Rs>
    
    Examples:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/anames.go

    	"SHA512H2",
    	"SHA512SU0",
    	"SHA512SU1",
    	"SMADDL",
    	"SMC",
    	"SMNEGL",
    	"SMSUBL",
    	"SMULH",
    	"SMULL",
    	"STLR",
    	"STLRB",
    	"STLRH",
    	"STLRW",
    	"STLXP",
    	"STLXPW",
    	"STLXR",
    	"STLXRB",
    	"STLXRH",
    	"STLXRW",
    	"STP",
    	"STPW",
    	"STXP",
    	"STXPW",
    	"STXR",
    	"STXRB",
    	"STXRH",
    	"STXRW",
    	"SUB",
    	"SUBS",
    	"SUBSW",
    	"SUBW",
    	"SVC",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 01:40:37 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top