Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for divdeuo (0.11 sec)

  1. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	DCFFIXCC:       "dcffix.",
    	DIVDE:          "divde",
    	DIVDECC:        "divde.",
    	DIVDEO:         "divdeo",
    	DIVDEOCC:       "divdeo.",
    	DIVDEU:         "divdeu",
    	DIVDEUCC:       "divdeu.",
    	DIVDEUO:        "divdeuo",
    	DIVDEUOCC:      "divdeuo.",
    	DIVWE:          "divwe",
    	DIVWECC:        "divwe.",
    	DIVWEO:         "divweo",
    	DIVWEOCC:       "divweo.",
    	DIVWEU:         "divweu",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewritePPC64.go

    		if !(buildcfg.GOPPC64 >= 9) {
    			break
    		}
    		v.reset(OpPPC64MODUD)
    		v.AddArg2(x, y)
    		return true
    	}
    	// match: (Mod64u x y)
    	// cond: buildcfg.GOPPC64 <= 8
    	// result: (SUB x (MULLD y (DIVDU x y)))
    	for {
    		x := v_0
    		y := v_1
    		if !(buildcfg.GOPPC64 <= 8) {
    			break
    		}
    		v.reset(OpPPC64SUB)
    		v0 := b.NewValue0(v.Pos, OpPPC64MULLD, typ.Int64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
Back to top