Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for STLXR (0.12 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)
  4. src/cmd/asm/internal/arch/arm64.go

    		arm64.AFCMPS, arm64.AFCMPD,
    		arm64.AFCMPES, arm64.AFCMPED:
    		return true
    	}
    	return false
    }
    
    // IsARM64STLXR reports whether the op (as defined by an arm64.A*
    // constant) is one of the STLXR-like instructions that require special
    // handling.
    func IsARM64STLXR(op obj.As) bool {
    	switch op {
    	case arm64.ASTLXRB, arm64.ASTLXRH, arm64.ASTLXRW, arm64.ASTLXR,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 09:04:58 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/arm64error.s

    	STLXP	(R6, R11), (RSP), R6                             // ERROR "constrained unpredictable behavior"
    	STXP	(R6, R11), (R2), R2                              // ERROR "constrained unpredictable behavior"
    	STLXR	R3, (RSP), R3                                    // ERROR "constrained unpredictable behavior"
    	STXR	R3, (R4), R4                                     // ERROR "constrained unpredictable behavior"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 37.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		// atomic exchange.
    		// store arg1 to arg0. arg2=mem. returns <old content of *arg0, memory>. auxint must be zero.
    		// LDAXR	(Rarg0), Rout
    		// STLXR	Rarg1, (Rarg0), Rtmp
    		// CBNZ		Rtmp, -2(PC)
    		{name: "LoweredAtomicExchange64", argLength: 3, reg: gpxchg, resultNotInArgs: true, faultOnNilArg0: true, hasSideEffects: true, unsafePoint: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	STLRW R16, (R22)                           // d0fe9f88
    	STLR R3, (R24)                             // 03ff9fc8
    	STLRB R11, (R22)                           // cbfe9f08
    	STLRH R16, (R23)                           // f0fe9f48
    	STLXR R7, (R27), R8                        // 67ff08c8
    	STLXRW R13, (R15), R14                     // edfd0e88
    	STLXRB R24, (R23), R8                      // f8fe0808
    	STLXRH R19, (R27), R11                     // 73ff0b48
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 01:11:41 UTC 2023
    - 43.9K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/asm7.go

    				c.ctxt.Diag("constrained unpredictable behavior: %v", p)
    			}
    			o1 |= uint32(p.To.Offset&31) << 10
    		} else {
    			o1 |= 0x1F << 10
    		}
    		o1 |= uint32(p.To.Reg & 31)
    
    	case 59: /* stxr/stlxr/stxp/stlxp */
    		s := p.RegTo2
    		n := p.To.Reg
    		t := p.From.Reg
    		if isSTLXRop(p.As) {
    			if s == t || (s == n && n != REGSP) {
    				c.ctxt.Diag("constrained unpredictable behavior: %v", p)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top