Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for AtomicExchange64 (0.31 sec)

  1. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "AtomicExchange32", argLength: 3, typ: "(UInt32,Mem)", hasSideEffects: true},        // Store arg1 to *arg0.  arg2=memory.  Returns old contents of *arg0 and new memory.
    	{name: "AtomicExchange64", argLength: 3, typ: "(UInt64,Mem)", hasSideEffects: true},        // Store arg1 to *arg0.  arg2=memory.  Returns old contents of *arg0 and new memory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (Select1     (AddTupleFirst64   _ tuple)) => (Select1 tuple)
    
    // Atomic exchanges.
    (AtomicExchange32 ptr val mem) => (LoweredAtomicExchange32 ptr val mem)
    (AtomicExchange64 ptr val mem) => (LoweredAtomicExchange64 ptr val mem)
    
    // Atomic compare and swap.
    (AtomicCompareAndSwap32 ptr old new_ mem) => (LoweredAtomicCas32 ptr old new_ mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (AtomicStorePtrNoWB ptr val mem) => (Select1 (XCHGQ <types.NewTuple(typ.BytePtr,types.TypeMem)> val ptr mem))
    
    // Atomic exchanges.
    (AtomicExchange32 ptr val mem) => (XCHGL val ptr mem)
    (AtomicExchange64 ptr val mem) => (XCHGQ val ptr mem)
    
    // Atomic adds.
    (AtomicAdd32 ptr val mem) => (AddTupleFirst32 val (XADDLlock val ptr mem))
    (AtomicAdd64 ptr val mem) => (AddTupleFirst64 val (XADDQlock val ptr mem))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteS390X.go

    		v.AddArg3(ptr, val, mem)
    		return true
    	}
    }
    func rewriteValueS390X_OpAtomicExchange64(v *Value) bool {
    	v_2 := v.Args[2]
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (AtomicExchange64 ptr val mem)
    	// result: (LoweredAtomicExchange64 ptr val mem)
    	for {
    		ptr := v_0
    		val := v_1
    		mem := v_2
    		v.reset(OpS390XLoweredAtomicExchange64)
    		v.AddArg3(ptr, val, mem)
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteAMD64.go

    		v.AddArg3(val, ptr, mem)
    		return true
    	}
    }
    func rewriteValueAMD64_OpAtomicExchange64(v *Value) bool {
    	v_2 := v.Args[2]
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (AtomicExchange64 ptr val mem)
    	// result: (XCHGQ val ptr mem)
    	for {
    		ptr := v_0
    		val := v_1
    		mem := v_2
    		v.reset(OpAMD64XCHGQ)
    		v.AddArg3(val, ptr, mem)
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/opGen.go

    		generic:        true,
    	},
    	{
    		name:           "AtomicExchange32",
    		argLen:         3,
    		hasSideEffects: true,
    		generic:        true,
    	},
    	{
    		name:           "AtomicExchange64",
    		argLen:         3,
    		hasSideEffects: true,
    		generic:        true,
    	},
    	{
    		name:           "AtomicAdd32",
    		argLen:         3,
    		hasSideEffects: true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top