Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for modsw (0.05 sec)

  1. src/cmd/internal/obj/ppc64/anames.go

    	"CREQV",
    	"CRNAND",
    	"CRNOR",
    	"CROR",
    	"CRORN",
    	"CRXOR",
    	"DIVW",
    	"DIVWCC",
    	"DIVWVCC",
    	"DIVWV",
    	"DIVWU",
    	"DIVWUCC",
    	"DIVWUVCC",
    	"DIVWUV",
    	"MODUD",
    	"MODUW",
    	"MODSD",
    	"MODSW",
    	"EQV",
    	"EQVCC",
    	"EXTSB",
    	"EXTSBCC",
    	"EXTSH",
    	"EXTSHCC",
    	"FABS",
    	"FABSCC",
    	"FADD",
    	"FADDCC",
    	"FADDS",
    	"FADDSCC",
    	"FCMPO",
    	"FCMPU",
    	"FCTIW",
    	"FCTIWCC",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "MODSD", argLength: 2, reg: gp21, asm: "MODSD", typ: "Int64"},  // arg0 % arg1 (signed 64-bit)
    		{name: "MODUW", argLength: 2, reg: gp21, asm: "MODUW", typ: "UInt32"}, // arg0 % arg1 (unsigned 32-bit)
    		{name: "MODSW", argLength: 2, reg: gp21, asm: "MODSW", typ: "Int32"},  // arg0 % arg1 (signed 32-bit)
    		// MOD is implemented as rem := arg0 - (arg0/arg1) * arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/ppc64.s

    	MADDHD R3,R4,R5,R6              // 10c32170
    	MADDHDU R3,R4,R5,R6             // 10c32171
    
    	MODUD R3, R4, R5                // 7ca41a12
    	MODUW R3, R4, R5                // 7ca41a16
    	MODSD R3, R4, R5                // 7ca41e12
    	MODSW R3, R4, R5                // 7ca41e16
    
    	SLW $8, R3, R4                  // 5464402e
    	SLW R3, R4, R5                  // 7c851830
    	SLWCC R3, R4                    // 7c841831
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (Mod64 x y) && buildcfg.GOPPC64 >=9 => (MODSD x y)
    (Mod64 x y) && buildcfg.GOPPC64 <=8 => (SUB x (MULLD y (DIVD x y)))
    (Mod64u x y) && buildcfg.GOPPC64 >= 9 => (MODUD x y)
    (Mod64u x y) && buildcfg.GOPPC64 <= 8 => (SUB x (MULLD y (DIVDU x y)))
    (Mod32 x y) && buildcfg.GOPPC64 >= 9 => (MODSW x y)
    (Mod32 x y) && buildcfg.GOPPC64 <= 8 => (SUB x (MULLW y (DIVW x y)))
    (Mod32u x y) && buildcfg.GOPPC64 >= 9 => (MODUW x y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/list.go

    				continue
    			}
    			if v != "none" {
    				mods = append(mods, moduleInfo(ctx, rs, module.Version{Path: arg, Version: v}, mode, reuse))
    			} else if cfg.BuildMod == "vendor" {
    				// In vendor mode, we can't determine whether a missing module is “a
    				// known dependency” because the module graph is incomplete.
    				// Give a more explicit error message.
    				mods = append(mods, &modinfo.ModulePublic{
    					Path:  arg,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 22:43:50 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/import.go

    			// shortest to longest. Reverse them now.
    			for i := 0; i < len(mods)/2; i++ {
    				j := len(mods) - 1 - i
    				mods[i], mods[j] = mods[j], mods[i]
    				roots[i], roots[j] = roots[j], roots[i]
    				dirs[i], dirs[j] = dirs[j], dirs[i]
    			}
    			return module.Version{}, "", "", nil, &AmbiguousImportError{importPath: path, Dirs: dirs, Modules: mods}
    		}
    
    		if len(sumErrMods) > 0 {
    			for i := 0; i < len(sumErrMods)/2; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modcmd/verify.go

    	sem := make(chan token, runtime.GOMAXPROCS(0))
    
    	mg, err := modload.LoadModGraph(ctx, "")
    	if err != nil {
    		base.Fatal(err)
    	}
    	mods := mg.BuildList()
    	// Use a slice of result channels, so that the output is deterministic.
    	errsChans := make([]<-chan []error, len(mods))
    
    	for i, mod := range mods {
    		sem <- token{}
    		errsc := make(chan []error, 1)
    		errsChans[i] = errsc
    		mod := mod // use a copy to avoid data races
    		go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 16:56:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/asm9.go

    		return OPVCC(31, 1014, 0, 0)
    
    	case AMODUD:
    		return OPVCC(31, 265, 0, 0) /* modud - v3.0 */
    	case AMODUW:
    		return OPVCC(31, 267, 0, 0) /* moduw - v3.0 */
    	case AMODSD:
    		return OPVCC(31, 777, 0, 0) /* modsd - v3.0 */
    	case AMODSW:
    		return OPVCC(31, 779, 0, 0) /* modsw - v3.0 */
    
    	case ADIVW, AREM:
    		return OPVCC(31, 491, 0, 0)
    
    	case ADIVWCC:
    		return OPVCC(31, 491, 0, 1)
    
    	case ADIVWV:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modcmd/download.go

    			// Nothing to download.
    			continue
    		}
    		m := &ModuleJSON{
    			Path:    info.Path,
    			Version: info.Version,
    			Query:   info.Query,
    			Reuse:   info.Reuse,
    			Origin:  info.Origin,
    		}
    		mods = append(mods, m)
    		if info.Error != nil {
    			m.Error = info.Error.Err
    			continue
    		}
    		if m.Reuse {
    			continue
    		}
    		sem <- token{}
    		go func() {
    			err := DownloadModule(ctx, m)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/fetch.go

    			if st.used && !sumInWorkspaceModulesLocked(ms.mod) {
    				addModSumLocked(ms.mod, ms.sum)
    			}
    		}
    	}
    
    	var mods []module.Version
    	for m := range goSum.m {
    		mods = append(mods, m)
    	}
    	module.Sort(mods)
    
    	var buf bytes.Buffer
    	for _, m := range mods {
    		list := goSum.m[m]
    		sort.Strings(list)
    		str.Uniq(&list)
    		for _, h := range list {
    			st := goSum.status[modSum{m, h}]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top