Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/compile/internal/ssa/debug.go

    		//   v79 = Arg <*uint8> {args} : args[*uint8] (args[*uint8])
    		//   v80 = Arg <int> {args} [8] : args+8[int] (args+8[int])
    		//   ...
    		//   v1 = InitMem <mem>
    		//
    		// We can stop scanning the initial portion of the block when
    		// we either see the InitMem op (for entry blocks) or the
    		// first non-zero-width op (for other blocks).
    		for idx := 0; idx < len(b.Values); idx++ {
    			v := b.Values[idx]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "ConstInterface"},           // nil interface
    	{name: "ConstSlice"},               // nil slice
    
    	// Constant-like things
    	{name: "InitMem", zeroWidth: true},                               // memory input to the function.
    	{name: "Arg", aux: "SymOff", symEffect: "Read", zeroWidth: true}, // argument to the function.  aux=GCNode of arg, off = offset in that arg.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/liveness/plive.go

    		for len(oldSched) > 0 && len(oldSched[0].Args) == 0 {
    			// Skip argless ops. We need to skip at least
    			// the lowered ClosurePtr op, because it
    			// really wants to be first. This will also
    			// skip ops like InitMem and SP, which are ok.
    			b.Values = append(b.Values, oldSched[0])
    			oldSched = oldSched[1:]
    		}
    		clobber(lv, b, lv.livevars[0])
    		idx++
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/opGen.go

    	},
    	{
    		name:    "ConstInterface",
    		argLen:  0,
    		generic: true,
    	},
    	{
    		name:    "ConstSlice",
    		argLen:  0,
    		generic: true,
    	},
    	{
    		name:      "InitMem",
    		argLen:    0,
    		zeroWidth: true,
    		generic:   true,
    	},
    	{
    		name:      "Arg",
    		auxType:   auxSymOff,
    		argLen:    0,
    		zeroWidth: true,
    		symEffect: SymRead,
    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