Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MoveWB (0.37 sec)

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

    	// Expand to runtime calls. Write barrier will be removed if write on stack.
    	{name: "StoreWB", argLength: 3, typ: "Mem", aux: "Typ"},    // Store arg1 to arg0. arg2=memory, aux=type.  Returns memory.
    	{name: "MoveWB", argLength: 3, typ: "Mem", aux: "TypSize"}, // arg0=destptr, arg1=srcptr, arg2=mem, auxint=size, aux=type.  Returns 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/opGen.go

    		auxType: auxTypSize,
    		argLen:  2,
    		generic: true,
    	},
    	{
    		name:    "StoreWB",
    		auxType: auxTyp,
    		argLen:  3,
    		generic: true,
    	},
    	{
    		name:    "MoveWB",
    		auxType: auxTypSize,
    		argLen:  3,
    		generic: true,
    	},
    	{
    		name:    "ZeroWB",
    		auxType: auxTypSize,
    		argLen:  2,
    		generic: 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