Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for slotIDs (1.43 sec)

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

    		// HMULx[U] are intentionally not marked as commutative, even though they are.
    		// This is because they have asymmetric register requirements.
    		// There are rewrite rules to try to place arguments in preferable slots.
    		{name: "HMULQ", argLength: 2, reg: gp21hmul, asm: "IMULQ", clobberFlags: true},
    		{name: "HMULL", argLength: 2, reg: gp21hmul, asm: "IMULL", clobberFlags: true},
    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/go/internal/work/exec.go

    		return nil, nil, err
    	}
    	outGo = append(outGo, gofiles...)
    
    	// Use sequential object file names to keep them distinct
    	// and short enough to fit in the .a header file name slots.
    	// We no longer collect them all into _all.o, and we'd like
    	// tools to see both the .o suffix and unique names, so
    	// we need to make them short enough not to be truncated
    	// in the final archive.
    	oseq := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. src/reflect/value.go

    	// We have to make sure that the out slice lives at least until
    	// the runtime knows the return values are valid. Otherwise, the
    	// return values might not be scanned by anyone during a GC.
    	// (out would be dead, and the return slots not yet alive.)
    	runtime.KeepAlive(out)
    
    	// runtime.getArgInfo expects to be able to find ctxt on the
    	// stack when it finds our caller, makeFuncStub. Make sure it
    	// doesn't get garbage collected.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top