Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for MOVBatomicload (0.14 sec)

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

    		// Atomic loads.  These are just normal loads but return <value,memory> tuples
    		// so they can be properly ordered with other loads.
    		// load from arg0+auxint+aux.  arg1=mem.
    		{name: "MOVBatomicload", argLength: 2, reg: gpload, asm: "MOVB", aux: "SymOff", faultOnNilArg0: true, symEffect: "Read"},
    		{name: "MOVLatomicload", argLength: 2, reg: gpload, asm: "MOVL", aux: "SymOff", faultOnNilArg0: true, symEffect: "Read"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  2. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (JumpTable idx) => (JUMPTABLE {makeJumpTableSym(b)} idx (LEAQ <typ.Uintptr> {makeJumpTableSym(b)} (SB)))
    
    // Atomic loads.  Other than preserving their ordering with respect to other loads, nothing special here.
    (AtomicLoad8 ptr mem) => (MOVBatomicload ptr mem)
    (AtomicLoad32 ptr mem) => (MOVLatomicload ptr mem)
    (AtomicLoad64 ptr mem) => (MOVQatomicload ptr mem)
    (AtomicLoadPtr ptr mem) => (MOVQatomicload 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)
  3. src/cmd/compile/internal/ssa/rewriteAMD64.go

    	}
    	return false
    }
    func rewriteValueAMD64_OpAMD64MOVBatomicload(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (MOVBatomicload [off1] {sym} (ADDQconst [off2] ptr) mem)
    	// cond: is32Bit(int64(off1)+int64(off2))
    	// result: (MOVBatomicload [off1+off2] {sym} ptr mem)
    	for {
    		off1 := auxIntToInt32(v.AuxInt)
    		sym := auxToSym(v.Aux)
    		if v_0.Op != OpAMD64ADDQconst {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/opGen.go

    	},
    	{
    		name:   "FlagGT_UGT",
    		argLen: 0,
    		reg:    regInfo{},
    	},
    	{
    		name:   "FlagGT_ULT",
    		argLen: 0,
    		reg:    regInfo{},
    	},
    	{
    		name:           "MOVBatomicload",
    		auxType:        auxSymOff,
    		argLen:         2,
    		faultOnNilArg0: true,
    		symEffect:      SymRead,
    		asm:            x86.AMOVB,
    		reg: regInfo{
    			inputs: []inputInfo{
    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